/* ============================================================
   sessiz koridorlar — beyoğlu • galata • cihangir yürüyüşleri
   storytelling-longread, ink-on-paper, küçük grup
   ============================================================ */

:root {
  --bg: #F2EBDF;
  --surface: #FBF6EA;
  --surface-2: #EFE5D2;
  --ink: #231C14;
  --ink-soft: #4a3f31;
  --ink-mute: #7a6c5a;
  --line: rgba(35, 28, 20, 0.14);
  --line-strong: rgba(35, 28, 20, 0.28);
  --accent: #6B3B1F;
  --accent-2: #3A4A2E;
  --accent-soft: rgba(107, 59, 31, 0.08);

  --serif: 'Lora', 'Cardo', 'Georgia', serif;
  --sans: 'Karla', 'Inter', system-ui, -apple-system, sans-serif;

  --container: 1080px;
  --column: 640px;
  --gutter: clamp(20px, 4vw, 40px);

  --header-h: 72px;
  interpolate-size: allow-keywords;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  max-width: 100vw;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
}

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16.5px;
  line-height: 1.72;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

/* paper grain — subtle, under everything */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(35,28,20,0.022) 1px, transparent 1px),
    radial-gradient(rgba(35,28,20,0.018) 1px, transparent 1px);
  background-size: 3px 3px, 7px 7px;
  background-position: 0 0, 1.5px 1.5px;
  z-index: 1;
  mix-blend-mode: multiply;
}
body > * { position: relative; z-index: 2; }

/* ============ TYPOGRAPHY ============ */

h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 600;
  font-style: italic;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0 0 0.6em;
  line-height: 1.12;
}

h1 { font-size: clamp(40px, 7.4vw, 88px); line-height: 1.02; }
h2 { font-size: clamp(28px, 4vw, 44px); line-height: 1.1; }
h3 { font-size: clamp(22px, 2.8vw, 30px); line-height: 1.18; }
h4 { font-size: clamp(18px, 2.2vw, 22px); line-height: 1.3; font-style: normal; font-weight: 500; }

p { margin: 0 0 1.15em; max-width: 64ch; }
.column p { max-width: var(--column); }

a { color: inherit; text-decoration: none; transition: color 200ms ease; }
a:not(.btn-primary):not(.btn-ghost):not(.nav-cta):hover { color: var(--accent); }

::selection { background: var(--accent); color: var(--surface); }

.eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 18px;
  display: inline-block;
}

.lead {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(19px, 2.1vw, 22px);
  line-height: 1.55;
  color: var(--ink-soft);
}

.fineprint { font-size: 13.5px; color: var(--ink-mute); line-height: 1.6; }

/* skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--surface);
  padding: 10px 16px; z-index: 9999; font-weight: 500;
}
.skip-link:focus { left: 12px; top: 12px; }

/* focus */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ============ CONTAINER / GRID ============ */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.column-narrow {
  max-width: var(--column);
  margin-left: auto;
  margin-right: auto;
}

/* ============ HEADER ============ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  background: rgba(242, 235, 223, 0.94);
  backdrop-filter: blur(10px) saturate(1.1);
  -webkit-backdrop-filter: blur(10px) saturate(1.1);
  border-bottom: 1px solid transparent;
  transition: background 240ms ease, border-color 240ms ease, box-shadow 240ms ease, height 200ms ease;
}
.site-header.is-scrolled {
  background: rgba(242, 235, 223, 1);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px -16px rgba(35, 28, 20, 0.18);
}
.scroll-progress {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: transparent;
  pointer-events: none;
  overflow: hidden;
}
.scroll-progress > span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 120ms cubic-bezier(.2,.7,.2,1);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand-mark {
  width: 26px; height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  flex-shrink: 0;
  color: var(--ink);
}
.brand-mark svg { width: 100%; height: 100%; display: block; }
.site-footer .brand-mark { color: #f5ecd5; }

.nav-desktop {
  display: none;
  align-items: center;
  gap: 28px;
}
.nav-desktop a {
  position: relative;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink);
  padding: 6px 0;
}
.nav-desktop a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:not(.nav-cta):hover::after,
.nav-desktop a.is-active:not(.nav-cta)::after { transform: scaleX(1); }
.nav-desktop a:not(.nav-cta):hover { color: var(--accent); }
.nav-desktop a.is-active:not(.nav-cta) { color: var(--accent); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--surface) !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}
.nav-desktop .nav-cta::after { display: none !important; }
.nav-desktop .nav-cta:hover,
.nav-cta:hover, .nav-cta:focus-visible {
  background: var(--accent);
  color: var(--surface) !important;
  transform: translateY(-1px);
}

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none; }
}

.nav-toggle {
  z-index: 1100;
  position: relative;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: background 200ms ease, border-color 200ms ease;
}
.nav-toggle:hover { background: var(--surface); }
.nav-toggle .bars {
  position: relative;
  width: 18px;
  height: 12px;
  display: inline-block;
}
.nav-toggle .bars span {
  position: absolute;
  left: 0; right: 0;
  height: 1.5px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 280ms cubic-bezier(.5,0,.2,1), opacity 200ms ease, top 280ms cubic-bezier(.5,0,.2,1);
}
.nav-toggle .bars span:nth-child(1) { top: 0; }
.nav-toggle .bars span:nth-child(2) { top: 5px; }
.nav-toggle .bars span:nth-child(3) { top: 10px; }
.nav-toggle.is-open .bars span:nth-child(1) { top: 5px; transform: rotate(45deg); }
.nav-toggle.is-open .bars span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open .bars span:nth-child(3) { top: 5px; transform: rotate(-45deg); }

/* ============ MOBILE DRAWER ============ */

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(35, 28, 20, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
  z-index: 1040;
}
.drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--bg);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-h) + 24px) 28px 32px;
  border-left: 1px solid var(--line);
  overflow-y: auto;
}
.mobile-drawer.is-open { transform: translateX(0); }
.drawer-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  z-index: 2;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease, transform 200ms cubic-bezier(.2,.7,.2,1);
}
.drawer-close:hover, .drawer-close:focus-visible {
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
  transform: rotate(90deg);
}
.drawer-close svg { width: 18px; height: 18px; display: block; }
.mobile-drawer a {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.mobile-drawer a.is-active { color: var(--accent); }
.mobile-drawer .nav-cta {
  margin-top: 20px;
  font-style: normal;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  border-bottom: 0;
  text-align: center;
  display: block;
}
.mobile-drawer .drawer-sig {
  margin-top: auto;
  padding-top: 24px;
  font-size: 13px;
  color: var(--ink-mute);
  font-family: var(--serif);
  font-style: italic;
  border-top: 1px dashed var(--line);
}

@media (min-width: 1024px) {
  .mobile-drawer, .drawer-backdrop { display: none !important; }
}

/* ============ MAIN ============ */

main { padding-top: var(--header-h); }

section { padding: clamp(64px, 9vw, 110px) 0; position: relative; }

/* ============ HERO ============ */

.hero {
  padding: clamp(54px, 7vw, 90px) 0 clamp(40px, 6vw, 70px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  color: var(--ink-mute);
  font-size: 11.5px;
  letter-spacing: 0.22em;
  font-weight: 500;
  text-transform: uppercase;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--line-strong);
}
.hero-h1 {
  margin: 0 auto 26px;
  max-width: 14ch;
  font-size: clamp(38px, 5.4vw, 72px);
  line-height: 1.04;
  font-style: italic;
  position: relative;
  display: inline-block;
}
.hero-h1 .ink-line {
  position: absolute;
  bottom: -10px;
  left: 6%;
  right: 6%;
  height: 14px;
  pointer-events: none;
}
.hero-h1 .ink-line svg { width: 100%; height: 100%; overflow: visible; }
.hero-h1 .ink-line path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: drawInk 4s cubic-bezier(.22,.61,.36,1) 700ms forwards;
}
@keyframes drawInk {
  to { stroke-dashoffset: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-h1 .ink-line path { animation: none; stroke-dashoffset: 0; }
}

.hero-sub {
  max-width: 56ch;
  margin: 22px auto 0;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(17px, 1.9vw, 21px);
  line-height: 1.6;
  color: var(--ink-soft);
}
.hero-cta-row {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.hero-portrait {
  margin: clamp(48px, 7vw, 80px) auto 0;
  max-width: 360px;
  position: relative;
}
.hero-portrait .frame {
  position: relative;
  border: 1px solid var(--line-strong);
  padding: 14px;
  background: var(--surface);
  box-shadow: 0 30px 60px -40px rgba(35,28,20,0.4);
}
.hero-portrait .frame::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 0.5px solid var(--line);
  pointer-events: none;
}
.hero-portrait svg.portrait-art { width: 100%; height: auto; display: block; }
.hero-portrait .caption {
  margin-top: 14px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-mute);
  text-align: center;
  letter-spacing: 0.01em;
}
.parallax-portrait { will-change: transform; }

/* hero ambient leaves drift */
.hero .leaf {
  position: absolute;
  width: 28px;
  height: 28px;
  opacity: 0.18;
  pointer-events: none;
  animation: leafDrift 14s linear infinite;
}
.hero .leaf:nth-child(1) { top: 12%; left: 6%; animation-delay: 0s; }
.hero .leaf:nth-child(2) { top: 30%; right: 8%; animation-delay: -4s; animation-duration: 18s; }
.hero .leaf:nth-child(3) { bottom: 16%; left: 14%; animation-delay: -8s; animation-duration: 22s; }
.hero .leaf:nth-child(4) { bottom: 8%; right: 10%; animation-delay: -2s; animation-duration: 16s; }
@keyframes leafDrift {
  0%   { transform: translate(0,0) rotate(0); }
  25%  { transform: translate(-12px, 18px) rotate(36deg); }
  50%  { transform: translate(8px, 30px) rotate(-22deg); }
  75%  { transform: translate(16px, 12px) rotate(28deg); }
  100% { transform: translate(0,0) rotate(0); }
}
@media (prefers-reduced-motion: reduce) { .hero .leaf { animation: none; } }

/* page numbers (01 / 02 ...) */
.pagenum {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.25em;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.pagenum::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--accent);
}

/* ============ SECTION HEADINGS WITH HAND-DRAWN UNDERLINE ============ */

.section-title {
  font-size: clamp(30px, 4.6vw, 50px);
  margin-bottom: 36px;
  position: relative;
  display: inline-block;
}
.section-title .squig {
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 64%;
  height: 8px;
  pointer-events: none;
}
.section-title .squig path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.4;
  stroke-linecap: round;
}

/* ============ MAHALLELER SECTION ============ */

.section-mahalleler { background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 60%, var(--bg) 100%); }

.story-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 40px);
  max-width: 760px;
  margin: 0 auto clamp(56px, 7vw, 90px);
  position: relative;
}
.story-block:last-child { margin-bottom: 0; }
.story-block .story-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(64px, 10vw, 110px);
  line-height: 0.9;
  color: var(--accent);
  opacity: 0.7;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.story-block .story-meta {
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 6px 0 14px;
  font-weight: 500;
}
.story-block h3 {
  font-size: clamp(28px, 3.4vw, 38px);
  margin-bottom: 18px;
}
.story-block p {
  max-width: var(--column);
  font-size: 17px;
  line-height: 1.78;
  color: var(--ink-soft);
}
.story-block p + p { margin-top: 1.05em; }
.story-block .pull {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.3vw, 24px);
  line-height: 1.5;
  color: var(--ink);
  border-left: 2px solid var(--accent);
  padding: 4px 0 4px 24px;
  margin: 28px 0;
  max-width: var(--column);
}

@media (min-width: 820px) {
  .story-block {
    grid-template-columns: 110px 1fr;
    align-items: start;
    gap: 40px;
  }
  .story-block .story-num {
    text-align: right;
    position: sticky;
    top: 100px;
  }
}

/* ============ DAILY NARRATIVE TIMELINE ============ */

.section-day { background: var(--bg); }
.day-intro {
  max-width: var(--column);
  margin: 0 auto 50px;
  text-align: center;
}
.day-intro h2 { display: inline-block; }

.timeline {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 78px;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, var(--line-strong) 8%, var(--line-strong) 92%, transparent 100%);
}
@media (max-width: 640px) {
  .timeline::before { left: 56px; }
}

.tl-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  position: relative;
  padding: 18px 0;
}
@media (max-width: 640px) {
  .tl-item { grid-template-columns: 68px 1fr; gap: 14px; }
}
.tl-time {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 19px;
  color: var(--accent);
  text-align: right;
  padding-top: 4px;
  letter-spacing: 0.01em;
}
.tl-dot {
  position: absolute;
  left: 78px;
  top: 30px;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--bg);
  border: 1.5px solid var(--accent);
  transform: translateX(-50%);
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), background 280ms ease;
}
@media (max-width: 640px) { .tl-dot { left: 56px; } }
.tl-item:hover .tl-dot { background: var(--accent); transform: translateX(-50%) scale(1.4); }
.tl-content h4 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 19px;
  margin: 0 0 8px;
}
.tl-content p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0;
}

/* footstep stagger reveal */
.tl-item.reveal { transition-delay: calc(var(--i, 0) * 70ms); }

/* ============ GUIDE SECTION ============ */

.section-guide {
  background: var(--surface);
  border-block: 1px solid var(--line);
}
.guide-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}
@media (min-width: 880px) {
  .guide-grid {
    grid-template-columns: 320px 1fr;
  }
}
.guide-portrait .frame {
  position: relative;
  border: 1px solid var(--line-strong);
  padding: 12px;
  background: var(--bg);
}
.guide-portrait .frame::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 0.5px solid var(--line);
  pointer-events: none;
}
.guide-portrait svg.portrait-art { width: 100%; height: auto; }
.guide-portrait .credit {
  margin-top: 12px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--ink-mute);
}
.guide-text h2 {
  margin-bottom: 22px;
}
.guide-text p {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.78;
  max-width: 60ch;
}
.guide-cv {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.guide-cv li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--ink-soft);
}
.guide-cv li b {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  color: var(--accent);
}
.guide-quote {
  margin: 32px 0 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink);
  position: relative;
  padding-left: 28px;
}
.guide-quote::before {
  content: '"';
  position: absolute;
  left: -2px; top: -8px;
  font-size: 60px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.6;
}

/* ============ TAKVIM (CALENDAR) ============ */

.section-takvim { background: var(--bg); }
.takvim-intro {
  max-width: var(--column);
  margin: 0 auto 44px;
  text-align: center;
}
.takvim-list {
  max-width: 720px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
  border-top: 1px solid var(--line-strong);
}
.takvim-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 22px 4px;
  border-bottom: 1px solid var(--line);
  transition: padding-left 240ms cubic-bezier(.2,.7,.2,1), background 240ms ease;
}
.takvim-list li:hover { padding-left: 12px; background: var(--surface); }

.takvim-date {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.takvim-date .d {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.takvim-date .when {
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: 0.05em;
}
.takvim-status {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.takvim-status .seat {
  font-size: 13px;
  color: var(--accent-2);
  font-weight: 500;
}
.takvim-status .seat.low { color: var(--accent); }
.takvim-status a {
  font-size: 13.5px;
  letter-spacing: 0.03em;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 1px;
}
.takvim-status a:hover { color: var(--accent); border-bottom-color: var(--accent); }

@media (max-width: 560px) {
  .takvim-list li { grid-template-columns: 1fr; gap: 8px; }
  .takvim-status { justify-content: space-between; }
}

/* ============ PRICING / RESERVATION TEASER ============ */

.section-fiyat {
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
  border-top: 1px solid var(--line);
}
.fiyat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 2.4vw, 28px);
  max-width: 960px;
  margin: 0 auto;
}
@media (min-width: 760px) {
  .fiyat-grid { grid-template-columns: repeat(3, 1fr); }
}
.fiyat-card {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: clamp(22px, 3vw, 32px);
  position: relative;
  transition: transform 260ms cubic-bezier(.2,.7,.2,1), box-shadow 260ms ease, border-color 260ms ease;
}
.fiyat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -28px rgba(107, 59, 31, 0.35);
  border-color: var(--accent);
}
.fiyat-card.featured {
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
}
.fiyat-card.featured h3,
.fiyat-card.featured .price { color: var(--surface); }
.fiyat-card .tier {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 12px;
}
.fiyat-card.featured .tier { color: #d8b394; }
.fiyat-card h3 {
  font-size: 22px;
  margin: 0 0 14px;
}
.fiyat-card .price {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(28px, 3.6vw, 36px);
  margin: 8px 0 6px;
  color: var(--ink);
}
.fiyat-card .price small {
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-mute);
  font-style: normal;
  margin-left: 4px;
}
.fiyat-card.featured .price small { color: #d8b394; }
.fiyat-card ul {
  list-style: none;
  padding: 16px 0 0;
  margin: 14px 0 0;
  border-top: 1px solid var(--line);
}
.fiyat-card.featured ul { border-top-color: rgba(255,255,255,0.15); }
.fiyat-card li {
  font-size: 14.5px;
  padding: 6px 0;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  align-items: baseline;
  color: var(--ink-soft);
}
.fiyat-card.featured li { color: #e8dcc4; }
.fiyat-card li::before {
  content: '·';
  font-family: var(--serif);
  font-size: 22px;
  color: var(--accent);
  line-height: 0.5;
}
.fiyat-foot {
  text-align: center;
  margin-top: clamp(36px, 4vw, 48px);
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-mute);
  font-size: 15px;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

/* ============ BUTTONS ============ */

.btn-primary, .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent);
  color: var(--surface);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--ink);
  transform: translateY(-2px);
}
.btn-primary svg, .btn-ghost svg { width: 14px; height: 14px; }

/* ============ FOOTER ============ */

.site-footer {
  background: var(--ink);
  color: #d8cdb9;
  padding: clamp(56px, 7vw, 84px) 0 28px;
  border-top: 1px solid var(--ink);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 56px);
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
.footer-col h5 {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #b3a78e;
  margin: 0 0 18px;
}
.footer-col p { color: #c9bda6; font-size: 14.5px; line-height: 1.72; max-width: 36ch; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { padding: 5px 0; font-size: 14.5px; }
.footer-col a { color: #d8cdb9; }
.footer-col a:hover { color: #f0e5cc; }
.footer-brand .brand { color: #f5ecd5; font-size: 24px; margin-bottom: 14px; display: inline-flex; }
.footer-meta {
  margin-top: clamp(40px, 5vw, 56px);
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  font-size: 12.5px;
  color: #8d8169;
  letter-spacing: 0.04em;
}
.footer-meta a { color: #b3a78e; }
.footer-meta a:hover { color: #f0e5cc; }

/* ============ COOKIE BANNER ============ */

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--ink);
  color: #e7dcc4;
  padding: 20px 22px;
  border-radius: 4px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.4);
  z-index: 1100;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms ease;
  font-size: 14px;
  line-height: 1.55;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
@media (min-width: 760px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}
.cookie-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 17px;
  margin: 0 0 6px;
  color: #f5ecd5;
}
.cookie-banner p { color: #d4c8b0; margin: 0 0 14px; max-width: none; }
.cookie-banner a { color: #f5ecd5; text-decoration: underline; text-underline-offset: 3px; }
.cookie-banner a:hover { color: #fff; }
.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-banner button {
  flex: 1 1 auto;
  min-height: 44px;
  padding: 10px 14px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}
.cookie-banner button.accept {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--surface);
}
.cookie-banner button.accept:hover {
  background: var(--accent);
  color: var(--surface);
  border-color: var(--accent);
}
.cookie-banner button.reject,
.cookie-banner button.settings {
  background: transparent;
  color: #e7dcc4;
  border-color: rgba(255,255,255,0.2);
}
.cookie-banner button.reject:hover,
.cookie-banner button.settings:hover {
  background: rgba(255,255,255,0.06);
  color: #f5ecd5;
  border-color: rgba(255,255,255,0.4);
}

/* ============ FORM ============ */

.form-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: clamp(24px, 4vw, 40px);
  max-width: 720px;
  margin: 0 auto;
}
.form-wrap h2 { margin-top: 0; }
.field {
  display: block;
  margin-bottom: 18px;
}
.field label {
  display: block;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-mute);
  margin-bottom: 6px;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 15.5px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  color: var(--ink);
  transition: border-color 200ms ease, background 200ms ease;
}
.field textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface);
}
.field input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px; height: 18px;
  min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 2px 0 0;
  accent-color: var(--accent);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 600px) { .field-row { grid-template-columns: 1fr 1fr; } }
.field-checkbox {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  margin: 6px 0 22px;
}
.field-checkbox label {
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.6;
}
.field-honeypot { position: absolute; left: -9999px; }
.form-status {
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 4px;
  font-size: 14.5px;
  display: none;
}
.form-status.is-success { display: block; background: rgba(58, 74, 46, 0.08); border: 1px solid var(--accent-2); color: var(--accent-2); }
.form-status.is-error { display: block; background: rgba(107, 59, 31, 0.08); border: 1px solid var(--accent); color: var(--accent); }

/* ============ TABLE SCROLL ============ */

.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: 4px;
}
.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-scroll th, .table-scroll td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
  vertical-align: top;
}
.table-scroll th {
  background: var(--surface);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  color: var(--ink);
}

/* ============ FAQ accordion (pure CSS, interpolate-size) ============ */

.faq { max-width: 720px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 4px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 19px;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 220ms ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '';
  width: 12px; height: 12px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  transform: rotate(45deg);
  transition: transform 280ms cubic-bezier(.4,0,.2,1), border-color 220ms ease;
  flex-shrink: 0;
  margin-right: 6px;
}
.faq details[open] summary { color: var(--accent); }
.faq details[open] summary::after { transform: rotate(-135deg); border-color: var(--accent); }
.faq .body {
  height: 0;
  padding: 0 4px;
  overflow: hidden;
  transition: height 360ms cubic-bezier(.4,0,.2,1), padding-block-end 360ms cubic-bezier(.4,0,.2,1);
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.72;
}
.faq details[open] .body {
  height: auto;
  padding-block-end: 22px;
}
.faq .body p { max-width: 60ch; }
@media (prefers-reduced-motion: reduce) {
  .faq .body { transition: none; }
}

/* ============ CONTACT CHANNELS ============ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 48px);
  max-width: 960px;
  margin: 0 auto;
}
@media (min-width: 880px) {
  .contact-grid { grid-template-columns: 360px 1fr; align-items: start; }
}
.contact-channels {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.contact-channels li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 8px;
  border-bottom: 1px solid var(--line);
  transition: transform 240ms cubic-bezier(.4,0,.2,1), background 240ms ease, padding-left 240ms ease;
}
.contact-channels li:hover {
  background: var(--surface);
  padding-left: 14px;
}
.contact-channels li:hover .ch-icon { color: var(--accent); transform: scale(1.08); }
.ch-icon {
  width: 22px; height: 22px;
  color: var(--ink-soft);
  transition: color 240ms ease, transform 240ms ease;
  flex-shrink: 0;
  margin-top: 2px;
}
.ch-label {
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.ch-value {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  margin-top: 2px;
  display: block;
  line-height: 1.4;
}
.ch-note {
  font-size: 13.5px;
  color: var(--ink-mute);
  font-style: normal;
  font-weight: 400;
  font-family: var(--sans);
  margin-top: 4px;
  line-height: 1.55;
}

/* ============ PROSE PAGES (legal / hakkimizda) ============ */

.prose {
  max-width: var(--column);
  margin: 0 auto;
}
.prose h2 {
  margin-top: 2em;
  font-size: clamp(24px, 3vw, 32px);
}
.prose h3 {
  margin-top: 1.6em;
  font-size: clamp(19px, 2.2vw, 22px);
}
.prose p, .prose li {
  font-size: 16px;
  line-height: 1.78;
  color: var(--ink-soft);
}
.prose ul, .prose ol { padding-left: 22px; }
.prose li { margin-bottom: 6px; }
.prose strong { color: var(--ink); font-weight: 600; }

.page-hero {
  padding: clamp(56px, 8vw, 100px) 0 clamp(40px, 5vw, 60px);
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-size: clamp(34px, 6vw, 64px);
  margin-bottom: 14px;
}
.page-hero p {
  max-width: 50ch;
  margin: 14px auto 0;
  color: var(--ink-soft);
  font-style: italic;
  font-family: var(--serif);
  font-size: 17px;
}

/* ============ 404 ============ */

.error-wrap {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0;
  text-align: center;
}
.error-wrap .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(120px, 22vw, 240px);
  color: var(--accent);
  line-height: 0.9;
  margin: 0 0 14px;
  font-weight: 600;
}

/* ============ REVEAL ANIMATIONS ============ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms cubic-bezier(.2,.7,.2,1),
    transform 700ms cubic-bezier(.2,.7,.2,1);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[style*="--i"] { transition-delay: calc(var(--i) * 80ms); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .leaf, .ink-line path, .tl-dot { animation: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }

/* ============ MISC HELPERS ============ */

.hr-ink {
  margin: clamp(40px, 5vw, 60px) auto;
  max-width: 240px;
  border: 0;
  height: 1px;
  background: var(--accent);
  opacity: 0.45;
  position: relative;
  display: block;
}
.hr-ink::before, .hr-ink::after {
  content: '';
  position: absolute;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  top: -2px;
}
.hr-ink::before { left: 0; }
.hr-ink::after { right: 0; }

.cap {
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}

/* hide on mobile / desktop helpers */
@media (max-width: 1023px) { .hide-mobile { display: none !important; } }
@media (min-width: 1024px) { .hide-desktop { display: none !important; } }

/* word-break safety */
p, li, a, td, span {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* ============ PRINT ============ */
@media print {
  .site-header, .nav-toggle, .mobile-drawer, .drawer-backdrop, .cookie-banner, .leaf { display: none !important; }
  body { background: #fff; color: #000; }
  body::before { display: none; }
  main { padding-top: 0; }
}

/* === Brand/logo hover effect (universal) === */
.brand, .logo, .footer-brand .brand {
  transition: color 220ms ease, opacity 220ms ease, transform 220ms ease, letter-spacing 220ms ease;
}
header .brand:hover,
header a.brand:hover,
.site-header .brand:hover,
.site-header a:hover,
.header-inner .brand:hover {
  color: var(--accent) !important;
  opacity: 1 !important;
  transform: translateY(-1px);
}
.brand:hover .brand__num,
.brand:hover .brand-mark { transform: scale(1.06); transition: transform 220ms ease; }
.brand:active, .logo:active { transform: translateY(0) scale(0.98); }
