/* ============================================================
   Yıldız İnzivası — Kapadokya Gökyüzü İnzivası
   Alacakaranlık paleti: erik + şeftali + leylak
   ============================================================ */

:root {
  --bg: #2A1A2E;
  --surface: #3A2438;
  --surface-2: #46304a;
  --ink: #FBEFE6;
  --ink-soft: #d8c3c9;
  --ink-faint: #a98ea0;
  --accent: #E8A07A;       /* şeftali */
  --accent-2: #B98AC9;     /* leylak */
  --plum-deep: #1d1020;
  --line: rgba(251, 239, 230, 0.14);
  --line-strong: rgba(251, 239, 230, 0.28);
  --header-h: 76px;
  --maxw: 1180px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease-2: cubic-bezier(.4, 0, .2, 1);
  interpolate-size: allow-keywords;
}

* { 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: "Gill Sans", "Gill Sans MT", "Gill Sans Nova", Calibri, "Segoe UI", sans-serif;
  font-weight: 400;
  line-height: 1.85;
  font-size: 17px;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, "URW Palladio L", Georgia, serif;
  font-weight: 500;
  line-height: 1.18;
  color: var(--ink);
  margin: 0 0 .5em;
  letter-spacing: -0.008em;
}

p { margin: 0 0 1.1em; }

a { color: var(--accent); text-decoration: none; transition: color 240ms var(--ease-2); }
a:hover { color: var(--accent-2); }

img { max-width: 100%; height: auto; display: block; }

::selection { background: var(--accent-2); color: var(--plum-deep); }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 2000;
  background: var(--accent);
  color: var(--plum-deep);
  padding: 12px 20px;
  border-radius: 0 0 10px 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 3px;
}

.eyebrow {
  display: inline-block;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: var(--accent);
  margin-bottom: 1.1rem;
  font-weight: 600;
}

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  color: var(--ink-soft);
  line-height: 1.8;
  max-width: 62ch;
}

.quote-style {
  font-style: italic;
  font-weight: 300;
  color: var(--accent-2);
}

/* word-break safety */
.break { word-break: break-word; overflow-wrap: anywhere; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(42, 26, 46, 0.92);
  border-bottom: 1px solid var(--line);
  transition: background 240ms var(--ease-2), height 240ms var(--ease-2), box-shadow 240ms var(--ease-2);
  backdrop-filter: blur(8px);
}
.site-header.scrolled {
  background: rgba(29, 16, 32, 0.98);
  box-shadow: 0 8px 24px -16px rgba(0, 0, 0, 0.6);
  height: 64px;
}
.header-inner {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-size: 1.18rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.brand:hover { color: var(--ink); }
.brand svg { width: 30px; height: 30px; flex: none; color: var(--accent); }
.brand b { font-weight: 500; }
.brand .brand-sub {
  display: block;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-top: 1px;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
}
.nav-desktop a {
  position: relative;
  color: var(--ink-soft);
  font-size: 0.94rem;
  padding: 6px 2px;
}
.nav-desktop a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 240ms var(--ease);
}
.nav-desktop a:not(.nav-cta):hover,
.nav-desktop a.is-active:not(.nav-cta) { color: var(--ink); }
.nav-desktop a:not(.nav-cta):hover::after,
.nav-desktop a.is-active:not(.nav-cta)::after { width: 100%; }

.nav-cta {
  background: var(--accent);
  color: var(--plum-deep) !important;
  padding: 9px 20px !important;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 240ms var(--ease-2), transform 240ms var(--ease-2), box-shadow 240ms var(--ease-2);
}
.nav-desktop .nav-cta::after { display: none; }
.nav-cta:hover {
  background: var(--accent-2);
  color: var(--plum-deep) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px -12px rgba(185, 138, 201, 0.8);
}

/* hamburger */
.nav-toggle {
  display: none;
  position: relative;
  z-index: 1100;
  width: 46px; height: 46px;
  /* solid-ish fill so it stays legible over the bright hero image */
  background: rgba(29, 16, 32, 0.55);
  border: 1px solid rgba(232, 160, 122, 0.55);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  backdrop-filter: blur(4px);
  box-shadow: 0 6px 16px -10px rgba(0, 0, 0, 0.8);
  transition: background 220ms var(--ease-2), border-color 220ms var(--ease-2), transform 220ms var(--ease-2);
}
.nav-toggle:hover,
.nav-toggle[aria-expanded="true"] {
  background: rgba(29, 16, 32, 0.85);
  border-color: var(--accent);
}
.nav-toggle:active { transform: scale(0.94); }
.nav-toggle span {
  position: absolute;
  left: 11px; right: 11px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 280ms var(--ease), opacity 200ms var(--ease-2), top 200ms var(--ease-2);
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 29px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* drawer */
.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  z-index: 1050;
  background: var(--plum-deep);
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform 320ms var(--ease);
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-h) + 18px) 28px 32px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  display: block;
  color: var(--ink-soft);
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-size: 1.32rem;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.drawer a:hover, .drawer a.is-active { color: var(--accent); }
.drawer .nav-cta {
  margin-top: 22px;
  text-align: center;
  color: var(--plum-deep) !important;
  border-bottom: none;
}
.drawer .nav-cta:hover { color: var(--plum-deep) !important; }
.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1040;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 240ms var(--ease-2), visibility 240ms;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: block; }
}

main { padding-top: var(--header-h); }

/* ============================================================
   HERO — breathing moon ring + parallax starfield + twinkle
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, #1d1020 0%, #2A1A2E 34%, #4a2c3e 70%, #6e4248 100%);
  padding: clamp(56px, 12vh, 120px) 0 clamp(72px, 14vh, 140px);
}
/* peachy dawn glow rising from horizon */
.hero::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -28%;
  width: 130%; height: 70%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(232, 160, 122, 0.42) 0%, rgba(232, 160, 122, 0.12) 38%, transparent 66%);
  z-index: -1;
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
  z-index: -3;
  pointer-events: none;
}
/* parallax starfields */
.starfield {
  position: absolute;
  inset: -10% 0 0 0;
  z-index: -2;
  pointer-events: none;
}
.starfield .layer {
  position: absolute;
  inset: 0;
  background-repeat: repeat;
  will-change: transform;
}
.layer-1 {
  background-image:
    radial-gradient(1px 1px at 12% 18%, rgba(251,239,230,.9), transparent),
    radial-gradient(1px 1px at 78% 12%, rgba(251,239,230,.7), transparent),
    radial-gradient(1.4px 1.4px at 46% 40%, rgba(251,239,230,.85), transparent),
    radial-gradient(1px 1px at 88% 56%, rgba(251,239,230,.6), transparent),
    radial-gradient(1px 1px at 30% 70%, rgba(251,239,230,.7), transparent);
  background-size: 100% 100%;
}
.layer-2 {
  background-image:
    radial-gradient(1.6px 1.6px at 22% 30%, rgba(185,138,201,.9), transparent),
    radial-gradient(1.6px 1.6px at 64% 22%, rgba(251,239,230,.95), transparent),
    radial-gradient(2px 2px at 40% 64%, rgba(232,160,122,.9), transparent),
    radial-gradient(1.5px 1.5px at 84% 78%, rgba(251,239,230,.8), transparent);
  background-size: 100% 100%;
}
.layer-3 {
  background-image:
    radial-gradient(2.4px 2.4px at 16% 50%, rgba(251,239,230,1), transparent),
    radial-gradient(2.2px 2.2px at 72% 44%, rgba(232,160,122,1), transparent),
    radial-gradient(2.6px 2.6px at 52% 16%, rgba(185,138,201,1), transparent);
  background-size: 100% 100%;
}

/* twinkle dots */
.twinkle {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}
.twinkle i {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 6px 1px rgba(251, 239, 230, 0.7);
  opacity: .8;
  animation: twinkle 4.5s var(--ease-2) infinite;
  animation-delay: calc(var(--i) * 0.42s);
}
@keyframes twinkle {
  0%, 100% { opacity: .85; transform: scale(1); }
  50% { opacity: .25; transform: scale(.6); }
}

/* breathing moon ring */
.moon-ring {
  position: absolute;
  top: clamp(40px, 11vh, 110px);
  right: clamp(20px, 9vw, 140px);
  width: clamp(150px, 22vw, 260px);
  height: clamp(150px, 22vw, 260px);
  z-index: -1;
  pointer-events: none;
}
.moon-ring .ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(232, 160, 122, 0.45);
  animation: breathe 4s var(--ease-2) infinite;
}
.moon-ring .ring:nth-child(2) { animation-delay: 1.1s; border-color: rgba(185, 138, 201, 0.4); }
.moon-ring .ring:nth-child(3) { animation-delay: 2.2s; border-color: rgba(251, 239, 230, 0.3); }
@keyframes breathe {
  0% { transform: scale(.7); opacity: 0; }
  35% { opacity: .9; }
  100% { transform: scale(1.45); opacity: 0; }
}
.moon-core {
  position: absolute;
  inset: 28%;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 34%, #fbefe6, #f3d3bb 50%, #e8a07a 100%);
  box-shadow: 0 0 50px 8px rgba(232, 160, 122, 0.4), inset -10px -8px 24px rgba(110, 66, 72, 0.55);
  animation: moon-breathe 4s var(--ease-2) infinite;
}
@keyframes moon-breathe {
  0%, 100% { transform: scale(1); box-shadow: 0 0 50px 8px rgba(232,160,122,.4), inset -10px -8px 24px rgba(110,66,72,.55); }
  50% { transform: scale(1.05); box-shadow: 0 0 72px 16px rgba(232,160,122,.6), inset -10px -8px 24px rgba(110,66,72,.55); }
}
/* crescent shadow */
.moon-core::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 78% 42%, transparent 52%, rgba(42, 26, 46, 0.85) 60%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero h1 {
  font-size: clamp(2.5rem, 6.4vw, 4.5rem);
  letter-spacing: -0.012em;
  margin-bottom: .35em;
}
.hero h1 .gleam {
  background: linear-gradient(100deg, var(--accent) 0%, var(--accent-2) 55%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: clamp(1.08rem, 2vw, 1.4rem);
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 58ch;
  margin-bottom: 2rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* trust strip */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 2.4rem;
}
.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.trust-strip svg { width: 17px; height: 17px; color: var(--accent-2); flex: none; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 13px 28px;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 240ms var(--ease-2), color 240ms var(--ease-2), transform 240ms var(--ease-2), box-shadow 240ms var(--ease-2), border-color 240ms var(--ease-2);
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--accent);
  color: var(--plum-deep);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent-2);
  color: var(--plum-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -14px rgba(185, 138, 201, 0.85);
}
.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(--accent);
  transform: translateY(-2px);
}

/* ============================================================
   SECTIONS
   ============================================================ */
section { position: relative; }
.section {
  padding: clamp(56px, 9vw, 110px) 0;
}
.section-head { max-width: 64ch; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
}
.section-head p { color: var(--ink-soft); }

.band { background: var(--surface); }
.band-deep { background: var(--plum-deep); }

.rule {
  width: 64px; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border: none;
  margin: 0 0 1.4rem;
}
.section-head.center .rule { margin-left: auto; margin-right: auto; }

/* davet / intro editorial split */
.invite-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
@media (min-width: 900px) {
  .invite-grid { grid-template-columns: 1.05fr 0.95fr; }
}
.invite-text p { color: var(--ink-soft); }
.invite-text .pull {
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  line-height: 1.5;
  color: var(--accent-2);
  margin: 1.4rem 0;
  padding-left: 20px;
  border-left: 2px solid var(--accent);
}

/* art panel (peribacası silhouette) */
.art-panel {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 360px;
  background: linear-gradient(180deg, #241430 0%, #3a2438 55%, #6e4248 100%);
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px -40px rgba(0, 0, 0, 0.8);
}
.art-panel svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.art-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.art-panel .art-caption { z-index: 2; }
.art-caption {
  position: absolute;
  left: 18px; bottom: 16px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  background: rgba(29, 16, 32, 0.6);
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

/* stats */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(18px, 3vw, 36px);
  margin-top: clamp(36px, 5vw, 56px);
}
@media (min-width: 760px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { text-align: center; }
.stat .num {
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: var(--accent);
  line-height: 1;
  display: block;
}
.stat .lbl {
  font-size: 0.82rem;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  margin-top: 8px;
  display: block;
}

/* ============================================================
   GECE AKIŞI — vertical timeline
   ============================================================ */
.timeline { position: relative; max-width: 820px; margin: 0 auto; }
.timeline::before {
  content: "";
  position: absolute;
  left: 22px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2), transparent);
}
@media (min-width: 720px) { .timeline::before { left: 96px; } }
.tl-item {
  position: relative;
  padding-left: 64px;
  padding-bottom: clamp(28px, 4vw, 44px);
}
@media (min-width: 720px) {
  .tl-item { padding-left: 140px; }
}
.tl-time {
  position: absolute;
  left: 0; top: 0;
  width: 46px;
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-size: 0.92rem;
  color: var(--accent);
  text-align: left;
}
@media (min-width: 720px) {
  .tl-time { width: 80px; font-size: 1.05rem; text-align: right; }
}
.tl-dot {
  position: absolute;
  left: 15px; top: 5px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(232, 160, 122, 0.18);
}
@media (min-width: 720px) { .tl-dot { left: 89px; } }
.tl-item h3 { font-size: 1.28rem; margin-bottom: .3em; }
.tl-item p { color: var(--ink-soft); margin: 0; }
.tl-tag {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-2);
  margin-bottom: 6px;
}

/* ============================================================
   MEKAN — feature cards
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 2.5vw, 26px);
}
@media (min-width: 640px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .feature-grid { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(22px, 3vw, 30px);
  min-width: 0;
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease), border-color 280ms var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 160, 122, 0.5);
  box-shadow: 0 26px 50px -30px rgba(232, 160, 122, 0.5);
}
.card .ic {
  width: 50px; height: 50px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(185, 138, 201, 0.14);
  border: 1px solid rgba(185, 138, 201, 0.3);
  margin-bottom: 18px;
}
.card .ic svg { width: 26px; height: 26px; color: var(--accent); }
.card h3 { font-size: 1.24rem; margin-bottom: .4em; overflow-wrap: break-word; word-break: keep-all; }
.card p { color: var(--ink-soft); margin: 0; font-size: 0.96rem; }

/* mekan editorial overlap block */
.mekan-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(26px, 4vw, 48px);
  align-items: center;
  margin-bottom: clamp(40px, 6vw, 72px);
}
@media (min-width: 880px) {
  .mekan-feature { grid-template-columns: 0.9fr 1.1fr; }
  .mekan-feature.flip { grid-template-columns: 1.1fr 0.9fr; }
  .mekan-feature.flip .mf-text { order: 2; }
}
.mf-text h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
.mf-text p { color: var(--ink-soft); }
.mf-list { list-style: none; padding: 0; margin: 1.2rem 0 0; }
.mf-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--ink-soft);
}
.mf-list li::before {
  content: "";
  position: absolute;
  left: 2px; top: 9px;
  width: 12px; height: 12px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
}
.mf-list li::after {
  content: "";
  position: absolute;
  left: 6px; top: 13px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent-2);
}

/* ============================================================
   GÖZLEM ANI — constellation self-draw + quote
   ============================================================ */
.observe {
  position: relative;
  overflow: hidden;
}
.constellation {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  display: block;
}
.constellation .c-line {
  stroke: var(--accent-2);
  stroke-width: 1.4;
  fill: none;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 1600ms var(--ease);
}
.constellation .c-star {
  fill: var(--ink);
  opacity: 0;
  transition: opacity 600ms var(--ease-2);
  filter: drop-shadow(0 0 4px rgba(251, 239, 230, 0.8));
}
.observe.is-in .constellation .c-line { stroke-dashoffset: 0; }
.observe.is-in .constellation .c-star { opacity: 1; transition-delay: calc(var(--i) * 140ms + 600ms); }

.manifesto {
  text-align: center;
  max-width: 18ch;
  margin: clamp(36px, 5vw, 60px) auto 0;
}
.manifesto blockquote {
  margin: 0;
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.6rem, 4.4vw, 3rem);
  line-height: 1.35;
  color: var(--ink);
  max-width: 22ch;
  margin: 0 auto;
}
.manifesto cite {
  display: block;
  margin-top: 1.4rem;
  font-style: normal;
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ============================================================
   PRICING
   ============================================================ */
.price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 2.5vw, 26px);
}
@media (min-width: 820px) { .price-grid { grid-template-columns: repeat(3, 1fr); } }
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(26px, 3vw, 34px);
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: transform 280ms var(--ease), border-color 280ms var(--ease), box-shadow 280ms var(--ease);
}
.price-card:hover { transform: translateY(-6px); box-shadow: 0 26px 54px -32px rgba(0,0,0,.7); }
.price-card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, var(--surface), #4a2c3e);
  box-shadow: 0 0 0 1px rgba(232, 160, 122, 0.4);
}
.price-card .tier {
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.price-card .badge {
  display: inline-block;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--plum-deep);
  background: var(--accent);
  padding: 3px 11px;
  border-radius: 999px;
  margin-bottom: 14px;
  font-weight: 600;
}
.price-card .price {
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  color: var(--accent);
  line-height: 1.1;
  margin: 6px 0 2px;
}
.price-card .price small {
  display: block;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, sans-serif;
  font-size: 0.8rem;
  color: var(--ink-faint);
  letter-spacing: 0.02em;
}
.price-card ul { list-style: none; padding: 0; margin: 18px 0 24px; flex: 1; }
.price-card li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  color: var(--ink-soft);
  font-size: 0.94rem;
}
.price-card li svg { position: absolute; left: 0; top: 4px; width: 16px; height: 16px; }
.price-card li.no { color: var(--ink-faint); }
.price-card li.no svg { color: var(--ink-faint); }
.price-card li.yes svg { color: var(--accent-2); }
.price-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-faint);
  margin-top: clamp(26px, 3vw, 38px);
}

/* ============================================================
   FAQ — pure CSS accordion
   ============================================================ */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 44px 22px 0;
  position: relative;
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-size: clamp(1.08rem, 2vw, 1.25rem);
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 8px; top: 50%;
  width: 12px; height: 12px;
  margin-top: -6px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform 300ms var(--ease);
}
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-item > .answer {
  height: 0;
  padding: 0 0;
  overflow: hidden;
  color: var(--ink-soft);
  transition: height 360ms var(--ease-2), padding-block-end 360ms var(--ease-2);
}
.faq-item[open] > .answer {
  height: auto;
  padding-block-end: 24px;
}
.faq-item > .answer p { margin: 0; }
@media (prefers-reduced-motion: reduce) {
  .faq-item > .answer { transition: none; }
}

/* ============================================================
   RESERVATION / FORM
   ============================================================ */
.reserve-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(30px, 5vw, 56px);
  align-items: start;
}
@media (min-width: 920px) { .reserve-grid { grid-template-columns: 0.92fr 1.08fr; } }

.reserve-info .pull {
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  color: var(--accent-2);
  line-height: 1.5;
}
.info-list { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: 16px; }
.info-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}
.info-list .ic {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(185, 138, 201, 0.14);
  border: 1px solid rgba(185, 138, 201, 0.28);
  display: grid; place-items: center;
}
.info-list .ic svg { width: 20px; height: 20px; color: var(--accent); }
.info-list b { display: block; color: var(--ink); font-weight: 600; font-family: inherit; }
.info-list span { color: var(--ink-soft); font-size: 0.92rem; }
.info-list a { color: var(--accent); }

.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(24px, 4vw, 40px);
}

/* reservation CTA (home) */
.reserve-cta {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(180deg, var(--surface), #4a2c3e);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(30px, 5vw, 48px);
}
.reserve-cta h3 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: .4em; }
.reserve-cta p { color: var(--ink-soft); max-width: 48ch; margin: 0 auto 1.6rem; }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 560px) { .form-grid .two { grid-template-columns: 1fr 1fr; display: grid; gap: 18px; } }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label, .field > span.lab {
  font-size: 0.86rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.field label .opt { color: var(--ink-faint); font-size: 0.78rem; }
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--plum-deep);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  color: var(--ink);
  font-family: inherit;
  font-size: 1rem;
  padding: 12px 14px;
  transition: border-color 200ms var(--ease-2), box-shadow 200ms var(--ease-2);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232, 160, 122, 0.2);
}
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23E8A07A' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

.field.kvkk { flex-direction: row; align-items: flex-start; gap: 11px; }
.field.kvkk label { font-size: 0.84rem; 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: 3px 0 0;
  accent-color: var(--accent);
  box-shadow: none;
}
.form-card button[type="submit"] {
  width: 100%;
  margin-top: 4px;
  justify-content: center;
}
@media (min-width: 560px) { .form-card button[type="submit"] { width: auto; } }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #1d1020, #3a2438);
  padding: clamp(60px, 12vh, 130px) 0 clamp(40px, 7vh, 80px);
}
.page-hero .twinkle { z-index: 0; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2.2rem, 5.5vw, 3.6rem); }
.page-hero p { color: var(--ink-soft); max-width: 56ch; }

.channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(16px, 2.5vw, 24px);
}
.channel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease);
}
.channel:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 160, 122, 0.45);
  box-shadow: 0 22px 44px -28px rgba(0, 0, 0, 0.7);
}
.channel .ic {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(232, 160, 122, 0.14);
  border: 1px solid rgba(232, 160, 122, 0.3);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.channel .ic svg { width: 22px; height: 22px; color: var(--accent); }
.channel h3 { font-size: 1.1rem; margin-bottom: 4px; }
.channel a, .channel .val { color: var(--ink); font-size: 1.02rem; display: block; word-break: break-word; }
.channel a:hover { color: var(--accent); }
.channel small { color: var(--ink-faint); font-size: 0.8rem; display: block; margin-top: 6px; }

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 8px;
}
.hours-day {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-variant-numeric: tabular-nums;
}
.hours-day.today { border-color: var(--accent); background: linear-gradient(180deg, var(--surface), #4a2c3e); }
.hours-day b { font-weight: 600; }
.hours-day span { color: var(--ink-soft); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--plum-deep);
  border-top: 1px solid var(--line);
  padding: clamp(48px, 7vw, 80px) 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 48px);
}
@media (min-width: 760px) { .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.92rem; max-width: 40ch; }
.footer-col h4 {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a, .footer-col span { color: var(--ink-soft); font-size: 0.94rem; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  margin-top: clamp(36px, 5vw, 56px);
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--ink-faint);
}
.footer-bottom a { color: var(--ink-faint); }
.footer-bottom a:hover { color: var(--accent); }
.footer-social { display: flex; gap: 14px; }
.footer-social a { display: inline-grid; place-items: center; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; }
.footer-social svg { width: 18px; height: 18px; }

/* ============================================================
   LEGAL / DOC PAGES
   ============================================================ */
.doc { padding: clamp(40px, 6vw, 72px) 0 clamp(56px, 8vw, 96px); }
.doc-wrap { max-width: 760px; margin: 0 auto; }
.doc h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin-top: 2.2em; }
.doc h2:first-of-type { margin-top: 0; }
.doc h3 { font-size: 1.15rem; margin-top: 1.6em; }
.doc p, .doc li { color: var(--ink-soft); line-height: 1.7; }
.doc ul, .doc ol { padding-left: 22px; }
.doc li { margin-bottom: 8px; }
.doc .updated { font-size: 0.85rem; color: var(--ink-faint); margin-bottom: 2rem; }

/* tables */
.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.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 {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}
.table-scroll th { color: var(--accent); font-weight: 600; background: var(--surface); }
.table-scroll td { color: var(--ink-soft); }

/* sitemap page */
.sitemap-list { list-style: none; padding: 0; columns: 2; column-gap: 40px; }
@media (max-width: 560px) { .sitemap-list { columns: 1; } }
.sitemap-list li { margin-bottom: 12px; break-inside: avoid; }

/* 404 */
.notfound {
  min-height: calc(100vh - var(--header-h));
  display: grid;
  place-items: center;
  text-align: center;
  background: linear-gradient(180deg, #1d1020, #2A1A2E 60%, #4a2c3e);
  position: relative;
  overflow: hidden;
}
.notfound .big {
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-size: clamp(5rem, 18vw, 12rem);
  line-height: 1;
  color: var(--accent);
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  padding: 22px 24px;
  z-index: 9999;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms var(--ease), opacity 240ms;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.9);
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
@media (min-width: 768px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}
.cookie-banner h4 { font-size: 1.1rem; margin-bottom: 8px; }
.cookie-banner p { font-size: 0.88rem; color: var(--ink-soft); margin: 0 0 16px; }
.cookie-banner p a { color: var(--accent); text-decoration: underline; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-actions button {
  flex: 1 1 auto;
  min-height: 44px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  padding: 10px 16px;
  border: 1px solid var(--line-strong);
  transition: background 220ms var(--ease-2), color 220ms var(--ease-2), border-color 220ms var(--ease-2);
}
.cookie-actions [data-consent="accept"] { background: var(--accent); color: var(--plum-deep); border-color: var(--accent); }
.cookie-actions [data-consent="accept"]:hover { background: var(--accent-2); border-color: var(--accent-2); color: var(--plum-deep); }
/* reject must read as an equal peer to accept (no dark pattern) */
.cookie-actions [data-consent="reject"] { background: var(--surface-2); color: var(--ink); border-color: var(--line-strong); }
.cookie-actions [data-consent="reject"]:hover { background: var(--surface); color: var(--ink); border-color: var(--accent); }
.cookie-actions [data-consent="settings"] { background: transparent; color: var(--ink-soft); }
.cookie-actions [data-consent="settings"]:hover { color: var(--ink); border-color: var(--accent); }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
  transition-delay: calc(var(--i, 0) * 90ms);
}
.reveal.is-in { opacity: 1; transform: none; }
html.no-js .reveal { opacity: 1; transform: none; }
html.no-js .constellation .c-line { stroke-dashoffset: 0; }
html.no-js .constellation .c-star { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .twinkle i, .moon-ring .ring, .moon-core, .starfield .layer,
  .constellation .c-line, .constellation .c-star {
    animation: none !important;
    transition: none !important;
  }
  .constellation .c-line { stroke-dashoffset: 0 !important; }
  .constellation .c-star { opacity: 1 !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 640px) {
  body { font-size: 16px; }
  .card { padding: 20px; }
  .card .ic { width: 44px; height: 44px; }
  .hero-actions { gap: 12px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .moon-ring { opacity: .7; }
}

.scroll-progress{position:fixed;top:0;left:0;height:3px;width:0;background:var(--accent);z-index:9998;transition:width 80ms linear;pointer-events:none}

/* header-cta-padding-guard v1 */
.nav-desktop a.nav-cta, header a.nav-cta, .site-header a.nav-cta {
  padding: 10px 18px;
}

/* drawer-cta-color-guard v1 */
.drawer a.nav-cta, .drawer .nav-cta, .mobile-menu a.nav-cta, nav[class*=mobile] a.nav-cta {
  color: var(--plum-deep) !important;
}
