@import url('https://fonts.googleapis.com/css2?family=Anton&family=Courier+Prime:wght@400;700&family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,500;1,9..144,600&display=swap');

/* ============================================================
   ÖDHANE — Attar Evi · apothecary-editorial
   Niş: alkolsüz yağ bazlı attar & saf esans · Çukurcuma, İstanbul
   Palet: bg #EFEAE0 · surface #E0D6C3 · ink #141210
          accent #3B2A1A (öd) · accent-2 #A8471C (kına)
   Tipografi: Anton (afiş) · Fraunces italic (editoryal aksan) · Courier Prime (laboratuvar etiketi)
   ============================================================ */

:root {
  --bg: #EFEAE0;
  --surface: #E0D6C3;
  --surface-2: #D6C9B2;
  --ink: #141210;
  --ink-soft: #3a342c;
  --accent: #3B2A1A;
  --accent-2: #A8471C;
  --accent-2-tint: rgba(168,71,28,0.10);
  --line: #141210;
  --line-soft: rgba(20,18,16,0.24);
  --line-hair: rgba(20,18,16,0.14);
  --paper: #EFEAE0;
  --header-h: 76px;
  --maxw: 1180px;
  --pad: clamp(16px, 3vw, 40px);
  --font-display: "Anton", Impact, "Arial Narrow Bold", sans-serif;
  --font-serif: "Fraunces", Georgia, "Times New Roman", "Palatino Linotype", serif;
  --font-mono: "Courier Prime", "Courier New", monospace;
  --font-body: "Söhne", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, "Helvetica Neue", sans-serif;
  --shadow-lift: 0 22px 44px -26px rgba(20,18,16,0.55);
  --shadow-accent: 0 20px 40px -22px rgba(168,71,28,0.5);
  interpolate-size: allow-keywords;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

html, body {
  margin: 0;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-top: var(--header-h);
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 0.92;
  margin: 0;
  color: var(--ink);
}

/* editorial serif-italic accents inside display headings — echoes the hero serif */
h1 em, h2 em, h3 em, .display em, .serif-em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  letter-spacing: -0.008em;
  color: var(--accent-2);
}

a { color: var(--accent-2); text-decoration: none; }
a:hover { color: var(--ink); }

p { margin: 0 0 1.1em; }
:where(p, li) { overflow-wrap: anywhere; word-break: break-word; }

.eyebrow, .label, .cat-no {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 700;
}

/* ---------- container / grid ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 32px);
}

section { padding-block: clamp(54px, 8vw, 120px); }
.section-inner { max-width: var(--maxw); margin-inline: auto; }

.skip-link {
  position: absolute; left: 8px; top: -60px;
  background: var(--ink); color: var(--bg);
  padding: 10px 16px; z-index: 2000;
  font-family: "Courier Prime", monospace; text-transform: uppercase;
  transition: top .18s ease;
}
.skip-link:focus { top: 8px; color: var(--bg); }

a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, summary:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 2px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 1080;
  background: rgba(239, 234, 224, 0.92);
  border-bottom: 2px solid var(--ink);
  transition: background .24s ease, box-shadow .24s ease, height .24s ease;
}
.site-header.is-scrolled {
  background: rgba(239,234,224,0.99);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,.35);
}
.header-inner {
  max-width: var(--maxw); margin-inline: auto;
  height: 100%; padding-inline: var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand {
  display: flex; align-items: baseline; gap: 10px;
  font-family: "Anton", Impact, sans-serif; text-transform: uppercase;
  font-size: 1.5rem; letter-spacing: 0.02em; color: var(--ink);
  line-height: 1;
}
.brand:hover { color: var(--ink); }
.brand .brand-mark {
  font-family: "Courier Prime", monospace; font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.14em; color: var(--accent-2); border: 1.5px solid var(--ink);
  padding: 3px 5px; text-transform: uppercase;
}

.nav-desktop { display: none; }
@media (min-width: 1024px) {
  .nav-desktop {
    display: flex; align-items: center; gap: clamp(14px, 2vw, 30px);
  }
  .nav-desktop a {
    font-family: "Courier Prime", monospace; text-transform: uppercase;
    letter-spacing: 0.1em; font-size: 0.8rem; font-weight: 700;
    color: var(--ink); position: relative; padding: 6px 0;
  }
  .nav-desktop a::after {
    content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
    background: var(--accent-2); transition: width .22s ease;
  }
  .nav-desktop a:hover { color: var(--accent-2); }
  .nav-desktop a:hover::after, .nav-desktop a.is-active::after { width: 100%; }
  .nav-desktop a.is-active { color: var(--accent-2); }
  .nav-desktop .nav-cta::after { display: none; }
}

.nav-cta {
  font-family: "Courier Prime", monospace; text-transform: uppercase; font-weight: 700;
  letter-spacing: 0.08em; font-size: 0.78rem;
  background: var(--ink); color: var(--bg) !important;
  border: 2px solid var(--ink); padding: 9px 16px;
}
.nav-cta:hover, .nav-cta:focus-visible { background: var(--accent-2); border-color: var(--accent-2); color: var(--bg) !important; }

/* hamburger */
.nav-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 0; background: transparent;
  border: 2px solid var(--ink); cursor: pointer; z-index: 1100; position: relative;
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-toggle span {
  display: block; height: 2px; width: 22px; margin-inline: auto;
  background: var(--ink); transition: transform .28s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* drawer */
.drawer {
  position: fixed; inset: 0 0 0 auto; width: min(360px, 92vw);
  background: var(--surface); border-left: 3px solid var(--ink);
  transform: translateX(100%); transition: transform .32s cubic-bezier(.2,.7,.2,1);
  z-index: 1050; padding: calc(var(--header-h) + 24px) 28px 32px;
  display: flex; flex-direction: column; gap: 4px; overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  font-family: "Anton", Impact, sans-serif; text-transform: uppercase;
  font-size: 1.5rem; color: var(--ink); padding: 12px 0;
  border-bottom: 1.5px solid var(--line-soft); letter-spacing: 0.01em;
}
.drawer a:hover, .drawer a.is-active { color: var(--accent-2); }
.drawer .drawer-cta {
  margin-top: 18px; text-align: center; background: var(--ink);
  color: var(--bg) !important; border: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
  font-family: "Courier Prime", monospace; font-size: 0.9rem; letter-spacing: 0.1em;
}
.drawer .drawer-cta:hover { background: var(--accent-2); border-color: var(--accent-2); color: var(--bg) !important; }
.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,0.55);
  opacity: 0; visibility: hidden; transition: opacity .24s ease, visibility .24s ease;
  z-index: 1040;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

/* ============================================================
   HERO — cinematic full-bleed photo
   ============================================================ */
.hero {
  position: relative; overflow: hidden; isolation: isolate;
  min-height: 88vh;
  display: flex; align-items: flex-end;
  border-bottom: 2px solid var(--ink);
  padding-block: clamp(48px, 9vh, 116px);
  --hero-fg: #F6F1E7;
  --hero-accent: #E3A768;
}
.hero-photo {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transform: scale(1.06); transform-origin: 55% 45%;
  will-change: transform;
  animation: heroKen 22s ease-in-out infinite alternate;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(11,8,5,0.60) 0%, rgba(11,8,5,0.24) 30%, rgba(11,8,5,0.44) 60%, rgba(11,8,5,0.86) 100%),
    linear-gradient(96deg, rgba(11,8,5,0.62) 0%, rgba(11,8,5,0.10) 58%, rgba(11,8,5,0) 100%);
}
.hero .container { position: relative; z-index: 2; width: 100%; }
.hero-inner { max-width: 60ch; color: var(--hero-fg); }

.hero .hero-eyebrow {
  display: inline-block; margin-bottom: clamp(16px, 3vw, 28px);
  border: 1.5px solid rgba(246,241,231,0.45);
  background: rgba(11,8,5,0.30); color: var(--hero-fg);
  padding: 6px 14px; letter-spacing: 0.18em;
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
}
.hero-title {
  font-family: var(--font-serif);
  font-weight: 400; text-transform: none;
  font-size: clamp(2.05rem, 8.4vw, 4.9rem);
  line-height: 1.02; letter-spacing: -0.014em;
  color: #FBF7EF; margin: 0;
  text-shadow: 0 2px 34px rgba(0,0,0,0.42);
}
.hero-title .word-span { white-space: nowrap; }
.hero-title em { font-style: italic; color: var(--hero-accent); }
.hero-sub {
  font-size: clamp(1.02rem, 2.2vw, 1.3rem);
  max-width: 46ch; margin: clamp(18px,3vw,26px) 0 clamp(24px,3vw,32px);
  color: rgba(246,241,231,0.92);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero .btn-primary {
  background: var(--accent-2); border-color: var(--accent-2); color: #FBF7EF;
}
.hero .btn-primary:hover, .hero .btn-primary:focus-visible {
  background: #FBF7EF; color: var(--ink); border-color: #FBF7EF;
  box-shadow: 0 16px 34px -16px rgba(0,0,0,0.7);
}
.hero .btn-ghost {
  background: rgba(11,8,5,0.22); color: #FBF7EF; border-color: rgba(246,241,231,0.6);
}
.hero .btn-ghost:hover, .hero .btn-ghost:focus-visible {
  background: #FBF7EF; color: var(--ink); border-color: #FBF7EF;
}

/* thin stat strip over photo */
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 16px 32px;
  margin-top: clamp(26px, 4vw, 40px); padding-top: 20px;
  border-top: 1px solid rgba(246,241,231,0.26);
}
.hstat { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.hstat .n {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(1.45rem, 3.4vw, 2rem); line-height: 1; color: #FBF7EF;
}
.hstat .l {
  font-family: "Courier Prime", "Courier New", monospace; text-transform: uppercase;
  font-size: 0.66rem; letter-spacing: 0.12em; color: rgba(246,241,231,0.72);
}

/* motion: ken-burns drift + staggered fade-up (CSS-only, no JS needed) */
@keyframes heroKen {
  0%   { transform: scale(1.06) translate3d(0, 0, 0); }
  100% { transform: scale(1.14) translate3d(-1.6%, -1.8%, 0); }
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
.hero-inner > * { animation: heroFadeUp .9s cubic-bezier(.2,.7,.2,1) both; }
.hero-inner > *:nth-child(1) { animation-delay: .05s; }
.hero-inner > *:nth-child(2) { animation-delay: .18s; }
.hero-inner > *:nth-child(3) { animation-delay: .30s; }
.hero-inner > *:nth-child(4) { animation-delay: .42s; }
.hero-inner > *:nth-child(5) { animation-delay: .54s; }
@media (prefers-reduced-motion: reduce) {
  .hero-photo { animation: none; transform: scale(1.02); }
  .hero-inner > * { animation: none; opacity: 1; transform: none; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: "Courier Prime", monospace; text-transform: uppercase; font-weight: 700;
  letter-spacing: 0.08em; font-size: 0.86rem;
  padding: 14px 22px; border: 2px solid var(--ink); cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.btn { transition: transform .22s cubic-bezier(.2,.7,.2,1), background .18s ease, color .18s ease, box-shadow .28s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover, .btn-primary:focus-visible { background: var(--accent-2); color: var(--bg); border-color: var(--accent-2); box-shadow: 0 12px 28px -14px rgba(168,71,28,.6); }
.btn-primary .arr { transition: transform .2s ease; }
.btn-primary:hover .arr { transform: translateX(4px); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover, .btn-ghost:focus-visible { background: var(--surface); color: var(--ink); }

/* ============================================================
   MANŞET / section headers
   ============================================================ */
.sec-head { margin-bottom: clamp(30px, 5vw, 60px); max-width: 74ch; }
.sec-head .cat-no {
  color: var(--accent-2); display: inline-flex; align-items: center; gap: 9px;
  margin-bottom: 16px;
}
/* apothecary damla — a drop mark leading every section kicker */
.sec-head .cat-no::before {
  content: ""; flex: none; width: 9px; height: 12px;
  background: var(--accent-2);
  border-radius: 0 50% 50% 50%; transform: rotate(45deg);
}
.sec-head h2 { font-size: clamp(2.1rem, 6.2vw, 4.4rem); }
.sec-head h2 + p, .sec-head p { max-width: 60ch; margin-top: 18px; color: var(--ink-soft); }
.sec-head .lede-serif {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.12rem, 2.4vw, 1.5rem); line-height: 1.4;
  color: var(--ink); text-transform: none; letter-spacing: 0;
  max-width: 44ch; margin-top: 18px;
}

/* manşet split block */
.manset {
  display: grid; grid-template-columns: 1fr; gap: 0;
  border: 2px solid var(--ink);
}
@media (min-width: 820px) { .manset { grid-template-columns: 1.1fr 0.9fr; } }
.manset-text { padding: clamp(24px, 4vw, 48px); border-bottom: 2px solid var(--ink); }
@media (min-width: 820px) { .manset-text { border-bottom: 0; border-right: 2px solid var(--ink); } }
.manset-text h2 { font-size: clamp(1.8rem, 5vw, 3.4rem); margin-bottom: 18px; }
.manset-figure { position: relative; min-height: 280px; overflow: hidden; }
.manset-figure img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.manset-stats { display: flex; flex-wrap: wrap; gap: 24px 40px; margin-top: 26px; }
.stat .num {
  font-family: "Anton", Impact, sans-serif; font-size: clamp(2rem,5vw,3rem); line-height: 1;
  color: var(--accent-2); display: block;
}
.stat .lbl { font-family: "Courier Prime", monospace; text-transform: uppercase; font-size: 0.7rem; letter-spacing: 0.1em; }

/* ============================================================
   ESANS KATALOĞU — thick-boxed list
   ============================================================ */
.katalog { display: grid; grid-template-columns: 1fr; border: 2px solid var(--ink); }
.katalog-row {
  display: grid; grid-template-columns: auto 1fr auto; gap: clamp(14px,3vw,32px);
  align-items: center; padding: clamp(20px,3vw,32px);
  border-bottom: 2px solid var(--ink); transition: background .01s;
  min-width: 0;
}
.katalog-row:last-child { border-bottom: 0; }
.katalog-row .k-no {
  font-family: "Courier Prime", monospace; font-weight: 700; font-size: 0.9rem;
  color: var(--accent-2); align-self: start; letter-spacing: 0.05em;
}
.katalog-row .k-body { min-width: 0; }
.katalog-row h3 { font-size: clamp(1.4rem, 3.4vw, 2.2rem); margin-bottom: 8px; }
.katalog-row .k-notes {
  font-family: "Courier Prime", monospace; font-size: 0.72rem; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink-soft); margin-bottom: 8px;
}
.katalog-row p { margin: 0; font-size: 0.98rem; color: var(--ink-soft); }
.katalog-row .k-price {
  text-align: right; align-self: start;
}
.katalog-row .k-price .p {
  font-family: "Anton", Impact, sans-serif; font-size: clamp(1.4rem,3.4vw,2rem); line-height: 1;
  white-space: nowrap;
}
.katalog-row .k-price .u {
  font-family: "Courier Prime", monospace; font-size: 0.66rem; text-transform: uppercase;
  letter-spacing: 0.08em; display: block; margin-top: 6px; color: var(--ink-soft);
}
/* hover invert — hard cut, no transition on colors for brutalist snap */
.katalog-row.invertible:hover {
  background: var(--ink); color: var(--bg);
}
.katalog-row.invertible:hover h3,
.katalog-row.invertible:hover .k-price .p { color: var(--bg); }
.katalog-row.invertible:hover p,
.katalog-row.invertible:hover .k-notes,
.katalog-row.invertible:hover .k-price .u { color: var(--surface); }
.katalog-row.invertible:hover .k-no { color: var(--accent-2); }
@media (max-width: 560px) {
  .katalog-row { grid-template-columns: auto 1fr; }
  .katalog-row .k-price { grid-column: 1 / -1; text-align: left; padding-top: 6px; border-top: 1.5px solid var(--line-soft); }
}

/* örnek fiyat note */
.fiyat-note {
  font-family: "Courier Prime", monospace; text-transform: uppercase;
  font-size: 0.7rem; letter-spacing: 0.1em; margin-top: 16px; color: var(--ink-soft);
}

/* ============================================================
   MENŞEİ / hammadde — editorial cards with niche icons
   ============================================================ */
.raw-grid { display: grid; grid-template-columns: 1fr; gap: 0; border: 2px solid var(--ink); }
@media (min-width: 720px) { .raw-grid { grid-template-columns: repeat(3, 1fr); } }
.raw-cell {
  padding: clamp(22px,3vw,34px); border-bottom: 2px solid var(--ink); min-width: 0;
  transition: background .3s ease;
}
.raw-cell .r-icon, .raw-cell .r-icon svg { transition: border-color .3s ease, box-shadow .3s ease, stroke .3s ease, transform .3s ease; }
.raw-cell:hover .r-icon {
  border-color: var(--accent-2);
  box-shadow: 0 0 0 1px var(--accent-2), 0 10px 26px -12px rgba(168,71,28,.55);
}
.raw-cell:hover .r-icon svg { stroke: var(--accent-2); transform: scale(1.06); }
@media (min-width: 720px) {
  .raw-cell { border-bottom: 0; border-right: 2px solid var(--ink); }
  .raw-cell:last-child { border-right: 0; }
}
.raw-cell:last-child { border-bottom: 0; }
.raw-cell .r-icon {
  width: 46px; height: 46px; border: 2px solid var(--ink); display: grid; place-items: center;
  margin-bottom: 18px;
}
.raw-cell .r-icon svg { width: 26px; height: 26px; stroke: var(--accent); fill: none; stroke-width: 1.6; }
.raw-cell h3 { font-size: clamp(1.3rem,3vw,1.8rem); margin-bottom: 10px; }
.raw-cell .cat-no { color: var(--accent-2); display: block; margin-bottom: 12px; }
.raw-cell p { margin: 0; font-size: 0.96rem; color: var(--ink-soft); }
.raw-cell:hover { background: var(--surface); }

/* ============================================================
   UYGULAMA — application guide steps (vertical)
   ============================================================ */
.rehber { border: 2px solid var(--ink); }
.rehber-step {
  display: grid; grid-template-columns: auto 1fr; gap: clamp(16px,3vw,32px);
  padding: clamp(20px,3vw,30px); border-bottom: 2px solid var(--ink); min-width: 0;
}
.rehber-step:last-child { border-bottom: 0; }
.rehber-step .s-no {
  font-family: "Anton", Impact, sans-serif; font-size: clamp(2rem,5vw,3.2rem);
  line-height: 0.9; color: var(--accent-2);
}
.rehber-step h3 { font-size: clamp(1.2rem,2.6vw,1.6rem); margin-bottom: 6px; }
.rehber-step p { margin: 0; color: var(--ink-soft); font-size: 0.97rem; }
.rehber-step .s-time {
  font-family: "Courier Prime", monospace; text-transform: uppercase; font-size: 0.68rem;
  letter-spacing: 0.08em; color: var(--accent); margin-top: 8px; display: block;
}

/* ============================================================
   TİCARET / pricing packages (service tiers)
   ============================================================ */
.tiers { display: grid; grid-template-columns: 1fr; gap: 0; border: 2px solid var(--ink); }
@media (min-width: 860px) { .tiers { grid-template-columns: repeat(3, 1fr); } }
.tier {
  padding: clamp(24px,3vw,38px); border-bottom: 2px solid var(--ink);
  display: flex; flex-direction: column; min-width: 0; position: relative;
  transition: background .3s ease;
}
@media (min-width: 860px) {
  .tier { border-bottom: 0; border-right: 2px solid var(--ink); }
  .tier:last-child { border-right: 0; }
}
.tier:last-child { border-bottom: 0; }
.tier:hover { background: var(--surface); }
.tier.featured { background: var(--surface); box-shadow: inset 0 4px 0 var(--accent-2); }
.tier.featured:hover { background: var(--surface-2); }
.tier-badge {
  position: absolute; top: 0; right: 0;
  font-family: var(--font-mono); text-transform: uppercase; font-weight: 700;
  font-size: 0.62rem; letter-spacing: 0.14em;
  background: var(--accent-2); color: #FBF7EF; padding: 6px 12px;
}
.tier .cat-no { color: var(--accent-2); }
.tier h3 { font-size: clamp(1.5rem,3vw,2rem); margin: 12px 0 6px; }
.tier .price {
  font-family: "Anton", Impact, sans-serif; font-size: clamp(2.2rem,5vw,3.2rem); line-height: 1;
  margin: 8px 0 4px;
}
.tier .price small { font-family: "Courier Prime", monospace; font-size: 0.7rem; letter-spacing: 0.08em; }
.tier ul { list-style: none; padding: 0; margin: 18px 0; display: grid; gap: 9px; }
.tier ul li { position: relative; padding-left: 22px; font-size: 0.94rem; }
.tier ul li::before { content: "+"; position: absolute; left: 0; color: var(--accent-2); font-family: "Courier Prime", monospace; font-weight: 700; }
.tier ul li.excl { color: var(--ink-soft); }
.tier ul li.excl::before { content: "—"; color: var(--ink-soft); }
.tier .btn { margin-top: auto; justify-content: center; }

/* ============================================================
   NOTLAR / news
   ============================================================ */
.notlar { display: grid; grid-template-columns: 1fr; gap: 0; border: 2px solid var(--ink); }
@media (min-width: 720px) { .notlar { grid-template-columns: repeat(3,1fr); } }
.not-item { padding: clamp(20px,3vw,28px); border-bottom: 2px solid var(--ink); min-width: 0; }
@media (min-width: 720px) { .not-item { border-bottom: 0; border-right: 2px solid var(--ink); } .not-item:last-child { border-right: 0; } }
.not-item:last-child { border-bottom: 0; }
.not-item { transition: background .28s ease; }
.not-item:hover { background: var(--surface); }
.not-item time { font-family: "Courier Prime", monospace; font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-2); }
.not-item h3 { font-size: 1.2rem; margin: 10px 0 8px; }
.not-item p { margin: 0; font-size: 0.92rem; color: var(--ink-soft); }

/* ============================================================
   FAQ (pure CSS accordion)
   ============================================================ */
.faq { border: 2px solid var(--ink); }
.faq details { border-bottom: 2px solid var(--ink); }
.faq details:last-child { border-bottom: 0; }
.faq summary {
  list-style: none; cursor: pointer; padding: clamp(18px,3vw,26px);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: "Anton", Impact, sans-serif; text-transform: uppercase;
  font-size: clamp(1.1rem, 2.4vw, 1.5rem); letter-spacing: 0.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus {
  flex: none; width: 28px; height: 28px; border: 2px solid var(--ink); position: relative;
  transition: transform .3s ease, background .2s ease;
}
.faq summary .plus::before, .faq summary .plus::after {
  content: ""; position: absolute; background: var(--ink); transition: opacity .2s ease;
}
.faq summary .plus::before { left: 5px; right: 5px; top: 12px; height: 2px; }
.faq summary .plus::after { top: 5px; bottom: 5px; left: 12px; width: 2px; }
.faq details[open] summary .plus { background: var(--accent-2); transform: rotate(90deg); }
.faq details[open] summary .plus::before, .faq details[open] summary .plus::after { background: var(--bg); }
.faq details[open] summary .plus::after { opacity: 0; }
.faq .body {
  height: 0; overflow: hidden; padding: 0 clamp(18px,3vw,26px);
  transition: height 360ms cubic-bezier(.4,0,.2,1), padding-block-end 360ms cubic-bezier(.4,0,.2,1);
}
.faq details[open] .body { height: auto; padding-block-end: 24px; }
.faq .body p { margin: 0; color: var(--ink-soft); }
@media (prefers-reduced-motion: reduce) { .faq .body { transition: none; } }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  background: var(--ink); color: var(--bg); border-block: 2px solid var(--ink);
}
.cta-band h2 { color: var(--bg); font-size: clamp(2rem,6vw,4.4rem); }
.cta-band .kina { color: var(--accent-2); }
.cta-band p { color: var(--surface); max-width: 52ch; margin-top: 16px; }
.cta-band .btn-ghost { color: var(--bg); border-color: var(--bg); }
.cta-band .btn-ghost:hover { background: var(--bg); color: var(--ink); }
.cta-band .btn-primary { background: var(--accent-2); border-color: var(--accent-2); }
.cta-band .btn-primary:hover { background: var(--bg); color: var(--ink); border-color: var(--bg); }

/* ============================================================
   İLETİŞİM / contact
   ============================================================ */
.channels { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 18px; }
.channel {
  border: 2px solid var(--ink); padding: 22px; min-width: 0;
  transition: transform .24s cubic-bezier(.2,.7,.2,1), background .2s ease, box-shadow .3s ease; background: var(--bg);
  display: flex; flex-direction: column; gap: 6px;
}
.channel:hover { transform: translateY(-3px); background: var(--surface); box-shadow: 0 16px 32px -22px rgba(168,71,28,.5); }
.channel .c-icon, .channel .c-icon svg { transition: border-color .3s ease, stroke .3s ease; }
.channel:hover .c-icon { border-color: var(--accent-2); }
.channel:hover .c-icon svg { stroke: var(--accent-2); }
.channel .c-icon {
  width: 48px; height: 48px; border: 2px solid var(--ink); display: grid; place-items: center; margin-bottom: 8px;
}
.channel .c-icon svg { width: 24px; height: 24px; stroke: var(--accent); fill: none; stroke-width: 1.5; }
.channel .c-label { font-family: "Courier Prime", monospace; text-transform: uppercase; font-size: 0.7rem; letter-spacing: 0.1em; color: var(--accent-2); }
.channel .c-value { font-family: "Anton", Impact, sans-serif; text-transform: uppercase; font-size: 1.15rem; word-break: break-word; }
.channel a.c-value:hover { color: var(--accent-2); }
.channel .c-sub { font-size: 0.85rem; color: var(--ink-soft); }

/* hours table cards */
.hours-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px,1fr)); gap: 0; border: 2px solid var(--ink); margin-top: 8px; }
.hours-cell { padding: 16px; border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink); min-width: 0; }
.hours-cell .d { font-family: "Courier Prime", monospace; text-transform: uppercase; font-size: 0.7rem; letter-spacing: 0.08em; color: var(--accent-2); }
.hours-cell .h { font-family: "Anton", Impact, sans-serif; font-size: 1.1rem; font-variant-numeric: tabular-nums; margin-top: 4px; }
.hours-cell.today { background: var(--surface); }

/* ============================================================
   FORMS
   ============================================================ */
.form-wrap { border: 2px solid var(--ink); padding: clamp(22px,4vw,40px); background: var(--bg); }
form.attar-form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 640px) { .form-row.two { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field label, .field > span.lbl {
  font-family: "Courier Prime", monospace; text-transform: uppercase; font-size: 0.72rem;
  letter-spacing: 0.1em; font-weight: 700;
}
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 1rem; color: var(--ink);
  background: var(--bg); border: 2px solid var(--ink); padding: 12px 14px;
  border-radius: 0; width: 100%; min-width: 0;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent-2); box-shadow: inset 0 -3px 0 var(--accent-2);
}
.field.kvkk {
  flex-direction: row; align-items: flex-start; gap: 12px;
  font-family: inherit; text-transform: none; letter-spacing: 0; font-size: 0.9rem;
}
.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-2);
}
.field.kvkk .kvkk-txt { font-size: 0.9rem; line-height: 1.5; }

/* ============================================================
   TABLES
   ============================================================ */
.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 18px 0; border: 2px solid var(--ink);
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; border-collapse: collapse; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }
table th, table td { text-align: left; padding: 12px 14px; border-bottom: 1.5px solid var(--line-soft); border-right: 1.5px solid var(--line-soft); font-size: 0.92rem; }
table th { font-family: "Courier Prime", monospace; text-transform: uppercase; font-size: 0.7rem; letter-spacing: 0.08em; background: var(--surface); }
table tr:last-child td { border-bottom: 0; }
table th:last-child, table td:last-child { border-right: 0; }

/* ============================================================
   PROSE (legal pages)
   ============================================================ */
.prose { max-width: 740px; }
.prose h2 { font-size: clamp(1.6rem,4vw,2.4rem); margin: 40px 0 14px; }
.prose h3 { font-size: clamp(1.2rem,3vw,1.5rem); margin: 28px 0 10px; }
.prose p, .prose li { color: var(--ink-soft); line-height: 1.75; }
.prose ul, .prose ol { padding-left: 20px; margin: 0 0 1.1em; }
.prose li { margin-bottom: 6px; }
.page-hero { border-bottom: 2px solid var(--ink); padding-block: clamp(40px,6vw,72px); }
.page-hero .cat-no { color: var(--accent-2); display: block; margin-bottom: 14px; }
.page-hero h1 { font-size: clamp(2.4rem, 8vw, 4.5rem); }
.page-hero p { max-width: 56ch; margin-top: 16px; color: var(--ink-soft); }

/* team */
.team-grid { display: grid; grid-template-columns: 1fr; gap: 0; border: 2px solid var(--ink); }
@media (min-width: 780px) { .team-grid { grid-template-columns: repeat(3,1fr); } }
.team-member { padding: 0; border-bottom: 2px solid var(--ink); min-width: 0; }
@media (min-width: 780px) { .team-member { border-bottom: 0; border-right: 2px solid var(--ink); } .team-member:last-child { border-right: 0; } }
.team-member:last-child { border-bottom: 0; }
.team-member figure { margin: 0; aspect-ratio: 1/1; overflow: hidden; border-bottom: 2px solid var(--ink); }
.team-member figure img { width: 100%; height: 100%; object-fit: cover; }
.team-member .tm-body { padding: 22px; }
.team-member h3 { font-size: 1.4rem; margin-bottom: 4px; }
.team-member .role { font-family: "Courier Prime", monospace; text-transform: uppercase; font-size: 0.68rem; letter-spacing: 0.08em; color: var(--accent-2); margin-bottom: 12px; display: block; }
.team-member p { font-size: 0.92rem; color: var(--ink-soft); margin: 0; }

/* testimonials */
.testi-grid { display: grid; grid-template-columns: 1fr; gap: 0; border: 2px solid var(--ink); }
@media (min-width: 780px) { .testi-grid { grid-template-columns: repeat(3,1fr); } }
.testi {
  padding: clamp(24px,3vw,34px) clamp(22px,3vw,30px); border-bottom: 2px solid var(--ink);
  min-width: 0; transition: background .28s ease; position: relative;
  display: flex; flex-direction: column;
}
.testi::before {
  content: "\201C"; font-family: var(--font-serif); font-style: italic;
  font-size: 3.4rem; line-height: 0.6; color: var(--accent-2);
  display: block; margin-bottom: 6px; opacity: 0.85;
}
.testi:hover { background: var(--surface); }
@media (min-width: 780px) { .testi { border-bottom: 0; border-right: 2px solid var(--ink); } .testi:last-child { border-right: 0; } }
.testi:last-child { border-bottom: 0; }
.testi .stars { display: flex; gap: 3px; margin-bottom: 12px; color: var(--accent-2); }
.testi .stars svg { width: 15px; height: 15px; fill: currentColor; stroke: none; }
.testi blockquote {
  margin: 0 0 18px; font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(1.02rem, 1.6vw, 1.14rem); line-height: 1.5; color: var(--ink);
  flex: 1;
}
.testi .who { font-family: var(--font-mono); text-transform: uppercase; font-size: 0.72rem; letter-spacing: 0.06em; color: var(--ink-soft); }
.testi .who .n { color: var(--accent-2); font-weight: 700; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { border-top: 3px solid var(--ink); background: var(--surface); }
.footer-top { display: grid; grid-template-columns: 1fr; gap: clamp(28px,4vw,48px); padding-block: clamp(40px,5vw,64px); }
@media (min-width: 760px) { .footer-top { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-top h4 { font-family: "Courier Prime", monospace; text-transform: uppercase; font-size: 0.74rem; letter-spacing: 0.12em; margin: 0 0 16px; color: var(--accent-2); }
.footer-brand .brand { font-size: 2rem; margin-bottom: 14px; }
.footer-top ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-top a { color: var(--ink); font-size: 0.94rem; }
.footer-top a:hover { color: var(--accent-2); }
.footer-top p { font-size: 0.9rem; color: var(--ink-soft); }
.footer-bottom {
  border-top: 2px solid var(--ink); padding-block: 20px;
  display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between;
  font-family: "Courier Prime", monospace; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em;
}
.footer-bottom .vkn { color: var(--ink-soft); }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); filter: blur(4px); transition: opacity 640ms cubic-bezier(.2,.7,.2,1), transform 640ms cubic-bezier(.2,.7,.2,1), filter 640ms cubic-bezier(.2,.7,.2,1); }
.reveal.is-in { opacity: 1; transform: none; filter: blur(0); }
.reveal[style*="--i"] { transition-delay: calc(var(--i) * 70ms); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; filter: none !important; transition: none !important; } }
html.no-js .reveal { opacity: 1; transform: none; filter: none; }

/* stagger-reveal: parent stays put, grid children cascade in */
.reveal.stagger { opacity: 1 !important; transform: none !important; filter: none !important; }
.reveal.stagger > * {
  opacity: 0; transform: translateY(22px); filter: blur(4px);
  transition: opacity 640ms cubic-bezier(.2,.7,.2,1), transform 640ms cubic-bezier(.2,.7,.2,1), filter 640ms cubic-bezier(.2,.7,.2,1);
  transition-delay: calc(var(--i, 0) * 85ms);
}
.reveal.stagger.is-in > * { opacity: 1; transform: none; filter: blur(0); }
html.no-js .reveal.stagger > * { opacity: 1; transform: none; filter: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal.stagger > * { opacity: 1 !important; transform: none !important; filter: none !important; transition: none !important; }
}

/* counter breathing on ink drop */
@keyframes drip-fall {
  0% { transform: translateY(-40px) scaleY(0.6); opacity: 0; }
  40% { opacity: 1; }
  100% { transform: translateY(0) scaleY(1); opacity: 1; }
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed; bottom: 16px; left: 16px; right: 16px; max-width: 520px; margin: 0 auto;
  background: var(--bg); border: 2px solid var(--ink); padding: 20px;
  transform: translateY(140%); opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  z-index: 9999; box-shadow: 0 -6px 30px -18px rgba(0,0,0,.5);
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
@media (min-width: 720px) { .cookie-banner { left: 24px; right: auto; max-width: 420px; } }
.cookie-banner h2 { font-family: "Anton", Impact, sans-serif; text-transform: uppercase; font-size: 1.3rem; margin: 0 0 8px; }
.cookie-banner p { font-size: 0.86rem; color: var(--ink-soft); margin: 0 0 16px; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-actions button {
  flex: 1 1 auto; min-height: 44px; padding: 10px 14px; cursor: pointer;
  font-family: "Courier Prime", monospace; text-transform: uppercase; font-size: 0.74rem; letter-spacing: 0.06em; font-weight: 700;
  border: 2px solid var(--ink); background: var(--bg); color: var(--ink);
  transition: background .18s ease, color .18s ease;
}
/* Kabul et & Reddet carry equal visual weight; Ayarlar stays secondary (no dark-pattern nudge) */
.cookie-actions button[data-consent="accept"] { background: var(--ink); color: var(--bg); }
.cookie-actions button[data-consent="accept"]:hover,
.cookie-actions button[data-consent="accept"]:focus-visible { background: var(--accent-2); border-color: var(--accent-2); color: var(--bg); }
.cookie-actions button[data-consent="reject"] { background: var(--surface-2); color: var(--ink); }
.cookie-actions button[data-consent="reject"]:hover,
.cookie-actions button[data-consent="reject"]:focus-visible { background: var(--ink); border-color: var(--ink); color: var(--bg); }
.cookie-actions button[data-consent="settings"] {
  flex: 0 1 auto; background: transparent; border-color: var(--line-soft); color: var(--ink-soft);
}
.cookie-actions button[data-consent="settings"]:hover,
.cookie-actions button[data-consent="settings"]:focus-visible { border-color: var(--ink); color: var(--ink); background: var(--surface); }

/* cookie settings modal */
.cookie-modal { position: fixed; inset: 0; z-index: 10000; display: none; align-items: center; justify-content: center; padding: 16px; }
.cookie-modal.is-open { display: flex; }
.cookie-modal .cm-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.55); }
.cookie-modal .cm-panel { position: relative; background: var(--bg); border: 3px solid var(--ink); max-width: 460px; width: 100%; padding: 28px; max-height: 90vh; overflow-y: auto; }
.cookie-modal h2 { font-family: "Anton", Impact, sans-serif; text-transform: uppercase; font-size: 1.6rem; margin: 0 0 16px; }
.cm-toggle { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 14px 0; border-bottom: 1.5px solid var(--line-soft); }
.cm-toggle .t-txt strong { display: block; font-family: "Courier Prime", monospace; text-transform: uppercase; font-size: 0.78rem; letter-spacing: 0.06em; }
.cm-toggle .t-txt span { font-size: 0.82rem; color: var(--ink-soft); }
.cm-toggle input[type="checkbox"] { appearance: auto; -webkit-appearance: auto; width: 20px; height: 20px; accent-color: var(--accent-2); }
.cookie-modal .cm-save { margin-top: 20px; width: 100%; justify-content: center; }

/* 404 */
.err-wrap { text-align: center; padding-block: clamp(60px,12vw,140px); }
.err-wrap .code { font-family: "Anton", Impact, sans-serif; font-size: clamp(5rem,22vw,14rem); line-height: 0.8; color: var(--accent-2); }
.err-wrap h1 { font-size: clamp(1.8rem, 5vw, 3rem); margin: 12px 0 18px; }
.err-wrap p { color: var(--ink-soft); max-width: 44ch; margin-inline: auto; }

/* sitemap page */
.sitemap-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0; border: 2px solid var(--ink); }
.sitemap-list li { border-bottom: 2px solid var(--ink); }
.sitemap-list li:last-child { border-bottom: 0; }
.sitemap-list a { display: flex; justify-content: space-between; align-items: center; padding: 18px clamp(18px,3vw,26px); color: var(--ink); font-family: "Anton", Impact, sans-serif; text-transform: uppercase; font-size: 1.2rem; }
.sitemap-list a:hover { background: var(--ink); color: var(--bg); }
.sitemap-list a .cat-no { color: var(--accent-2); font-family: "Courier Prime", monospace; }
.sitemap-list a:hover .cat-no { color: var(--surface); }

/* utility */
.mt-0 { margin-top: 0; }
.lead { font-size: clamp(1.05rem,2.2vw,1.28rem); color: var(--ink-soft); max-width: 60ch; }
/* drop-rule: hairline with a centered kına damla — apothecary divider */
.divider-rule {
  height: 13px; background: none; width: 100%;
  margin-block: clamp(30px,4vw,52px);
  position: relative; display: flex; align-items: center; justify-content: center;
}
.divider-rule::before {
  content: ""; position: absolute; left: 0; right: 0; top: 50%;
  height: 2px; background: var(--ink); transform: translateY(-50%);
}
.divider-rule::after {
  content: ""; position: relative; z-index: 1;
  width: 11px; height: 13px; background: var(--accent-2);
  border-radius: 0 50% 50% 50%; transform: rotate(45deg);
  box-shadow: 0 0 0 6px var(--bg);
}

.scroll-progress{position:fixed;top:0;left:0;height:3px;width:0;background:var(--accent-2);z-index:9998;transition:width 80ms linear;pointer-events:none}

/* header-cta-padding-guard v1 */
.nav-desktop a.nav-cta, header a.nav-cta, .site-header a.nav-cta {
  padding: 10px 18px;
}

/* ============================================================
   PREMIUM POLISH LAYER — apothecary-editorial refinements
   ============================================================ */

/* -- font swap-in: named webfonts now resolve; retune display tracking -- */
.brand { font-family: var(--font-display); }
.brand .brand-mark, .nav-desktop a, .nav-cta,
.cookie-banner h2, .cookie-modal h2, .err-wrap .code,
.sitemap-list a { font-family: var(--font-display); }
.cookie-actions button, .cm-toggle .t-txt strong,
.sitemap-list a .cat-no { font-family: var(--font-mono); }

/* -- katalog rows: left kına indicator draws in on hover, drop before code -- */
.katalog-row { position: relative; }
.katalog-row::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--accent-2); transform: scaleY(0); transform-origin: top;
  transition: transform .28s cubic-bezier(.2,.7,.2,1);
}
.katalog-row:hover::before { transform: scaleY(1); }
.katalog-row.invertible:hover::before { background: var(--accent-2); }
.katalog-row .k-no { display: inline-flex; align-items: baseline; }

/* -- menşei raw-cell: inset accent line on hover + gentle lift of content -- */
.raw-cell { position: relative; overflow: hidden; }
.raw-cell::after {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: var(--accent-2); transform: scaleX(0); transform-origin: left;
  transition: transform .32s cubic-bezier(.2,.7,.2,1);
}
.raw-cell:hover::after { transform: scaleX(1); }

/* -- notlar: top accent draw-in + serif hover on title -- */
.not-item { position: relative; }
.not-item::after {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: var(--accent-2); transform: scaleX(0); transform-origin: left;
  transition: transform .32s cubic-bezier(.2,.7,.2,1);
}
.not-item:hover::after { transform: scaleX(1); }
.not-item h3 { transition: color .2s ease; }
.not-item:hover h3 { color: var(--accent-2); }

/* -- manşet figure: hairline frame + slow zoom, batch caption -- */
.manset-figure img { transition: transform 1.1s cubic-bezier(.2,.7,.2,1); }
.manset:hover .manset-figure img { transform: scale(1.045); }
.manset-cap {
  position: absolute; left: 0; bottom: 0; z-index: 2;
  font-family: var(--font-mono); text-transform: uppercase;
  font-size: 0.64rem; letter-spacing: 0.12em; font-weight: 700;
  color: #FBF7EF; background: rgba(20,18,16,0.78); padding: 8px 12px;
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
}

/* -- rehber steps: number gains a hairline underline flourish -- */
.rehber-step { position: relative; transition: background .28s ease; }
.rehber-step:hover { background: var(--bg); }
.rehber-step .s-no { position: relative; }

/* -- tier featured price in kına -- */
.tier.featured .price { color: var(--accent); }
.tier ul li::before { top: 0; }

/* -- gapped cards get a true lift; hint compositor only on hover-capable -- */
@media (hover: hover) {
  .channel { will-change: transform; }
}

/* -- section head asymmetry: nudge the H2 to breathe -- */
.sec-head h2 { line-height: 0.9; }
.manset-text h2, .cta-band h2 { line-height: 0.94; }

/* -- page-hero elevation: drop kicker + serif accent support -- */
.page-hero { position: relative; }
.page-hero .cat-no { display: inline-flex; align-items: center; gap: 9px; }
.page-hero .cat-no::before {
  content: ""; flex: none; width: 9px; height: 12px;
  background: var(--accent-2); border-radius: 0 50% 50% 50%; transform: rotate(45deg);
}
.page-hero h1 { line-height: 0.9; }
.page-hero em {
  font-family: var(--font-serif); font-style: italic; font-weight: 500;
  text-transform: none; color: var(--accent-2); letter-spacing: -0.01em;
}

/* -- inline rating chip (schema 4.8/47) -- */
.rating-line {
  display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-top: 18px; font-family: var(--font-mono); text-transform: uppercase;
  font-size: 0.72rem; letter-spacing: 0.08em; color: var(--ink-soft);
}
.rating-line .stars { display: inline-flex; gap: 3px; color: var(--accent-2); }
.rating-line .stars svg { width: 16px; height: 16px; fill: currentColor; }
.rating-line strong { color: var(--ink); font-family: var(--font-display); font-size: 1.05rem; letter-spacing: 0; }

/* -- buttons: refine tracking now that Courier Prime resolves -- */
.btn { font-family: var(--font-mono); }

/* -- hairline top rule between stacked light sections for rhythm -- */
#katalog, #rehber, #referanslar, #sss { border-top: 1px solid var(--line-hair); }

/* -- team members: framed portrait, slow zoom, role accent on hover -- */
.team-member { transition: background .28s ease; }
.team-member:hover { background: var(--bg); }
.team-member figure { position: relative; }
.team-member figure img { transition: transform 1.1s cubic-bezier(.2,.7,.2,1); }
.team-member:hover figure img { transform: scale(1.05); }
.team-member h3 { transition: color .2s ease; }
.team-member:hover h3 { color: var(--accent-2); }

/* -- channels: kına value on hover already; add drop cue to label -- */
.channel .c-label { display: inline-flex; align-items: center; gap: 7px; }
.channel .c-label::before {
  content: ""; flex: none; width: 7px; height: 9px; background: var(--accent-2);
  border-radius: 0 50% 50% 50%; transform: rotate(45deg);
}

/* -- katalog price gets serif numerals feel via display font (already Anton) -- */
.katalog-row h3 { transition: color .18s ease; }

/* -- lift-cards get accent shadow on hover (gapped only) -- */
.channel:hover { box-shadow: var(--shadow-accent); }

/* -- faq summary hover cue -- */
.faq summary { transition: color .18s ease, background .2s ease; }
.faq summary:hover { color: var(--accent-2); }
.faq details[open] summary { color: var(--accent); }

/* -- refine hero eyebrow + hstat label to mono var -- */
.hero .hero-eyebrow, .hstat .l { font-family: var(--font-mono); }

/* -- guard: keep italic accents from clipping descenders on mobile -- */
h1 em, h2 em, h3 em { display: inline-block; padding-bottom: 0.06em; }
