/* =========================================================
   Akort Akşam Stüdyosu — akortaksam.com.tr
   Çalışan yetişkinler için akşam müzik stüdyosu
   ========================================================= */

:root {
  --bg: #1C1620;
  --surface: #272030;
  --surface-2: #312839;
  --ink: #EFE8E4;
  --ink-soft: #c3b8bf;
  --ink-faint: #8e8290;
  --accent: #B57BA6;
  --accent-2: #D9B36A;
  --line: rgba(239, 232, 228, 0.12);
  --line-strong: rgba(239, 232, 228, 0.24);
  --header-h: 76px;
  --maxw: 1400px;
  --pad: clamp(16px, 4vw, 52px);
  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease-2: cubic-bezier(.4, 0, .2, 1);
  interpolate-size: allow-keywords;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

html, body {
  margin: 0;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, .serif {
  font-family: "DM Serif Display", Cambria, "Palatino Linotype", Georgia, serif;
  font-weight: 400;
  line-height: 1.08;
  margin: 0 0 .4em;
  letter-spacing: -0.012em;
}

p { margin: 0 0 1rem; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

::selection { background: var(--accent); color: var(--bg); }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.eyebrow {
  display: inline-block;
  font-size: .74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 1.1rem;
  font-weight: 500;
}

.section { padding-block: clamp(56px, 9vw, 128px); position: relative; }
.section--tight { padding-block: clamp(40px, 6vw, 80px); }

.gold-rule {
  width: 64px; height: 1px;
  background: linear-gradient(90deg, var(--accent-2), transparent);
  border: 0; margin: 0 0 1.6rem;
}

.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-soft); max-width: 60ch; }
.muted { color: var(--ink-faint); }
.long { word-break: break-word; overflow-wrap: anywhere; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; left: 12px; top: -120px;
  background: var(--accent); color: var(--bg);
  padding: 10px 16px; border-radius: 8px; z-index: 2000;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- 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(28, 22, 32, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: background .24s var(--ease), height .24s var(--ease), box-shadow .24s var(--ease), border-color .24s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(24, 18, 28, 0.98);
  height: 64px;
  box-shadow: 0 8px 24px -16px rgba(0, 0, 0, .55);
  border-bottom-color: var(--line);
}
.header-inner {
  width: 100%; max-width: var(--maxw); margin-inline: auto;
  padding-left: var(--pad); padding-right: var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: "DM Serif Display", serif;
  font-size: 1.18rem; letter-spacing: .01em; color: var(--ink);
  white-space: nowrap;
}
.brand .brand-mark {
  width: 30px; height: 30px; flex: none;
  display: grid; place-items: center;
  color: var(--accent-2);
}
.brand b { font-weight: 400; }
.brand span { color: var(--accent); }

.nav-desktop { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); }
.nav-desktop a {
  position: relative;
  font-size: .94rem; color: var(--ink-soft);
  padding: 6px 2px; transition: color .2s var(--ease);
}
.nav-desktop a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 1.5px;
  background: var(--accent-2); transition: right .26s var(--ease);
}
.nav-desktop a:hover, .nav-desktop a.is-active { color: var(--ink); }
.nav-desktop a:hover::after, .nav-desktop a.is-active::after { right: 0; }

.nav-cta {
  margin-left: 6px;
  background: var(--accent); color: var(--bg) !important;
  padding: 9px 18px !important; border-radius: 999px;
  font-weight: 500; letter-spacing: .01em;
  transition: background .2s var(--ease), transform .2s var(--ease), color .2s var(--ease);
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover {
  background: var(--accent-2); color: var(--bg) !important; transform: translateY(-2px);
}

/* hamburger */
.nav-toggle {
  display: none;
  position: relative; z-index: 1100;
  width: 44px; height: 44px; padding: 0;
  background: rgba(239, 232, 228, 0.05); border: 1px solid var(--line-strong); border-radius: 10px;
  cursor: pointer; align-items: center; justify-content: center;
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.nav-toggle:hover { background: var(--surface-2); border-color: var(--accent); }
.nav-toggle span {
  position: absolute; left: 11px; right: 11px; height: 1.8px;
  background: var(--ink); border-radius: 2px;
  transition: transform .28s var(--ease), opacity .2s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Drawer ---------- */
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--surface);
  border-left: 1px solid var(--line);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform .32s var(--ease);
  padding: calc(var(--header-h) + 20px) 28px 32px;
  display: flex; flex-direction: column; gap: 4px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  font-family: "DM Serif Display", serif; font-size: 1.4rem;
  color: var(--ink); padding: 12px 0;
  border-bottom: 1px solid var(--line);
  transition: color .2s var(--ease), padding-left .2s var(--ease);
}
.drawer a:hover, .drawer a.is-active { color: var(--accent); padding-left: 8px; }
.drawer .drawer-cta {
  margin-top: 18px; text-align: center;
  background: var(--accent); color: var(--bg);
  border-radius: 999px; border: 0;
  font-family: "DM Sans", sans-serif; font-size: 1rem;
}
.drawer .drawer-cta:hover { background: var(--accent-2); color: var(--bg); padding-left: 0; }
.drawer-backdrop {
  position: fixed; inset: 0; z-index: 1040;
  background: rgba(0, 0, 0, .55);
  opacity: 0; visibility: hidden;
  transition: opacity .24s var(--ease), visibility .24s var(--ease);
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

main { padding-top: var(--header-h); }
:where(main) [id], main section[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: "DM Sans", sans-serif; font-size: 1rem; font-weight: 500;
  padding: 14px 26px; border-radius: 999px; cursor: pointer;
  border: 1px solid transparent; line-height: 1;
  transition: background .22s var(--ease), color .22s var(--ease), transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.btn-primary { background: var(--accent); color: var(--bg); }
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent-2); color: var(--bg);
  transform: translateY(-2px); box-shadow: 0 14px 30px -16px var(--accent);
}
.btn-primary .arrow { transition: transform .22s var(--ease); }
.btn-primary:hover .arrow { transform: translateX(4px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface-2); color: var(--ink); border-color: var(--accent); transform: translateY(-2px);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: grid; place-items: center;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}
.hero-media {
  position: absolute; inset: 0; z-index: -3;
  background: #100c14;
}
.hero-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .55;
  animation: heroZoom 22s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to { transform: scale(1.16); }
}
/* dim ambient + spotlight following cursor (theme signature) */
.hero-spot {
  position: absolute; inset: 0; z-index: -2;
  background: radial-gradient(420px 420px at var(--mx, 70%) var(--my, 38%),
    rgba(217, 179, 106, .26), rgba(181, 123, 166, .12) 36%, transparent 64%);
  transition: background .25s ease-out;
  pointer-events: none;
  mix-blend-mode: screen;
}
.hero-vignette {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 90% at 50% 18%, transparent 38%, rgba(16, 12, 20, .72) 100%),
    linear-gradient(180deg, rgba(28, 22, 32, .35), rgba(28, 22, 32, .78));
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  padding-block: clamp(60px, 14vh, 150px);
  max-width: 880px;
}
.hero h1 {
  font-size: clamp(2.7rem, 8vw, 4.5rem);
  margin: .2em 0 .35em;
}
.hero h1 .ln { display: block; overflow: hidden; }
/* Resting state is visible; the hidden start lives in the keyframes with
   `both` fill, so content stays readable even where entrance animations are
   stripped (screenshot capture, reduced-motion, slow first paint). */
.hero h1 .ln > span {
  display: inline-block;
  animation: heroLine .6s var(--ease) both;
}
.hero h1 .ln:nth-child(1) > span { animation-delay: .08s; }
.hero h1 .ln:nth-child(2) > span { animation-delay: .18s; color: var(--accent-2); font-style: italic; }
@keyframes heroLine { from { opacity: 0; transform: translateY(.9em); } to { opacity: 1; transform: translateY(0); } }
.hero .eyebrow { animation: heroFade .5s var(--ease) .02s both; }
.hero-sub {
  font-size: clamp(1.02rem, 1.8vw, 1.28rem);
  color: var(--ink-soft); max-width: 54ch; margin: 0 auto 2rem;
  animation: heroFade .5s var(--ease) .22s both;
}
.hero-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  animation: heroFade .5s var(--ease) .3s both;
}
@keyframes heroFade { from { opacity: 0; } to { opacity: 1; } }
/* warm lamp glow that gently breathes under the primary CTA — studio signature */
.hero-actions .btn-primary { position: relative; }
.hero-actions .btn-primary::before {
  content: ""; position: absolute; inset: -40% -22%; z-index: -1;
  border-radius: inherit; pointer-events: none;
  background: radial-gradient(60% 120% at 50% 50%, rgba(217, 179, 106, .42), rgba(181, 123, 166, .14) 55%, transparent 72%);
  filter: blur(8px); opacity: .5;
  animation: lampGlow 4.6s ease-in-out infinite;
}
@keyframes lampGlow { 0%, 100% { opacity: .34; transform: scale(.96); } 50% { opacity: .72; transform: scale(1.04); } }
.hero-trust {
  margin-top: 2.4rem; display: flex; gap: 10px 22px; justify-content: center; flex-wrap: wrap;
  animation: heroFade .5s var(--ease) .38s both;
}
.hero-trust span {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .82rem; color: var(--ink-faint); letter-spacing: .02em;
}
.hero-trust svg { width: 16px; height: 16px; color: var(--accent); flex: none; }
.scroll-cue {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: var(--ink-faint); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: heroFade .6s var(--ease) .6s both;
}
.scroll-cue i {
  width: 1px; height: 34px; background: linear-gradient(var(--accent-2), transparent);
  animation: cuePulse 2.4s var(--ease) infinite;
}
@keyframes cuePulse { 0%,100% { opacity: .4; transform: scaleY(.7); } 50% { opacity: 1; transform: scaleY(1); } }

/* ---------- Stats band ---------- */
.stats-band {
  background: var(--surface);
  border-block: 1px solid var(--line);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  text-align: center;
}
.stat .num {
  font-family: "DM Serif Display", serif;
  font-size: clamp(2.1rem, 4.4vw, 3.2rem); color: var(--accent-2);
  display: block; line-height: 1;
}
.stat .lbl { font-size: .82rem; color: var(--ink-soft); letter-spacing: .04em; margin-top: 8px; display: block; }

/* ---------- Section heads ---------- */
.sec-head { max-width: 660px; margin-bottom: clamp(34px, 5vw, 60px); }
.sec-head h2 { font-size: clamp(2rem, 4.4vw, 3.3rem); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head.center .gold-rule { margin-inline: auto; }

/* ---------- Atmosfer galeri ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(10px, 1.4vw, 18px);
  grid-auto-flow: dense;
}
.tile {
  position: relative; overflow: hidden; border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
}
.tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease), filter .5s var(--ease);
  filter: saturate(.92) brightness(.9);
}
.tile:hover img { transform: scale(1.07); filter: saturate(1.05) brightness(1); }
.tile figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 16px 18px;
  background: linear-gradient(transparent, rgba(16, 12, 20, .82));
  font-size: .82rem; letter-spacing: .04em; color: var(--ink);
  opacity: 0; transform: translateY(8px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.tile:hover figcaption { opacity: 1; transform: translateY(0); }
.tile.t-a { grid-column: span 2; grid-row: span 2; }
.tile.t-b { grid-column: span 2; }
.tile.t-c { grid-column: span 2; }
.tile.t-d { grid-column: span 3; }
.tile.t-e { grid-column: span 3; }

/* ---------- Program (weekday evening slots) ---------- */
.program-wrap { display: grid; grid-template-columns: 1fr; gap: 18px; }
.slot {
  display: grid; grid-template-columns: 120px 1fr auto; gap: 8px 24px; align-items: center;
  padding: 22px clamp(18px, 3vw, 30px);
  border: 1px solid var(--line); border-radius: 16px;
  background: var(--surface);
  transition: border-color .26s var(--ease), transform .26s var(--ease), background .26s var(--ease);
}
.slot:hover { border-color: var(--accent); transform: translateY(-3px); background: var(--surface-2); }
.slot .day {
  font-family: "DM Serif Display", serif; font-size: 1.5rem; color: var(--accent-2);
}
.slot .day small { display: block; font-family: "DM Sans", sans-serif; font-size: .76rem; color: var(--ink-faint); letter-spacing: .12em; text-transform: uppercase; margin-top: 4px; }
.slot .focus h3 { font-size: 1.3rem; margin-bottom: 4px; }
.slot .focus p { margin: 0; color: var(--ink-soft); font-size: .94rem; }
.slot .meta { text-align: right; min-width: 0; }
.slot .meta .time { font-variant-numeric: tabular-nums; color: var(--ink); font-size: 1.05rem; }
.slot .meta .level { font-size: .78rem; color: var(--accent); letter-spacing: .06em; }

/* ---------- Feature row (notayı bilmesen de) ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 28px); }
.feature {
  padding: 30px 26px; border: 1px solid var(--line); border-radius: 18px;
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  transition: transform .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease);
}
.feature:hover { transform: translateY(-6px); border-color: var(--accent); box-shadow: 0 20px 44px -28px rgba(181, 123, 166, .6); }
.feature .ic {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 18px;
  background: rgba(181, 123, 166, .14); color: var(--accent);
}
.feature .ic svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.4rem; }
.feature p { color: var(--ink-soft); margin: 0; font-size: .96rem; }

/* ---------- Manifesto / topluluk quote ---------- */
.manifesto {
  background:
    radial-gradient(60% 100% at 80% 0%, rgba(181, 123, 166, .16), transparent 60%),
    var(--surface);
  border-block: 1px solid var(--line);
}
.manifesto blockquote {
  margin: 0; max-width: 22ch + 30ch;
}
.manifesto .q {
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.8rem, 4.6vw, 3.6rem);
  line-height: 1.16; font-style: italic; color: var(--ink);
  max-width: 18ch;
}
.manifesto .q em { color: var(--accent-2); font-style: italic; }
.manifesto cite {
  display: block; margin-top: 26px; font-style: normal;
  color: var(--ink-soft); font-size: .92rem; letter-spacing: .04em;
}

/* ---------- Testimonials ---------- */
.tcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 26px); }
.tcard {
  padding: 28px 26px; border: 1px solid var(--line); border-radius: 18px;
  background: var(--surface);
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease);
}
.tcard:hover { transform: translateY(-6px); border-color: var(--accent-2); box-shadow: 0 22px 48px -30px rgba(217, 179, 106, .6); }
.tcard .stars { color: var(--accent-2); letter-spacing: 3px; font-size: .9rem; }
.tcard p { margin: 0; color: var(--ink-soft); font-size: .98rem; line-height: 1.6; }
.tcard .who { margin-top: auto; }
.tcard .who b { font-family: "DM Serif Display", serif; font-weight: 400; font-size: 1.12rem; color: var(--ink); display: block; }
.tcard .who span { font-size: .8rem; color: var(--ink-faint); letter-spacing: .03em; }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 26px); align-items: stretch; }
.price {
  display: flex; flex-direction: column;
  padding: 32px 28px; border: 1px solid var(--line); border-radius: 20px;
  background: var(--surface);
  transition: transform .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease);
}
.price:hover { transform: translateY(-6px); border-color: var(--accent); box-shadow: 0 24px 50px -30px rgba(181, 123, 166, .7); }
.price.featured { border-color: var(--accent-2); background: linear-gradient(180deg, var(--surface-2), var(--surface)); }
.price .tier { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); }
.price.featured .tier { color: var(--accent-2); }
.price .badge {
  align-self: flex-start; margin-bottom: 12px;
  font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
  background: var(--accent-2); color: var(--bg); padding: 4px 11px; border-radius: 999px;
}
.price .amount {
  font-family: "DM Serif Display", serif; font-size: clamp(2.2rem, 4vw, 2.9rem);
  color: var(--ink); margin: 14px 0 2px; font-variant-numeric: tabular-nums;
}
.price .amount small { font-size: .9rem; color: var(--ink-faint); font-family: "DM Sans", sans-serif; }
.price .per { font-size: .86rem; color: var(--ink-faint); margin-bottom: 18px; }
.price ul { list-style: none; margin: 0 0 24px; padding: 0; display: grid; gap: 11px; }
.price li { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; font-size: .92rem; color: var(--ink-soft); }
.price li svg { width: 18px; height: 18px; margin-top: 3px; flex: none; }
.price li.inc svg { color: var(--accent-2); }
.price li.exc { color: var(--ink-faint); }
.price li.exc svg { color: var(--ink-faint); }
.price .btn { margin-top: auto; justify-content: center; }
.price-note { margin-top: 22px; font-size: .82rem; color: var(--ink-faint); text-align: center; }

/* ---------- Process / timeline ---------- */
.timeline { position: relative; display: grid; gap: 0; max-width: 860px; }
.timeline::before {
  content: ""; position: absolute; left: 22px; top: 12px; bottom: 12px; width: 1px;
  background: linear-gradient(var(--accent-2), var(--accent), transparent);
}
.step {
  position: relative; display: grid; grid-template-columns: 46px 1fr; gap: 22px;
  padding: 18px 0 30px;
}
.step .dot {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center; z-index: 1;
  background: var(--surface); border: 1px solid var(--accent);
  color: var(--accent-2); font-family: "DM Serif Display", serif; font-size: 1.2rem;
}
.step .body h3 { font-size: 1.35rem; margin-bottom: 4px; }
.step .body .when { font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; display: block; }
.step .body p { margin: 0; color: var(--ink-soft); font-size: .96rem; }

/* ---------- Split feature (image + text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 5vw, 64px); align-items: center; }
.split .media { border-radius: 20px; overflow: hidden; border: 1px solid var(--line); }
.split .media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .8s var(--ease); }
.split .media:hover img { transform: scale(1.05); }
.split.reverse .media { order: 2; }

/* ---------- Kayit / form ---------- */
.form-section {
  background:
    radial-gradient(70% 100% at 10% 0%, rgba(217, 179, 106, .12), transparent 55%),
    var(--surface);
  border-block: 1px solid var(--line);
}
.form-shell { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px, 5vw, 60px); align-items: start; }
.form-aside .kchip { display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--ink-soft); margin-bottom: 14px; }
.form-aside .kchip svg { width: 18px; height: 18px; color: var(--accent-2); }
.form-aside ul { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 14px; }
.form-aside ul li { display: grid; grid-template-columns: 22px 1fr; gap: 12px; color: var(--ink-soft); font-size: .96rem; }
.form-aside ul li svg { width: 20px; height: 20px; color: var(--accent); margin-top: 2px; }

form.studio-form {
  background: var(--bg); border: 1px solid var(--line); border-radius: 20px;
  padding: clamp(22px, 3vw, 34px);
  display: grid; gap: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field > span { font-size: .82rem; color: var(--ink-soft); letter-spacing: .03em; }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  background: var(--surface); border: 1px solid var(--line-strong);
  border-radius: 12px; padding: 13px 15px;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.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); background: var(--surface-2);
}
.field textarea { resize: vertical; min-height: 120px; }
.field select { appearance: none; background-image:
  linear-gradient(45deg, transparent 50%, var(--accent-2) 50%),
  linear-gradient(135deg, var(--accent-2) 50%, transparent 50%);
  background-position: calc(100% - 20px) 19px, calc(100% - 14px) 19px;
  background-size: 6px 6px, 6px 6px; background-repeat: no-repeat;
}
.field.kvkk {
  grid-template-columns: auto 1fr; align-items: start; gap: 12px;
  font-size: .88rem; color: var(--ink-soft);
}
.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.kvkk a { color: var(--accent-2); text-decoration: underline; }
.studio-form .btn { justify-self: start; }
.hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* ---------- CTA band (home) ---------- */
.cta-band { max-width: 720px; margin-inline: auto; text-align: center; }
.cta-band .gold-rule { margin-inline: auto; }
.cta-band .lead { margin-inline: auto; }
.cta-band .hero-actions { justify-content: center; margin-top: 26px; opacity: 1; animation: none; }

/* ---------- Contact page ---------- */
.contact-hero { min-height: 240px; display: grid; align-content: center; }
.channels { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.channel {
  display: block; padding: 24px; border: 1px solid var(--line); border-radius: 16px;
  background: var(--surface);
  transition: transform .26s var(--ease), border-color .26s var(--ease), box-shadow .26s var(--ease);
}
.channel:hover { transform: translateY(-3px); border-color: var(--accent); box-shadow: 0 18px 38px -26px rgba(181, 123, 166, .6); }
.channel .ic {
  width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(217, 179, 106, .14); color: var(--accent-2); margin-bottom: 16px;
}
.channel .ic svg { width: 22px; height: 22px; }
.channel h3 { font-size: 1.15rem; margin-bottom: 4px; }
.channel .val { color: var(--ink); font-size: 1rem; word-break: break-word; }
.channel .val:hover { color: var(--accent); }
.channel small { display: block; margin-top: 6px; color: var(--ink-faint); font-size: .82rem; }

.hours-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; }
.hour-card {
  padding: 16px 18px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface);
  display: flex; flex-direction: column; gap: 4px;
}
.hour-card .d { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); }
.hour-card .t { font-variant-numeric: tabular-nums; color: var(--ink); font-size: 1.02rem; }
.hour-card.today { border-color: var(--accent-2); background: var(--surface-2); }
.hour-card.today .d { color: var(--accent-2); }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item > summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px clamp(4px, 1vw, 10px);
  font-family: "DM Serif Display", serif; font-size: clamp(1.1rem, 2vw, 1.4rem); color: var(--ink);
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary .pm {
  flex: none; width: 26px; height: 26px; position: relative;
  border: 1px solid var(--line-strong); border-radius: 50%;
}
.faq-item > summary .pm::before, .faq-item > summary .pm::after {
  content: ""; position: absolute; background: var(--accent-2);
  left: 50%; top: 50%; transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.faq-item > summary .pm::before { width: 11px; height: 1.5px; transform: translate(-50%, -50%); }
.faq-item > summary .pm::after { width: 1.5px; height: 11px; transform: translate(-50%, -50%); }
.faq-item[open] > summary .pm::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-item > .answer {
  height: 0; overflow: hidden;
  padding: 0 clamp(4px, 1vw, 10px);
  transition: height .36s var(--ease-2), padding-block-end .36s var(--ease-2);
}
.faq-item > .answer p { color: var(--ink-soft); margin: 0; font-size: .98rem; }
.faq-item[open] > .answer { height: auto; padding-block-end: 24px; }
@media (prefers-reduced-motion: reduce) { .faq-item > .answer { transition: none; } }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 30px); }
.member {
  border: 1px solid var(--line); border-radius: 18px; overflow: hidden; background: var(--surface);
  transition: transform .28s var(--ease), border-color .28s var(--ease);
}
.member:hover { transform: translateY(-5px); border-color: var(--accent); }
.member .ph { aspect-ratio: 7 / 8; overflow: hidden; }
.member .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.member:hover .ph img { transform: scale(1.05); }
.member .info { padding: 22px 24px; }
.member .info h3 { font-size: 1.4rem; margin-bottom: 2px; }
.member .info .role { color: var(--accent-2); font-size: .84rem; letter-spacing: .06em; margin-bottom: 12px; }
.member .info p { color: var(--ink-soft); font-size: .92rem; margin: 0; }

/* ---------- Note / news ---------- */
.notes { display: grid; gap: 14px; max-width: 720px; }
.note {
  display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: baseline;
  padding: 16px 0; border-bottom: 1px solid var(--line);
}
.note time { font-size: .78rem; color: var(--accent); letter-spacing: .06em; white-space: nowrap; }
.note p { margin: 0; color: var(--ink-soft); font-size: .96rem; }
.note b { color: var(--ink); font-weight: 400; }

/* ---------- Doc / legal pages ---------- */
.doc { max-width: 760px; }
.doc h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-top: 2.2em; }
.doc h3 { font-size: 1.2rem; margin-top: 1.6em; color: var(--accent-2); }
.doc p, .doc li { color: var(--ink-soft); line-height: 1.75; }
.doc p { overflow-wrap: anywhere; }
.doc ul, .doc ol { padding-left: 22px; }
.doc li { margin-bottom: 8px; }
.doc .updated { color: var(--ink-faint); font-size: .86rem; }
.sitemap-list { columns: 2; column-gap: 40px; list-style: none; padding: 0; }
.sitemap-list li { margin-bottom: 12px; break-inside: avoid; }
.sitemap-list a { color: var(--ink); border-bottom: 1px solid var(--line); padding-bottom: 2px; }
.sitemap-list a:hover { color: var(--accent); }

/* ---------- 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 { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--line); font-size: .92rem; }
.table-scroll th { color: var(--accent-2); font-weight: 500; background: var(--surface); }
.table-scroll td { color: var(--ink-soft); }

/* ---------- Footer ---------- */
.site-footer {
  background: #150f19; border-top: 1px solid var(--line);
  padding-block: clamp(48px, 7vw, 80px);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; }
.footer-grid h4 { font-family: "DM Sans", sans-serif; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-2); margin-bottom: 16px; }
.footer-grid a { color: var(--ink-soft); display: block; padding: 5px 0; transition: color .2s var(--ease), padding-left .2s var(--ease); }
.footer-grid a:hover { color: var(--accent); padding-left: 4px; }
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { color: var(--ink-faint); font-size: .9rem; max-width: 34ch; }
.footer-contact p { color: var(--ink-soft); font-size: .92rem; margin: 0 0 8px; }
.footer-bottom {
  margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center;
  color: var(--ink-faint); font-size: .82rem;
}
.footer-bottom .reg { letter-spacing: .03em; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; bottom: 16px; left: 16px; right: 16px; max-width: 520px; margin: 0 auto;
  background: var(--surface-2); border: 1px solid var(--line-strong); border-radius: 16px;
  padding: 20px 22px; z-index: 9999;
  box-shadow: 0 24px 60px -28px rgba(0, 0, 0, .8);
  transform: translateY(140%); opacity: 0;
  transition: transform .28s var(--ease), opacity .24s ease;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner h4 { font-family: "DM Sans", sans-serif; font-size: 1rem; margin: 0 0 6px; color: var(--ink); }
.cookie-banner p { font-size: .86rem; color: var(--ink-soft); margin: 0 0 14px; }
.cookie-banner p a { color: var(--accent-2); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions button {
  flex: 1 1 calc(50% - 5px); min-height: 44px; min-width: 0;
  font-family: "DM Sans", sans-serif; font-size: .88rem; font-weight: 500;
  border-radius: 10px; cursor: pointer; border: 1px solid var(--line-strong);
  white-space: nowrap;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.cookie-actions button:hover { transform: translateY(-1px); }
/* Accept + reject share the top row at equal visual weight (fair consent) */
.cookie-actions [data-consent="accept"] { background: var(--accent); color: var(--bg); border-color: var(--accent); }
.cookie-actions [data-consent="accept"]:hover { background: var(--accent-2); border-color: var(--accent-2); color: var(--bg); }
.cookie-actions [data-consent="reject"] { background: var(--surface); color: var(--ink); border-color: var(--line-strong); }
.cookie-actions [data-consent="reject"]:hover { background: var(--surface-2); color: var(--ink); border-color: var(--accent); }
/* Settings is tertiary: full-width row underneath */
.cookie-actions [data-consent="settings"] { flex: 1 1 100%; background: transparent; color: var(--ink-soft); }
.cookie-actions [data-consent="settings"]:hover { background: var(--surface); color: var(--ink); transform: none; }
@media (min-width: 720px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}

/* ---------- Reveal ----------
   Driven by the `translate` property (not `transform`) so the entrance
   animation never collides with component `:hover { transform: … }` rules —
   otherwise `.reveal.is-in` would override a card's hover lift and the card
   would appear to have no hover effect. */
.reveal { opacity: 0; translate: 0 28px; transition: opacity .6s var(--ease), translate .6s var(--ease); }
.reveal.is-in { opacity: 1; translate: 0; }
.reveal[style*="--i"] { transition-delay: calc(var(--i) * 80ms); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; translate: none !important; transition: none !important; }
  .hero h1 .ln > span, .hero .eyebrow, .hero-sub, .hero-actions, .hero-trust, .scroll-cue { opacity: 1 !important; animation: none !important; transform: none !important; }
  .hero-media img, .scroll-cue i { animation: none !important; }
  .hero-actions .btn-primary::before { animation: none !important; opacity: .4 !important; transform: none !important; }
}
html.no-js .reveal { opacity: 1; translate: none; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding-block: clamp(48px, 8vw, 96px) clamp(24px, 4vw, 48px); }
.page-hero h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); }
.page-hero p { color: var(--ink-soft); max-width: 56ch; }
.crumbs { font-size: .82rem; color: var(--ink-faint); margin-bottom: 18px; letter-spacing: .03em; }
.crumbs a:hover { color: var(--accent); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: inline-flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse .media { order: 0; }
  .form-shell { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .feature-grid, .tcards, .price-grid, .team-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .tile.t-a, .tile.t-b, .tile.t-c, .tile.t-d, .tile.t-e { grid-column: span 1; grid-row: span 1; }
  .tile.t-a { grid-column: span 2; }
  .slot { grid-template-columns: 1fr; gap: 6px; }
  .slot .meta { text-align: left; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .sitemap-list { columns: 1; }
  .channel .ic, .feature .ic { width: 44px; height: 44px; }
  .feature, .price, .tcard { padding: 24px 20px; }
  .note { grid-template-columns: 1fr; gap: 4px; }
  .hero-trust { gap: 8px 16px; }
}
@media (max-width: 420px) {
  .gallery { grid-template-columns: 1fr; }
  .tile.t-a { grid-column: span 1; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

.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}

/* form-reveal-opacity-fix */
main form.reveal, .form-section form.reveal, .contact-form.reveal, form[id*='iletisim'].reveal, form[class*='contact'].reveal { opacity: 1 !important; transform: none !important; translate: none !important; }
main form, .form-section form, .contact-form, form[id*='iletisim'], form[class*='contact'] { opacity: 1 !important; }

/* consent-checkbox-inline-fix */
main form label.checkbox, main form .form-checkbox, main form .consent, main form .kvkk, .contact-form label.checkbox, .contact-form .checkbox-group { display: flex !important; flex-direction: row !important; align-items: flex-start !important; gap: 10px !important; font-size: 14px !important; line-height: 1.5 !important; flex-wrap: nowrap !important; }
main form label.checkbox span, main form label.checkbox a, main form .form-checkbox span, main form .form-checkbox a, .contact-form label.checkbox span, .contact-form label.checkbox a { display: inline !important; flex: 1 1 auto; }
main form label.checkbox input[type='checkbox'], main form .form-checkbox input[type='checkbox'] { flex-shrink: 0 !important; width: 18px !important; height: 18px !important; margin-top: 3px !important; }


/* contacts-grid-v2 */
/* Contact cards in responsive grid */
.contact-grid, .contacts-grid, .iletisim-grid, .contact-cards, .contact-cards-grid,
.contact-list, main .contact-wrap, section[id*="iletisim"] > .container > div:has(> .contact-card) {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 20px !important;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 8px 16px;
  box-sizing: border-box;
}
@media (min-width: 1024px) {
  .contact-grid, .contacts-grid, .iletisim-grid, .contact-cards, .contact-cards-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media (max-width: 720px) {
  .contact-grid, .contacts-grid, .iletisim-grid, .contact-cards, .contact-cards-grid {
    grid-template-columns: 1fr !important;
  }
}
.contact-card { min-height: 0; box-sizing: border-box; }

/* Checkbox row alignment — override .field-checkbox column layout */
form .field.field-checkbox,
form .field-checkbox,
form .checkbox-field,
form .form-field--checkbox,
form .form-row--checkbox,
form .kvkk-field,
form .consent-field,
.contact-form .field.field-checkbox {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: flex-start !important;
  gap: 10px !important;
  width: 100%;
}
form .field.field-checkbox > input[type="checkbox"],
form .field-checkbox > input[type="checkbox"],
form .checkbox-field > input[type="checkbox"],
form .kvkk-field > input[type="checkbox"],
form .consent-field > input[type="checkbox"] {
  flex-shrink: 0 !important;
  width: 18px !important;
  height: 18px !important;
  margin: 3px 0 0 0 !important;
  accent-color: var(--accent, currentColor);
}
form .field.field-checkbox > label,
form .field-checkbox > label,
form .checkbox-field > label,
form .kvkk-field > label,
form .consent-field > label {
  flex: 1 1 auto !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
  margin: 0 !important;
  display: inline !important;
  cursor: pointer;
}
form .field.field-checkbox > label a,
form .field-checkbox > label a {
  text-decoration: underline;
}

/* field-full inside form grid spans both columns */
form .form-grid > .field-full,
form .form-grid > .field.field-full,
form .form-grid > .col-full,
form .form-grid > .full,
form .form-grid > [class*="--full"] {
  grid-column: 1 / -1;
}

/* header-cta-padding-guard v1 */
.nav-desktop a.nav-cta, header a.nav-cta, .site-header a.nav-cta {
  padding: 10px 18px;
}
