/* =========================================================
   Reson — Keman ve Yaylı Çalgılar Okulu
   Storytelling-longread. Bodoni Moda + Newsreader.
   ========================================================= */

:root {
  --bg: #F3F0E7;
  --surface: #E6E1D2;
  --surface-2: #EDEAE0;
  --ink: #10302E;
  --ink-soft: #3A524F;
  --accent: #0E5C57;
  --accent-2: #A8742F;
  --line: rgba(16, 48, 46, 0.16);
  --line-strong: rgba(16, 48, 46, 0.34);

  --font-head: "Bodoni Moda", "Didot", Georgia, serif;
  --font-body: "Newsreader", Georgia, "Times New Roman", serif;

  --maxw: 1240px;
  --pad: clamp(20px, 5vw, 72px);
  --header-h: clamp(64px, 8vw, 88px);

  interpolate-size: allow-keywords;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

html, body {
  overflow-x: hidden;
  max-width: 100vw;
  margin: 0;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(1.02rem, 0.96rem + 0.3vw, 1.18rem);
  line-height: 1.72;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.06;
  color: var(--ink);
  margin: 0 0 0.4em;
  letter-spacing: -0.012em;
}

p { margin: 0 0 1.1em; }

a { color: var(--accent); text-decoration: none; transition: color 200ms ease; }
a:hover { color: var(--accent-2); }

::selection { background: var(--accent); color: var(--bg); }

.long-text, .break { word-break: break-word; overflow-wrap: anywhere; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

main { padding-top: var(--header-h); }

section { position: relative; }

.section {
  padding-block: clamp(56px, 9vw, 128px);
}

.section--tight { padding-block: clamp(40px, 6vw, 80px); }

/* single column generous side margin */
.measure { max-width: 760px; }
.measure-wide { max-width: 920px; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--bg);
  padding: 12px 18px;
  z-index: 2000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ---------- Section numbers / eyebrows ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin: 0 0 1.2em;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--accent-2);
}

.sec-no {
  font-family: var(--font-head);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(3.4rem, 12vw, 8rem);
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1.4px var(--line-strong);
  display: block;
  margin: 0 0 0.1em;
  transition: -webkit-text-stroke-color 700ms ease, color 700ms ease, transform 900ms cubic-bezier(.2,.7,.2,1);
  transform-origin: left center;
}
.reveal.is-in .sec-no {
  color: rgba(168, 116, 47, 0.10);
  -webkit-text-stroke-color: var(--accent-2);
}

/* ---------- Bow-line divider (drawn from left) ---------- */
.bowline {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 60%, transparent 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1100ms cubic-bezier(.2,.7,.2,1);
  margin: clamp(20px, 4vw, 40px) 0;
}
.reveal.is-in .bowline { transform: scaleX(1); }

.rule {
  border: 0;
  border-top: 1px solid var(--line);
  margin: clamp(40px, 7vw, 90px) 0;
}

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  height: var(--header-h);
  background: rgba(243, 240, 231, 0.92);
  backdrop-filter: saturate(140%) blur(6px);
  border-bottom: 1px solid transparent;
  transition: background 240ms ease, box-shadow 240ms ease, height 240ms ease, border-color 240ms ease;
}
.site-header.is-scrolled {
  background: rgba(243, 240, 231, 0.98);
  box-shadow: 0 8px 24px -16px rgba(16, 48, 46, 0.28);
  border-bottom-color: var(--line);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.32rem;
  color: var(--ink);
  letter-spacing: 0.01em;
  line-height: 1;
}
.brand:hover { color: var(--ink); }
.brand svg { color: var(--accent); flex: 0 0 auto; }
.brand .brand-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  margin-top: 3px;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
}
.nav-desktop a {
  position: relative;
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--ink);
  padding: 6px 0;
}
.nav-desktop a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 1.5px;
  background: var(--accent-2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:not(.nav-cta):hover { color: var(--accent); }
.nav-desktop a:not(.nav-cta):hover::after,
.nav-desktop a.is-active:not(.nav-cta)::after { transform: scaleX(1); }
.nav-desktop a.is-active:not(.nav-cta) { color: var(--accent); }

.nav-cta {
  background: var(--ink);
  color: var(--bg) !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-cta:hover {
  background: var(--accent);
  color: var(--bg) !important;
  transform: translateY(-2px);
}

/* hamburger */
.nav-toggle {
  position: relative;
  z-index: 1100;
  width: 46px; height: 46px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 280ms 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); }

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none; }
}

/* ---------- Drawer ---------- */
.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--surface);
  z-index: 1090;
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), visibility 0s linear 300ms;
  padding: calc(var(--header-h) + 24px) 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: -20px 0 50px -30px rgba(16,48,46,.5);
  overflow-y: auto;
}
.drawer.is-open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), visibility 0s;
}
@media (prefers-reduced-motion: reduce) {
  .drawer { transition: visibility 0s; }
}
.drawer a {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: color 220ms ease;
}
.drawer a:hover,
.drawer a.is-active { color: var(--accent); }
.drawer a:last-of-type { border-bottom: 0; }
/* bow-stroke that draws in on hover/focus — theme micro-effect */
.drawer a:not(.drawer-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -1px;
  width: 100%; height: 1.5px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
}
.drawer a:not(.drawer-cta):hover::after,
.drawer a:not(.drawer-cta):focus-visible::after,
.drawer a.is-active:not(.drawer-cta)::after { transform: scaleX(1); }

/* staggered reveal of drawer items as the panel slides in */
.drawer > a,
.drawer > .drawer-meta {
  opacity: 0;
  transform: translateX(18px);
  transition: opacity 360ms ease, transform 360ms cubic-bezier(.2,.7,.2,1);
}
.drawer.is-open > a,
.drawer.is-open > .drawer-meta {
  opacity: 1;
  transform: none;
}
.drawer.is-open > a:nth-child(1) { transition-delay: 40ms; }
.drawer.is-open > a:nth-child(2) { transition-delay: 75ms; }
.drawer.is-open > a:nth-child(3) { transition-delay: 110ms; }
.drawer.is-open > a:nth-child(4) { transition-delay: 145ms; }
.drawer.is-open > a:nth-child(5) { transition-delay: 180ms; }
.drawer.is-open > a:nth-child(6) { transition-delay: 215ms; }
.drawer.is-open > .drawer-meta { transition-delay: 250ms; }
@media (prefers-reduced-motion: reduce) {
  .drawer > a,
  .drawer > .drawer-meta { opacity: 1; transform: none; transition: none; }
  .drawer a::after { transition: none; }
}
.drawer .drawer-cta {
  margin-top: 20px;
  background: var(--ink);
  color: var(--bg);
  text-align: center;
  border-radius: 999px;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 1rem;
  border-bottom: 0;
}
.drawer .drawer-cta:hover { background: var(--accent); color: var(--bg); }
.drawer-meta {
  margin-top: auto;
  padding-top: 24px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(16, 48, 46, 0.55);
  opacity: 0;
  visibility: hidden;
  z-index: 1085;
  transition: opacity 240ms ease, visibility 240ms ease;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

@media (min-width: 1024px) {
  .drawer, .drawer-backdrop { display: none; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  padding-top: clamp(40px, 7vw, 90px);
  padding-bottom: clamp(48px, 8vw, 110px);
  position: relative;
  overflow: hidden;
}
.hero-inner { max-width: 980px; }
.hero .sec-no {
  color: rgba(168, 116, 47, 0.12);
  -webkit-text-stroke: 1.4px var(--accent-2);
  margin-bottom: 0.08em;
}
.hero h1 {
  font-size: clamp(2.9rem, 8.5vw, 4.5rem);
  margin: 0.1em 0 0.35em;
  max-width: 14ch;
}
.hero-sub {
  font-size: clamp(1.16rem, 1rem + 1vw, 1.62rem);
  color: var(--ink-soft);
  max-width: 30ch;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 2em;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 2.4em;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 1.6em;
}
.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}
.trust-strip svg { color: var(--accent); flex: 0 0 auto; }

/* Theme signature: vibrating bow line -> sound wave */
.hero-wave {
  margin-top: clamp(28px, 5vw, 56px);
  width: 100%;
  max-width: 980px;
}
.hero-wave svg { width: 100%; height: auto; display: block; overflow: visible; }
.hero-wave .wave-path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.6;
  stroke-linecap: round;
}
.hero-wave .wave-path--2 { stroke: var(--accent-2); opacity: 0.55; }
@media (prefers-reduced-motion: no-preference) {
  .hero-wave .wave-path { animation: stringVibrate 6.5s ease-in-out infinite; }
  .hero-wave .wave-path--2 { animation: stringVibrate 8s ease-in-out infinite reverse; }
}
@keyframes stringVibrate {
  0%, 100% { d: path("M0,40 Q 245,40 490,40 T 980,40"); }
  20% { d: path("M0,40 Q 245,8 490,40 T 980,40"); }
  35% { d: path("M0,40 Q 245,66 490,40 T 980,40"); }
  50% { d: path("M0,40 Q 122,22 245,40 T 490,40 Q 612,58 735,40 T 980,40"); }
  70% { d: path("M0,40 Q 122,52 245,40 T 490,40 Q 612,26 735,40 T 980,40"); }
  85% { d: path("M0,40 Q 245,46 490,40 T 980,40"); }
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  line-height: 1;
}
.btn svg { flex: 0 0 auto; transition: transform 240ms ease; }
.btn-primary {
  background: var(--ink);
  color: var(--bg);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 14px 26px -16px rgba(14, 92, 87, 0.7);
}
.btn-primary:hover svg { 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);
  color: var(--ink);
  border-color: var(--ink);
  transform: translateY(-2px);
}

/* =========================================================
   Manifesto
   ========================================================= */
.manifesto p.lead {
  font-family: var(--font-head);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.5rem, 1.2rem + 1.8vw, 2.6rem);
  line-height: 1.3;
  color: var(--ink);
  max-width: 22ch;
}
.manifesto .body-cols {
  margin-top: clamp(28px, 4vw, 48px);
  max-width: 720px;
  color: var(--ink-soft);
}
.pull-quote {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.8rem, 1.3rem + 2.4vw, 3.2rem);
  line-height: 1.22;
  color: var(--accent);
  max-width: 18ch;
  margin: clamp(40px, 6vw, 80px) 0;
  position: relative;
  padding-left: 28px;
  border-left: 2px solid var(--accent-2);
}

/* =========================================================
   Section heading block
   ========================================================= */
.sec-head { margin-bottom: clamp(28px, 4vw, 54px); }
.sec-head h2 {
  font-size: clamp(2.1rem, 1.5rem + 2.6vw, 3.6rem);
  max-width: 16ch;
}
.sec-head .sec-intro {
  margin-top: 0.8em;
  color: var(--ink-soft);
  max-width: 56ch;
  font-size: 1.08rem;
}

/* =========================================================
   Tradition / longread two-column editorial
   ========================================================= */
.editorial {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
@media (min-width: 900px) {
  .editorial { grid-template-columns: 1.05fr 0.95fr; }
  .editorial.flip > :first-child { order: 2; }
}
.editorial .figure {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.editorial .figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.02);
  transition: transform 900ms cubic-bezier(.2,.7,.2,1);
}
.editorial .figure:hover img { transform: scale(1.04); }
.editorial .figure figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px 20px;
  background: linear-gradient(transparent, rgba(16,48,46,0.78));
  color: var(--bg);
  font-size: 0.86rem;
  font-style: italic;
}
.editorial .prose h3 {
  font-size: clamp(1.4rem, 1.1rem + 1vw, 1.9rem);
  margin-top: 1.4em;
}
.editorial .prose h3:first-child { margin-top: 0; }

/* art panel (SVG plate instead of photo) */
.art-panel {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 80% 10%, rgba(168,116,47,0.16), transparent 60%),
    linear-gradient(160deg, var(--ink) 0%, #0a2422 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.art-panel svg { width: 70%; height: auto; color: rgba(243,240,231,0.86); }
.art-panel .ap-grain {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(243,240,231,0.05) 1px, transparent 1px);
  background-size: 18px 18px;
  pointer-events: none;
}
.art-panel figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(7,22,21,0.85));
  color: var(--bg);
  font-size: 0.84rem;
  font-style: italic;
}
.art-panel--short { aspect-ratio: 16 / 11; }

.art-tile {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 6px;
  overflow: hidden;
  background:
    radial-gradient(110% 70% at 75% 15%, rgba(168,116,47,0.18), transparent 55%),
    linear-gradient(160deg, var(--accent) 0%, var(--ink) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.art-tile .at-mono {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(3rem, 8vw, 4.6rem);
  color: rgba(243,240,231,0.92);
  font-style: italic;
}
.art-tile svg { position: absolute; bottom: 14px; right: 16px; color: rgba(243,240,231,0.5); }

/* =========================================================
   Method — vertical timeline (duruş -> ton -> eser)
   ========================================================= */
.timeline {
  position: relative;
  margin-top: clamp(24px, 4vw, 48px);
  padding-left: clamp(34px, 6vw, 64px);
}
.timeline::before {
  content: "";
  position: absolute;
  left: clamp(8px, 1.6vw, 18px);
  top: 6px; bottom: 6px;
  width: 2px;
  background: linear-gradient(var(--accent), var(--accent-2));
  opacity: 0.5;
}
.tl-step {
  position: relative;
  padding-block: clamp(22px, 3.4vw, 40px);
  border-bottom: 1px solid var(--line);
}
.tl-step:last-child { border-bottom: 0; }
.tl-step::before {
  content: "";
  position: absolute;
  left: calc(-1 * clamp(34px, 6vw, 64px) + clamp(2px, 1vw, 11px));
  top: clamp(26px, 3.8vw, 46px);
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent);
  transition: background 400ms ease, transform 400ms ease;
}
.reveal.is-in .tl-step::before { background: var(--accent); }
.tl-step .tl-no {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--accent-2);
  letter-spacing: 0.08em;
}
.tl-step h3 {
  font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2.2rem);
  margin: 0.2em 0 0.4em;
  display: flex;
  align-items: center;
  gap: 14px;
}
.tl-step .tl-icon {
  flex: 0 0 auto;
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--surface);
  color: var(--accent);
  border: 1px solid var(--line);
}
.tl-step p { max-width: 60ch; color: var(--ink-soft); margin-bottom: 0.4em; }
.tl-step .tl-meta {
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

/* =========================================================
   Maxims (three short statements)
   ========================================================= */
.maxims {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 3vw, 34px);
  margin-top: clamp(28px, 4vw, 48px);
}
@media (min-width: 760px) {
  .maxims { grid-template-columns: repeat(3, 1fr); }
}
.maxim {
  border-top: 2px solid var(--accent-2);
  padding-top: 18px;
}
.maxim .m-no {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1rem;
  color: var(--accent-2);
}
.maxim p {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.3rem, 1.1rem + 0.8vw, 1.7rem);
  line-height: 1.2;
  margin: 0.3em 0 0;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: keep-all;
}

/* =========================================================
   Stats / counters
   ========================================================= */
.statband {
  background: var(--ink);
  color: var(--bg);
}
.statband .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 48px);
}
@media (min-width: 640px) { .statband .container { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .statband .container { grid-template-columns: repeat(4, 1fr); } }
.stat { border-left: 1px solid rgba(243,240,231,0.2); padding-left: 18px; }
.stat .stat-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.6rem, 2rem + 2vw, 4rem);
  line-height: 1;
  color: var(--bg);
  font-variant-numeric: tabular-nums;
}
.stat .stat-num .suf { color: var(--accent-2); }
.stat .stat-label {
  margin-top: 10px;
  font-size: 0.9rem;
  color: rgba(243,240,231,0.78);
  letter-spacing: 0.03em;
}

/* =========================================================
   Student path
   ========================================================= */
.path-list { margin-top: clamp(24px, 4vw, 48px); }
.path-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(16px, 3vw, 36px);
  align-items: start;
  padding-block: clamp(24px, 3.4vw, 42px);
  border-top: 1px solid var(--line);
}
.path-row:last-child { border-bottom: 1px solid var(--line); }
.path-row .p-no {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2.4rem, 1.8rem + 3vw, 4.2rem);
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--accent);
  font-variant-numeric: tabular-nums;
}
.path-row .p-body { min-width: 0; }
.path-row h3 { font-size: clamp(1.3rem, 1.1rem + 1vw, 1.8rem); margin-bottom: 0.3em; }
.path-row .p-when {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 0.6em;
  display: block;
}
.path-row p { color: var(--ink-soft); max-width: 60ch; margin: 0; }

/* =========================================================
   Pricing
   ========================================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 2.4vw, 28px);
  margin-top: clamp(28px, 4vw, 48px);
}
@media (min-width: 860px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: clamp(24px, 3vw, 34px);
  display: flex;
  flex-direction: column;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms ease, border-color 280ms ease;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 44px -28px rgba(16,48,46,0.5);
  border-color: var(--accent);
}
.price-card.is-featured {
  background: var(--surface-2);
  border-color: var(--accent);
  position: relative;
}
.price-card.is-featured::after {
  content: "En çok tercih edilen";
  position: absolute;
  top: -11px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.price-card .p-name {
  font-family: var(--font-head);
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.price-card .p-tag { color: var(--ink-soft); font-size: 0.94rem; margin-bottom: 18px; min-height: 2.2em; }
.price-card .p-price {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2rem, 1.6rem + 1.6vw, 2.8rem);
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.price-card .p-price .cur { font-size: 0.5em; color: var(--accent-2); margin-left: 4px; }
.price-card .p-per { font-size: 0.86rem; color: var(--ink-soft); margin: 8px 0 18px; }
.price-card .p-list {
  list-style: none;
  padding: 0; margin: 0 0 14px;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 0.96rem;
}
.price-card .p-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--ink-soft);
}
.price-card .p-list li svg { margin-top: 4px; color: var(--accent); }
.price-card .p-list li.excl { color: var(--ink-soft); opacity: 0.7; }
.price-card .p-list li.excl svg { color: var(--accent-2); }
.price-card .p-foot { margin-top: auto; padding-top: 18px; }
.price-card .p-deliver { font-size: 0.84rem; color: var(--ink-soft); margin-bottom: 14px; }
.price-note {
  margin-top: 20px;
  font-size: 0.84rem;
  color: var(--ink-soft);
  font-style: italic;
}

/* =========================================================
   Testimonials — editorial irregular grid
   ========================================================= */
.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 32px);
  margin-top: clamp(28px, 4vw, 48px);
}
@media (min-width: 820px) {
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .testi:nth-child(3) { grid-column: 1 / -1; }
}
.testi {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: clamp(22px, 3vw, 32px);
}
.testi blockquote {
  margin: 0 0 18px;
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.1rem, 1rem + 0.6vw, 1.4rem);
  line-height: 1.4;
  color: var(--ink);
}
.testi .t-meta { display: flex; flex-direction: column; gap: 2px; }
.testi .t-name { font-weight: 600; color: var(--ink); }
.testi .t-detail { font-size: 0.85rem; color: var(--ink-soft); }

/* =========================================================
   Team
   ========================================================= */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 3vw, 40px);
  margin-top: clamp(28px, 4vw, 48px);
}
@media (min-width: 760px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
.member .m-photo {
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 16px;
}
.member .m-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(.2,.7,.2,1);
}
.member:hover .m-photo img { transform: scale(1.05); }
.member h3 { font-size: 1.35rem; margin-bottom: 2px; }
.member .m-role {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 12px;
  display: block;
}
.member p { font-size: 0.96rem; color: var(--ink-soft); }

/* =========================================================
   FAQ
   ========================================================= */
.faq { margin-top: clamp(24px, 4vw, 44px); }
.faq details {
  border-top: 1px solid var(--line);
}
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: clamp(18px, 2.6vw, 28px) 44px clamp(18px, 2.6vw, 28px) 0;
  position: relative;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.1rem, 1rem + 0.6vw, 1.45rem);
  color: var(--ink);
  line-height: 1.25;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 6px; top: 50%;
  width: 14px; height: 14px;
  margin-top: -7px;
  background:
    linear-gradient(var(--accent), var(--accent)) center/14px 2px no-repeat,
    linear-gradient(var(--accent), var(--accent)) center/2px 14px no-repeat;
  transition: transform 320ms cubic-bezier(.4,0,.2,1);
}
.faq details[open] summary::after { transform: rotate(135deg); }
.faq .answer {
  height: 0;
  padding: 0 0;
  overflow: hidden;
  color: var(--ink-soft);
  transition: height 360ms cubic-bezier(.4,0,.2,1),
              padding-block-end 360ms cubic-bezier(.4,0,.2,1);
}
.faq details[open] .answer {
  height: auto;
  padding-block-end: 26px;
}
.faq .answer p { max-width: 64ch; }
@media (prefers-reduced-motion: reduce) {
  .faq .answer { transition: none; }
}

/* =========================================================
   CTA band
   ========================================================= */
.cta-band {
  background: var(--ink);
  color: var(--bg);
  text-align: center;
}
.cta-band .eyebrow { color: var(--accent-2); }
.cta-band .eyebrow::before { background: var(--accent-2); }
.cta-band h2 {
  color: var(--bg);
  font-size: clamp(2rem, 1.5rem + 2.6vw, 3.4rem);
  max-width: 18ch;
  margin: 0 auto 0.5em;
}
.cta-band p { color: rgba(243,240,231,0.82); max-width: 52ch; margin: 0 auto 1.8em; }
.cta-band .btn-primary { background: var(--accent-2); color: #1c1305; }
.cta-band .btn-primary:hover { background: var(--bg); color: var(--ink); }
.cta-band .btn-ghost { color: var(--bg); border-color: rgba(243,240,231,0.4); }
.cta-band .btn-ghost:hover { background: rgba(243,240,231,0.12); color: var(--bg); border-color: var(--bg); }
.cta-band .hero-actions { justify-content: center; }

/* =========================================================
   Forms
   ========================================================= */
.form-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 44px);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .field--full { grid-column: 1 / -1; }
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label, .field > .label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg);
  border: 0;
  border-bottom: 2px solid var(--line-strong);
  padding: 12px 4px;
  width: 100%;
  transition: border-color 220ms ease, background 220ms ease;
}
.field textarea { min-height: 140px; resize: vertical; border: 2px solid var(--line); border-radius: 6px; padding: 14px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface-2);
}
.field--check {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  grid-column: 1 / -1;
}
.field--check .label, .field--check label { font-weight: 400; color: var(--ink-soft); font-size: 0.92rem; 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);
}
.form-actions { grid-column: 1 / -1; }
.form-actions .btn-primary { width: 100%; justify-content: center; }
@media (min-width: 640px) {
  .form-actions .btn-primary { width: auto; }
}

/* =========================================================
   Contact cards
   ========================================================= */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(16px, 2.4vw, 24px);
  margin-top: clamp(28px, 4vw, 48px);
}
.cc {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  background: var(--surface);
  transition: transform 260ms cubic-bezier(.2,.7,.2,1), box-shadow 260ms ease, border-color 260ms ease;
  opacity: 0;
  transform: translateY(22px);
}
.cc.is-in {
  opacity: 1;
  transform: none;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1) calc(var(--i, 0) * 80ms),
              opacity 600ms ease calc(var(--i, 0) * 80ms);
}
.cc:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 40px -28px rgba(16,48,46,0.5);
  border-color: var(--accent);
}
.cc .cc-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
}
.cc .cc-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 6px;
}
.cc .cc-value {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--ink);
  display: block;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.cc a.cc-value:hover { color: var(--accent); }
.cc .cc-sub { font-size: 0.85rem; color: var(--ink-soft); margin-top: 6px; }

/* hours card grid */
.hours-list { list-style: none; padding: 0; margin: clamp(24px,4vw,40px) 0 0; display: grid; gap: 8px; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  font-variant-numeric: tabular-nums;
}
.hours-list li.is-today { border-color: var(--accent); background: var(--surface-2); }
.hours-list .h-day { font-weight: 600; }
.hours-list .h-time { color: var(--ink-soft); }

/* =========================================================
   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: 6px;
}
.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.96rem; }
table th { font-family: var(--font-head); font-weight: 700; background: var(--surface); }
table tr:last-child td { border-bottom: 0; }

/* =========================================================
   Doc pages (policies)
   ========================================================= */
.doc { max-width: 820px; }
.doc h2 { font-size: clamp(1.6rem, 1.3rem + 1.4vw, 2.4rem); margin-top: 1.6em; }
.doc h3 { font-size: 1.3rem; margin-top: 1.4em; }
.doc p, .doc li { color: var(--ink-soft); }
.doc ul, .doc ol { padding-left: 1.3em; }
.doc li { margin-bottom: 0.5em; }
.doc .doc-updated { color: var(--ink-soft); font-style: italic; font-size: 0.9rem; }

/* sitemap */
.sitemap-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(24px, 4vw, 40px);
  margin-top: clamp(28px, 4vw, 48px);
}
.sitemap-cols ul { list-style: none; padding: 0; margin: 12px 0 0; display: grid; gap: 8px; }
.sitemap-cols a { color: var(--ink); }
.sitemap-cols a:hover { color: var(--accent); }
.sitemap-cols h3 { font-size: 1.1rem; padding-bottom: 8px; border-bottom: 1px solid var(--line); }

/* =========================================================
   Notes block (activity)
   ========================================================= */
.notes-list { list-style: none; padding: 0; margin: clamp(20px,3vw,36px) 0 0; display: grid; gap: 0; }
.notes-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(14px, 3vw, 32px);
  padding-block: 20px;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.notes-list li:last-child { border-bottom: 1px solid var(--line); }
.notes-list .n-date {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--accent);
  text-transform: uppercase;
  white-space: nowrap;
}
.notes-list .n-text { color: var(--ink); min-width: 0; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding-block: clamp(48px, 6vw, 80px);
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 48px);
}
@media (min-width: 760px) {
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr; }
}
.footer-brand .brand { font-size: 1.5rem; }
.footer-brand p { margin-top: 16px; color: var(--ink-soft); max-width: 38ch; font-size: 0.96rem; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a, .footer-col span { color: var(--ink); font-size: 0.96rem; }
.footer-col a:hover { color: var(--accent); }
.footer-col .fc-line { color: var(--ink-soft); word-break: break-word; overflow-wrap: anywhere; }
.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.85rem;
  color: var(--ink-soft);
}
.footer-bottom a { color: var(--ink-soft); }
.footer-bottom a:hover { color: var(--accent); }
.footer-est { font-size: 0.85rem; color: var(--ink-soft); }

/* =========================================================
   Cookie banner
   ========================================================= */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--ink);
  color: var(--bg);
  border-radius: 12px;
  padding: 22px 24px;
  box-shadow: 0 24px 60px -24px rgba(16,48,46,0.7);
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms ease;
  z-index: 9999;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
/* Keep the open mobile nav clear of the fixed cookie banner */
body.nav-open .cookie-banner {
  transform: translateY(160%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner h2 { color: var(--bg); font-size: 1.2rem; margin-bottom: 8px; }
.cookie-banner p { color: rgba(243,240,231,0.82); font-size: 0.9rem; margin-bottom: 16px; }
.cookie-banner p a { color: var(--accent-2); text-decoration: underline; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-actions button {
  flex: 1 1 auto;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  cursor: pointer;
  border: 1px solid rgba(243,240,231,0.4);
  background: transparent;
  color: var(--bg);
  transition: background 200ms ease, color 200ms ease;
}
.cookie-actions button[data-consent="accept"] {
  background: var(--accent-2);
  color: #1c1305;
  border-color: var(--accent-2);
}
.cookie-actions button[data-consent="accept"]:hover { background: var(--bg); color: var(--ink); }
.cookie-actions button:hover { background: rgba(243,240,231,0.14); color: var(--bg); }
.cookie-actions button[data-consent="accept"]:hover { color: var(--ink); }
@media (min-width: 720px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}

/* =========================================================
   Reveal
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms cubic-bezier(.2,.7,.2,1), transform 600ms cubic-bezier(.2,.7,.2,1);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[style*="--i"] { transition-delay: calc(var(--i) * 90ms); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-wave .wave-path { animation: none !important; }
  .editorial .figure img, .member .m-photo img { transition: none; }
}
html.no-js .reveal { opacity: 1; transform: none; }
html.no-js .cc { opacity: 1; transform: none; }

/* =========================================================
   Page hero (interior)
   ========================================================= */
.page-hero {
  padding-top: clamp(40px, 6vw, 80px);
  padding-bottom: clamp(28px, 4vw, 52px);
}
.page-hero h1 {
  font-size: clamp(2.4rem, 1.8rem + 3vw, 4.4rem);
  max-width: 16ch;
}
.page-hero .lead {
  margin-top: 0.8em;
  font-size: clamp(1.08rem, 1rem + 0.6vw, 1.4rem);
  color: var(--ink-soft);
  max-width: 50ch;
  font-style: italic;
}
.page-hero .sec-no {
  color: rgba(168, 116, 47, 0.12);
  -webkit-text-stroke: 1.4px var(--accent-2);
}

/* =========================================================
   Utility
   ========================================================= */
.bg-surface { background: var(--surface); }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }

@media (max-width: 640px) {
  .stat { border-left: 0; padding-left: 0; border-top: 1px solid rgba(243,240,231,0.2); padding-top: 16px; }
  .cc { padding: 20px; }
  .cc .cc-icon { 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}

/* 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;
}
