@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..700;1,9..144,300..600&display=swap");

/* =========================================================
   Altın Saat Kaş — Gün batımı tandem uçuş
   Design DNA: koyu alacakaranlık, altın saat, bakır deniz, mor ufuk
   Type: Fraunces (opsz) başlıklarda — sıcak, romantik, editoryal
   ========================================================= */

:root {
  --bg: #1A1412;
  --surface: #241B17;
  --surface-2: #2E231D;
  --ink: #F8EFE6;
  --ink-soft: #cdbfb1;
  --ink-mute: #9c8b7d;
  --accent: #FF8A5B;
  --accent-2: #7C5CFF;
  --line: rgba(248, 239, 230, 0.12);
  --line-strong: rgba(248, 239, 230, 0.22);
  --gold: #d9a566;
  --header-h: 74px;
  --maxw: 1080px;

  --serif: "Fraunces", "Palatino Linotype", Palatino, "Book Antiqua", Cambria, Georgia, serif;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* live sky (updated by JS on scroll: day -> sunset) */
  --sky-top: #2b4a6b;
  --sky-mid: #6a5a7a;
  --sky-low: #b57a6a;
  --sky-glow: rgba(255, 138, 91, 0);

  interpolate-size: allow-keywords;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* live gradient sky background reacts to scroll */
  background:
    radial-gradient(120% 80% at 78% 12%, var(--sky-glow), transparent 60%),
    linear-gradient(180deg, var(--sky-top) 0%, var(--sky-mid) 42%, var(--sky-low) 74%, var(--bg) 100%);
  background-attachment: fixed;
  transition: none;
}
/* fixed backgrounds jank on touch/mobile — let the sky scroll with content */
@media (max-width: 900px), (hover: none) and (pointer: coarse) {
  html { background-attachment: scroll; }
}

html, body {
  overflow-x: hidden;
  max-width: 100vw;
  margin: 0;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.75;
  font-size: 1.02rem;
  background: transparent;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-weight: 460;
  line-height: 1.12;
  letter-spacing: -0.018em;
  color: var(--ink);
  text-wrap: balance;
}
/* golden-hour italic accent inside display headings */
h1 em, h2 em, h3 em, .lede em, .reserve-cta h3 em {
  font-style: italic;
  font-weight: 380;
  color: var(--gold);
}

p { margin: 0 0 1.15em; overflow-wrap: anywhere; }
a { color: var(--accent); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 48px);
  padding-right: clamp(16px, 4vw, 48px);
}

.eyebrow {
  font-family: system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.74rem;
  color: var(--accent);
  margin: 0 0 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* gold divider */
.rule {
  height: 1px;
  border: 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.55;
  margin: clamp(40px, 7vw, 88px) auto;
  max-width: 560px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: #1a1210;
  padding: 10px 16px;
  z-index: 2000;
  border-radius: 0 0 8px 0;
}
.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;
}

/* ---------------- 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(26, 20, 18, 0.92);
  border-bottom: 1px solid var(--line);
  transition: background 240ms ease, box-shadow 240ms ease, height 240ms ease;
}
.site-header.is-scrolled {
  background: rgba(20, 15, 13, 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, 48px);
  padding-right: clamp(16px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 1.16rem;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.brand:hover { color: var(--ink); }
.brand .mark {
  width: 30px; height: 30px;
  color: var(--accent);
  flex: none;
}
.brand b { font-weight: 400; }
.brand span { color: var(--accent); }

.nav-desktop { display: none; }
@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 28px;
  }
  .nav-desktop a {
    position: relative;
    color: var(--ink-soft);
    font-size: 0.95rem;
    padding: 6px 2px;
    transition: color 200ms ease;
  }
  .nav-desktop a::after {
    content: "";
    position: absolute;
    left: 0; bottom: -2px;
    width: 0; height: 1.5px;
    background: var(--accent);
    transition: width 220ms cubic-bezier(.2,.7,.2,1);
  }
  .nav-desktop a:hover { color: var(--ink); }
  .nav-desktop a:hover::after,
  .nav-desktop a.is-active::after { width: 100%; }
  .nav-desktop a.is-active { color: var(--ink); }
  .nav-desktop .nav-cta::after { display: none; }
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #201310 !important;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 200ms ease, background 200ms ease, box-shadow 200ms ease;
}
.nav-desktop .nav-cta:hover,
.nav-desktop .nav-cta:focus-visible {
  background: #ffa274;
  color: #201310 !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px -12px rgba(255, 138, 91, 0.8);
}

/* hamburger */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  cursor: pointer;
  z-index: 1100;
  position: relative;
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 260ms cubic-bezier(.2,.7,.2,1), opacity 200ms 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-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 240ms ease, visibility 240ms ease;
  z-index: 1040;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: #1c1613;
  border-left: 1px solid var(--line-strong);
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  z-index: 1050;
  padding: calc(var(--header-h) + 20px) 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 1.28rem;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  transition: color 180ms ease, padding-left 180ms ease;
}
.drawer a:hover, .drawer a.is-active {
  color: var(--accent);
  padding-left: 6px;
}
.drawer .drawer-cta {
  margin-top: 20px;
  background: var(--accent);
  color: #201310 !important;
  text-align: center;
  border-radius: 999px;
  padding: 14px 18px;
  border-bottom: 0;
  font-family: system-ui, sans-serif;
  font-weight: 600;
  font-size: 1rem;
}
.drawer a.drawer-cta:hover { color: #201310 !important; padding-left: 0; }

main { padding-top: var(--header-h); }
main [id], main section[id], #form { scroll-margin-top: calc(var(--header-h) + 20px); }

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  min-height: 90vh;
  min-height: 90svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero-layers { position: absolute; inset: 0; z-index: -2; }
.hero-layer {
  position: absolute;
  inset: -8% -4%;
  will-change: transform;
}
.hero-photo {
  inset: 0;
  background: url("/assets/images/hero-sky.jpg") center/cover no-repeat;
}
.hero-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,20,18,0.15) 0%, rgba(26,20,18,0.35) 45%, rgba(26,20,18,0.92) 100%);
}
/* drifting cloud layers (SVG-in-CSS) */
.cloud {
  position: absolute;
  opacity: 0.5;
  color: rgba(255, 226, 200, 0.5);
  will-change: transform;
}
.cloud svg { display: block; width: 100%; height: auto; }
.cloud-1 { top: 18%; left: -18%; width: 46%; animation: drift 52s linear infinite; }
.cloud-2 { top: 34%; left: -30%; width: 34%; opacity: 0.32; animation: drift 74s linear infinite; }
.cloud-3 { top: 9%;  left: -20%; width: 28%; opacity: 0.24; animation: drift 92s linear infinite; }
@keyframes drift { to { transform: translateX(230%); } }

/* silhouette ridge (Babadağ / kıyı) */
.hero-ridge {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  z-index: -1;
  color: #150f0d;
  pointer-events: none;
}
.hero-ridge svg { display: block; width: 100%; height: auto; }

/* gliding canopy */
.hero-glider {
  position: absolute;
  top: 30%;
  right: 14%;
  width: clamp(120px, 20vw, 230px);
  color: var(--ink);
  z-index: -1;
  animation: glide 9s ease-in-out infinite;
  will-change: transform;
}
.hero-glider svg { display: block; width: 100%; height: auto; filter: drop-shadow(0 14px 20px rgba(0,0,0,0.4)); }
@keyframes glide {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50% { transform: translateY(-18px) rotate(1.5deg); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: clamp(80px, 16vh, 180px);
  padding-bottom: clamp(46px, 8vh, 90px);
}
.hero h1 {
  font-size: clamp(2.3rem, 7.4vw, 4.5rem);
  margin: 0.2em 0 0.35em;
  max-width: 14ch;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.hero-sub {
  font-size: clamp(1.05rem, 2.4vw, 1.4rem);
  color: var(--ink);
  max-width: 34ch;
  line-height: 1.6;
  margin-bottom: 1.9em;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 2.4em;
  padding-top: 1.6em;
  border-top: 1px solid var(--line);
}
.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--ink-soft);
}
.hero-trust svg { width: 18px; height: 18px; color: var(--accent); flex: none; }

/* ---------------- Buttons ---------------- */
.btn-primary, .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 15px 28px;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 200ms ease, background 200ms ease, color 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.btn-primary {
  background: var(--accent);
  color: #201310;
  box-shadow: 0 12px 30px -14px rgba(255, 138, 91, 0.8);
}
.btn-primary::after {
  content: "→";
  transition: transform 200ms ease;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: #ffa274;
  color: #201310;
  transform: translateY(-2px);
}
.btn-primary:hover::after { transform: translateX(4px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: rgba(248, 239, 230, 0.06);
  color: var(--ink);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* ---------------- Longread sections ---------------- */
section { position: relative; }
.band {
  padding: clamp(56px, 10vw, 120px) 0;
}
.band-surface { background: rgba(36, 27, 23, 0.86); }
.band-accent {
  background:
    radial-gradient(90% 120% at 20% 0%, rgba(124, 92, 255, 0.16), transparent 55%),
    rgba(30, 22, 19, 0.9);
}

.lede {
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-size: clamp(1.4rem, 3.4vw, 2.15rem);
  font-weight: 380;
  line-height: 1.42;
  letter-spacing: -0.01em;
  color: var(--ink);
  max-width: 26ch;
}
.longtext { max-width: 62ch; }
.longtext p { font-size: clamp(1.02rem, 1.6vw, 1.12rem); color: var(--ink-soft); }
.longtext p strong, .longtext p b { color: var(--ink); font-weight: 600; }

/* editorial drop-cap for an opening passage */
.longtext.lead p:first-of-type::first-letter {
  float: left;
  font-family: var(--serif);
  font-weight: 460;
  font-size: 3.4em;
  line-height: 0.78;
  padding: 0.06em 0.14em 0 0;
  color: var(--accent);
}

.section-head { margin-bottom: clamp(28px, 5vw, 52px); max-width: 62ch; }
.section-head h2 {
  font-size: clamp(2rem, 5.4vw, 3.35rem);
  margin: 0.12em 0 0.4em;
}
.section-head .note { color: var(--ink-mute); max-width: 48ch; }

/* numbered kicker rhythm — award-level section signposting */
.kicker {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 0 0 1rem;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.74rem;
  color: var(--accent);
}
.kicker .idx {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  letter-spacing: 0;
  color: var(--gold);
}
.kicker::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  align-self: center;
  background: linear-gradient(90deg, var(--line-strong), transparent);
}

/* pull-quote / manifesto */
.pullquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.6rem, 4.4vw, 2.7rem);
  line-height: 1.35;
  color: var(--ink);
  max-width: 20ch;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.pullquote cite {
  display: block;
  font-style: normal;
  font-family: system-ui, sans-serif;
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 1.4em;
}

/* big figure */
.figure {
  position: relative;
  margin: clamp(28px, 5vw, 56px) auto;
  max-width: clamp(900px, 96%, 1080px);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.figure img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.figure figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 40px 24px 18px;
  background: linear-gradient(180deg, transparent, rgba(20,15,13,0.9));
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.figure-tall img { aspect-ratio: 4 / 5; }

/* two-col editorial split */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
@media (min-width: 860px) {
  .split { grid-template-columns: 1.05fr 0.95fr; }
  .split.reverse .split-media { order: 2; }
}
.split-media {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.split-media img { width: 100%; aspect-ratio: 5 / 6; object-fit: cover; }

/* ---------------- Gallery (Gökyüzünden) ---------------- */
.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: clamp(28px, 5vw, 48px);
}
@media (min-width: 720px) {
  .gallery {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 130px;
    gap: 16px;
  }
  .g-a { grid-column: span 4; grid-row: span 3; }
  .g-b { grid-column: span 2; grid-row: span 3; }
  .g-c { grid-column: span 2; grid-row: span 2; }
  .g-d { grid-column: span 2; grid-row: span 2; }
  .g-e { grid-column: span 2; grid-row: span 2; }
}
.g-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--line);
  min-width: 0;
  background: var(--surface-2);
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms ease, border-color 300ms ease;
}
.g-item img {
  width: 100%; height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.2,.7,.2,1), filter 500ms ease;
}
@media (min-width: 720px) { .g-item img { aspect-ratio: auto; } }
.g-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(20,15,13,0.82));
  opacity: 0.85;
  transition: opacity 400ms ease;
}
.g-item .cap {
  position: absolute;
  left: 18px; right: 18px; bottom: 15px;
  z-index: 2;
  font-family: var(--serif);
  font-size: 1.02rem;
  color: var(--ink);
  translate: 0 6px;
  opacity: 0.92;
  transition: translate 400ms cubic-bezier(.2,.7,.2,1);
  text-shadow: 0 2px 14px rgba(0,0,0,0.5);
}
.g-item .cap small {
  display: block;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2px;
}
.g-item:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 26px 52px -30px rgba(255, 138, 91, 0.6);
}
.g-item:hover img { transform: scale(1.05); filter: saturate(1.06); }
.g-item:hover::after { opacity: 1; }
.g-item:hover .cap { translate: 0 0; }
@media (prefers-reduced-motion: reduce) {
  .g-item:hover img { transform: none; }
}

/* stats row (counter-up) */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 18px;
  margin-top: clamp(28px, 5vw, 48px);
}
.stat {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 20px 22px;
  background: rgba(46, 35, 29, 0.5);
  text-align: center;
  overflow: hidden;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), border-color 240ms ease;
}
.stat::before {
  content: "";
  position: absolute; left: 50%; top: 0;
  width: 40px; height: 2px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.stat:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.stat .num {
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-weight: 460;
  font-size: clamp(2.1rem, 5.2vw, 3rem);
  color: var(--accent);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.stat .lbl { font-size: 0.84rem; color: var(--ink-mute); margin-top: 10px; display: block; }

/* detail cards with niche icons */
.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: clamp(24px, 4vw, 40px);
}
.detail-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 22px;
  background: rgba(46, 35, 29, 0.42);
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms ease, border-color 240ms ease;
  min-width: 0;
}
.detail-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -26px rgba(255, 138, 91, 0.55);
  border-color: var(--line-strong);
}
.detail-card .ico {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(255, 138, 91, 0.12);
  color: var(--accent);
  margin-bottom: 16px;
}
.detail-card .ico svg { width: 24px; height: 24px; }
.detail-card h3 { font-size: 1.2rem; margin: 0 0 0.5em; }
.detail-card p { color: var(--ink-soft); font-size: 0.96rem; margin: 0; }
.detail-card .big {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--accent);
  display: block;
  margin-bottom: 4px;
}

/* timeline (process) */
.timeline { margin-top: clamp(28px, 5vw, 48px); }
.tl-item {
  position: relative;
  padding: 0 0 34px 46px;
  border-left: 1px solid var(--line-strong);
}
.tl-item:last-child { border-left-color: transparent; padding-bottom: 0; }
.tl-item::before {
  content: "";
  position: absolute;
  left: -7px; top: 2px;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(255, 138, 91, 0.15);
}
.tl-item .when {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-2);
}
.tl-item h3 { font-size: 1.25rem; margin: 0.2em 0 0.35em; }
.tl-item p { color: var(--ink-soft); margin: 0; max-width: 52ch; }

/* pricing */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: clamp(28px, 5vw, 48px);
  align-items: stretch;
}
.price-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 24px;
  background: rgba(46, 35, 29, 0.5);
  min-width: 0;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -30px rgba(0,0,0,0.7); }
.price-card.featured {
  position: relative;
  border-color: var(--accent);
  background:
    radial-gradient(120% 80% at 80% 0%, rgba(255, 138, 91, 0.14), transparent 60%),
    rgba(46, 35, 29, 0.7);
  box-shadow: 0 30px 60px -40px rgba(255, 138, 91, 0.6);
}
@media (min-width: 900px) { .price-card.featured { transform: translateY(-10px); } }
@media (min-width: 900px) { .price-card.featured:hover { transform: translateY(-16px); } }
.price-card .ribbon {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: #201310;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.price-card .ribbon svg { width: 14px; height: 14px; }
.price-card .tier {
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent);
}
.price-card .amount {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 2.6rem);
  color: var(--ink);
  margin: 0.35em 0 0.1em;
  font-variant-numeric: tabular-nums;
}
.price-card .amount small { font-size: 0.9rem; color: var(--ink-mute); font-family: system-ui; }
.price-card .desc { color: var(--ink-soft); font-size: 0.95rem; margin: 0.4em 0 1.2em; }
.price-list { list-style: none; margin: 0 0 1.4em; padding: 0; display: grid; gap: 10px; }
.price-list li {
  display: grid; grid-template-columns: 20px 1fr; gap: 10px;
  align-items: start;
  font-size: 0.94rem; color: var(--ink-soft);
}
.price-list li svg { width: 18px; height: 18px; color: var(--accent); margin-top: 4px; }
.price-list li.out { color: var(--ink-mute); }
.price-list li.out svg { color: var(--ink-mute); }
.price-card .btn-primary, .price-card .btn-ghost { margin-top: auto; justify-content: center; }
.price-note { color: var(--ink-mute); font-size: 0.82rem; margin-top: 20px; }

/* badges / included list */
.badge-row {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px;
}
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.84rem;
  color: var(--ink-soft);
  background: rgba(46, 35, 29, 0.4);
}
.badge svg { width: 16px; height: 16px; color: var(--accent); }

/* testimonials editorial grid */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: clamp(28px, 5vw, 48px);
}
.testi {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px 24px;
  background: rgba(46, 35, 29, 0.42);
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms ease, border-color 240ms ease;
}
.testi:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 22px 44px -30px rgba(255, 138, 91, 0.55);
}
.testi p { font-family: var(--serif); font-size: 1.08rem; color: var(--ink); font-style: italic; }
.testi .who { font-size: 0.86rem; color: var(--accent); margin-top: 14px; font-style: normal; }
.testi .who b { color: var(--ink); font-weight: 600; display: block; font-family: system-ui; }

/* FAQ */
.faq { margin-top: clamp(24px, 4vw, 40px); max-width: 780px; }
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 44px 22px 0;
  position: relative;
  font-family: var(--serif);
  font-size: 1.16rem;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 6px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: var(--accent);
  transition: transform 300ms ease;
  line-height: 1;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq .body {
  height: 0;
  padding: 0;
  overflow: hidden;
  transition: height 360ms cubic-bezier(.4,0,.2,1),
              padding-block-end 360ms cubic-bezier(.4,0,.2,1);
}
.faq .body p { color: var(--ink-soft); margin: 0 0 0.8em; }
.faq details[open] .body { height: auto; padding-block-end: 24px; }
@media (prefers-reduced-motion: reduce) { .faq .body { transition: none; } }

/* ---------------- Reservation ---------------- */
.reserve-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 52px);
}
@media (min-width: 900px) { .reserve-wrap { grid-template-columns: 0.9fr 1.1fr; } }

.form {
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  padding: clamp(24px, 4vw, 38px);
  background: rgba(36, 27, 23, 0.9);
}
.form-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 620px) { .form-grid.two { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label, .form label:not(.kvkk):not(.hp) {
  font-size: 0.86rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.field input, .field select, .field textarea,
.form input:not([type="checkbox"]):not(.hp *), .form select, .form textarea {
  width: 100%;
  background: rgba(20, 15, 13, 0.7);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  font-size: 0.98rem;
  transition: border-color 200ms ease, background 200ms ease;
}
.form textarea { min-height: 130px; resize: vertical; }
.form input:focus, .form select:focus, .form textarea:focus {
  border-color: var(--accent);
  background: rgba(20, 15, 13, 0.9);
  outline: none;
}
.form select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--accent) 50%), linear-gradient(135deg, var(--accent) 50%, transparent 50%); background-position: calc(100% - 20px) center, calc(100% - 15px) center; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
.form .full { grid-column: 1 / -1; }

.kvkk {
  display: grid !important;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  font-size: 0.88rem;
  color: var(--ink-soft);
  cursor: pointer;
}
.kvkk a { text-decoration: underline; }
.field input[type="checkbox"],
.kvkk 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);
}
.form .btn-primary { width: 100%; justify-content: center; margin-top: 6px; }
@media (min-width: 620px) { .form .btn-primary { width: auto; } }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.reserve-aside h3 { font-size: 1.4rem; margin: 0 0 0.5em; }
.reserve-aside .contact-line {
  display: grid; grid-template-columns: auto 1fr; gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.reserve-aside .contact-line svg { width: 20px; height: 20px; color: var(--accent); margin-top: 3px; }
.reserve-aside .contact-line b { display: block; color: var(--ink); font-weight: 600; }
.reserve-aside .contact-line a { color: var(--ink-soft); }
.reserve-aside .contact-line a:hover { color: var(--accent); }
.reserve-aside .contact-line span { color: var(--ink-soft); font-size: 0.94rem; }

/* reservation CTA (form lives on contact page) */
.reserve-cta {
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  padding: clamp(28px, 5vw, 52px);
  background:
    radial-gradient(120% 100% at 80% 0%, rgba(255, 138, 91, 0.12), transparent 60%),
    rgba(36, 27, 23, 0.9);
  text-align: center;
}
.reserve-cta-inner { max-width: 620px; margin: 0 auto; }
.reserve-cta .eyebrow { justify-content: center; }
.reserve-cta h3 { font-size: clamp(1.6rem, 4vw, 2.3rem); margin: 0 0 0.4em; }
.reserve-cta p { color: var(--ink-soft); margin: 0 auto 1.6em; max-width: 52ch; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta-lines {
  display: flex; flex-wrap: wrap; gap: 6px 22px; justify-content: center;
  margin-top: 22px; padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}
.cta-lines a { color: var(--ink-soft); }
.cta-lines a:hover { color: var(--accent); }
.cta-lines span { color: var(--ink-mute); }

/* ---------------- Contact page ---------------- */
.contact-hero { padding: clamp(60px, 12vw, 120px) 0 clamp(30px, 5vw, 56px); min-height: 240px; }
.channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.channel {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 22px;
  background: rgba(46, 35, 29, 0.42);
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms ease, border-color 240ms ease;
  min-width: 0;
}
.channel:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -26px rgba(255,138,91,0.5); border-color: var(--line-strong); }
.channel .ico {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(255, 138, 91, 0.12);
  color: var(--accent);
  margin-bottom: 14px;
}
.channel .ico svg { width: 24px; height: 24px; }
.channel h3 { font-size: 1.1rem; margin: 0 0 0.35em; }
.channel a, .channel .val { color: var(--ink); font-weight: 600; word-break: break-word; }
.channel a:hover { color: var(--accent); }
.channel .sub { color: var(--ink-mute); font-size: 0.84rem; margin-top: 6px; }

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin-top: clamp(20px, 4vw, 36px);
}
.hours-cell {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
  background: rgba(46, 35, 29, 0.4);
  font-variant-numeric: tabular-nums;
}
.hours-cell.today { border-color: var(--accent); background: rgba(255,138,91,0.1); }
.hours-cell .day { font-size: 0.8rem; color: var(--ink-mute); text-transform: uppercase; letter-spacing: 0.1em; }
.hours-cell .time { color: var(--ink); font-size: 1.02rem; margin-top: 4px; }

/* ---------------- Team ---------------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-top: clamp(28px, 5vw, 48px);
}
.member {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(46, 35, 29, 0.42);
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms ease, border-color 240ms ease;
}
.member:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 22px 44px -30px rgba(255, 138, 91, 0.5);
}
.member img { width: 100%; aspect-ratio: 5 / 6; object-fit: cover; transition: transform 500ms cubic-bezier(.2,.7,.2,1); }
.member:hover img { transform: scale(1.03); }
.member .body { padding: 20px 22px; }
.member h3 { font-size: 1.2rem; margin: 0 0 0.2em; }
.member .role { color: var(--accent); font-size: 0.84rem; letter-spacing: 0.05em; }
.member p { color: var(--ink-soft); font-size: 0.94rem; margin: 0.8em 0 0; }

/* notes / updates */
.notes-list { list-style: none; padding: 0; margin: clamp(20px,4vw,32px) 0 0; display: grid; gap: 14px; }
.notes-list li {
  display: grid; grid-template-columns: auto 1fr; gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.notes-list time { color: var(--accent-2); font-size: 0.8rem; white-space: nowrap; }
.notes-list b { color: var(--ink); font-weight: 600; display: block; }
.notes-list span { color: var(--ink-soft); font-size: 0.92rem; }

/* ---------------- Doc pages ---------------- */
.doc { max-width: 760px; line-height: 1.7; }
.doc p { margin: 0 0 1.15em; }
.doc h2 { font-size: clamp(1.5rem, 4vw, 2.1rem); margin: 1.6em 0 0.5em; }
.doc h3 { font-size: 1.2rem; margin: 1.4em 0 0.4em; }
.doc p, .doc li { color: var(--ink-soft); }
.doc ul, .doc ol { padding-left: 1.3em; }
.doc li { margin-bottom: 0.5em; }
.doc .updated { color: var(--ink-mute); font-size: 0.86rem; }
.page-hero { padding: clamp(50px, 10vw, 96px) 0 clamp(20px, 4vw, 40px); }
.page-hero h1 { font-size: clamp(2rem, 6vw, 3.4rem); }

/* sitemap */
.sitemap-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.sitemap-cols ul { list-style: none; padding: 0; }
.sitemap-cols li { padding: 8px 0; border-bottom: 1px solid var(--line); }
.sitemap-cols a { color: var(--ink-soft); }
.sitemap-cols a:hover { color: var(--accent); }

/* 404 */
.err { text-align: center; padding: clamp(80px, 16vw, 180px) 0; }
.err .big { font-family: var(--serif); font-size: clamp(4rem, 16vw, 9rem); color: var(--accent); line-height: 1; }

/* ---------------- 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: 10px;
}
.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 16px; border-bottom: 1px solid var(--line); font-size: 0.94rem; }
table th { color: var(--ink); font-weight: 600; background: rgba(46,35,29,0.6); }
table td { color: var(--ink-soft); }

/* ---------------- Footer ---------------- */
.site-footer {
  background: rgba(18, 13, 11, 0.96);
  border-top: 1px solid var(--line);
  padding: clamp(48px, 8vw, 84px) 0 32px;
  margin-top: clamp(40px, 8vw, 90px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-brand p { color: var(--ink-mute); max-width: 34ch; font-size: 0.94rem; }
.footer-col h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--ink-mute); margin: 0 0 14px; font-family: system-ui; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a { color: var(--ink-soft); font-size: 0.94rem; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  margin-top: 44px; padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between;
  color: var(--ink-mute); font-size: 0.82rem;
}
.footer-bottom a { color: var(--ink-mute); }
.footer-bottom a:hover { color: var(--accent); }

/* ---------------- Cookie banner ---------------- */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px; margin: 0 auto;
  background: #221a16;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  padding: 22px 22px 20px;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.8);
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  z-index: 9999;
}
.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: 0 0 0.4em; }
.cookie-banner p { font-size: 0.88rem; color: var(--ink-soft); margin: 0 0 1em; }
.cookie-banner p a { text-decoration: underline; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-actions button {
  flex: 1 1 auto;
  min-height: 44px;
  padding: 11px 16px;
  border-radius: 10px;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--line-strong);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}
.cookie-actions [data-consent="accept"] { background: var(--accent); color: #201310; border-color: var(--accent); }
.cookie-actions [data-consent="accept"]:hover { background: #ffa274; color: #201310; transform: translateY(-1px); }
/* reject must read as an equal-weight choice, not a de-emphasized ghost */
.cookie-actions [data-consent="reject"] { background: rgba(248, 239, 230, 0.12); color: var(--ink); border-color: rgba(248, 239, 230, 0.34); }
.cookie-actions [data-consent="reject"]:hover { background: rgba(248, 239, 230, 0.20); color: var(--ink); border-color: var(--ink-soft); transform: translateY(-1px); }
.cookie-actions [data-consent="settings"] { background: transparent; color: var(--ink-soft); flex: 1 1 100%; }
.cookie-actions [data-consent="settings"]:hover { color: var(--accent); }

/* cookie settings modal */
.cookie-modal {
  position: fixed; inset: 0;
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
  background: rgba(0,0,0,0.6);
  z-index: 10000;
}
.cookie-modal.is-open { display: flex; }
.cookie-modal .box {
  background: #221a16;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  padding: clamp(24px, 4vw, 34px);
  max-width: 480px; width: 100%;
  max-height: 90vh; overflow-y: auto;
}
.cookie-modal h3 { font-size: 1.4rem; margin: 0 0 0.6em; }
.toggle-row {
  display: grid; grid-template-columns: 1fr auto; gap: 14px;
  align-items: center;
  padding: 16px 0; border-bottom: 1px solid var(--line);
}
.toggle-row b { color: var(--ink); font-weight: 600; }
.toggle-row p { margin: 4px 0 0; font-size: 0.85rem; color: var(--ink-mute); }
.switch { position: relative; width: 46px; height: 26px; flex: none; }
.switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.switch .track {
  position: absolute; inset: 0;
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  transition: background 200ms ease;
}
.switch .track::before {
  content: ""; position: absolute; left: 3px; top: 3px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--ink-soft);
  transition: transform 200ms ease, background 200ms ease;
}
.switch input:checked + .track { background: rgba(255,138,91,0.3); border-color: var(--accent); }
.switch input:checked + .track::before { transform: translateX(20px); background: var(--accent); }
.switch input:disabled + .track { opacity: 0.5; }
.cookie-modal .save { width: 100%; margin-top: 22px; justify-content: center; }

/* ---------------- Reveal ---------------- */
/* Reveal drives its slide-in with `translate` (not `transform`) so it never
   fights the `transform: translateY()` hover-lift on cards that also reveal —
   the two compose instead of overriding each other. */
.reveal {
  opacity: 0;
  translate: 0 28px;
  transition: opacity 700ms cubic-bezier(.2,.7,.2,1), translate 700ms cubic-bezier(.2,.7,.2,1);
  transition-delay: calc(var(--i, 0) * 90ms);
}
.reveal.is-in { opacity: 1; translate: 0; }
html.no-js .reveal { opacity: 1; translate: 0; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; translate: 0 !important; transition: none !important; }
  .hero-glider, .cloud { animation: none !important; }
  .member:hover img { transform: none; }
}

/* ---------------- Responsive ---------------- */
@media (max-width: 640px) {
  body { font-size: 1rem; }
  .hero { min-height: 88vh; min-height: 88svh; }
  .hero-glider { top: 24%; right: 8%; }
  .detail-card, .price-card, .channel, .testi { padding: 20px 18px; }
  .detail-card .ico, .channel .ico { width: 40px; height: 40px; }
  .footer-bottom { flex-direction: column; }
}

.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;
}
