/* =========================================================
   BUILD UP — Tourism & DMC
   Cinematic agency layout · navy / gold · overlay navigation
   ========================================================= */

:root {
  --navy: #001b44;
  --navy-mid: #0a2a5c;
  --navy-deep: #000d22;
  --gold: #c5a059;
  --gold-soft: #d4bc8a;
  --cream: #f4f0e8;
  --cream-2: #ebe4d6;
  --white: #ffffff;
  --ink: #121212;
  --muted: #5c5c5c;
  --line: rgba(0, 27, 68, 0.12);
  --font-display: "Cinzel", "Times New Roman", serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --header-h: 108px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1320px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: auto; }
html:has(body:not([data-page="home"])) { scroll-behavior: smooth; }
html, body { margin: 0; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open,
body.search-open { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  margin: 0 0 0.35em;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--navy);
}
h1 em, h2 em, h3 em { font-style: italic; font-weight: 400; color: var(--gold); }
p { margin: 0 0 1em; color: var(--muted); }
:focus-visible { outline: 1px solid var(--gold); outline-offset: 3px; }

.wrap { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.site-header.is-scrolled,
.site-header.on-light {
  background: rgba(255,255,255,0.96);
  box-shadow: 0 1px 0 var(--line);
}
.site-header .bar {
  width: min(1480px, calc(100% - 40px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}
.brand {
  justify-self: start;
  display: flex;
  align-items: center;
  background: #fff;
  padding: 6px 10px;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0,13,34,0.12);
}
.brand img {
  height: 88px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}
.nav-overlay .brand img { height: 72px; }
.header-center { justify-self: center; }
.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
}
.lang-switch { display: flex; gap: 2px; }
.lang-switch button {
  background: none; border: none; cursor: pointer;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.16em;
  color: #fff; padding: 8px 6px;
}
.site-header.is-scrolled .lang-switch button,
.site-header.on-light .lang-switch button { color: var(--navy); }
.lang-switch button.active { color: var(--gold); }

.icon-btn, .menu-btn {
  background: none; border: none; cursor: pointer;
  color: #fff; display: inline-flex; align-items: center; gap: 10px;
  letter-spacing: 0.18em; font-size: 0.72rem; font-weight: 500;
  padding: 8px;
}
.site-header.is-scrolled .icon-btn,
.site-header.is-scrolled .menu-btn,
.site-header.on-light .icon-btn,
.site-header.on-light .menu-btn { color: var(--navy); }
.menu-btn span { display: none; }
@media (min-width: 720px) { .menu-btn span { display: inline; } }
.icon-btn svg, .menu-btn svg { width: 22px; height: 22px; }

/* ---------- Overlay menu ---------- */
.nav-overlay {
  position: fixed; inset: 0; z-index: 90;
  background: var(--navy-deep);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr;
  transform: translateX(100%);
  transition: transform 0.55s var(--ease);
  overflow: auto;
}
.nav-overlay.is-open { transform: none; }
.nav-overlay-top {
  position: sticky; top: 0;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 28px;
  background: var(--navy-deep);
  z-index: 2;
}
.nav-overlay-top .brand { box-shadow: none; }
.nav-close {
  background: none; border: 1px solid rgba(197,160,89,0.4);
  color: var(--gold); width: 48px; height: 48px;
  display: grid; place-items: center; cursor: pointer;
}
.nav-overlay-body {
  display: grid;
  grid-template-columns: 1fr;
  min-height: calc(100vh - 90px);
}
@media (min-width: 960px) {
  .nav-overlay-body { grid-template-columns: 1.1fr 0.9fr; }
}
.nav-main { padding: 24px 8vw 80px; }
.nav-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
.nav-item > button,
.nav-item > a {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  background: none; border: none; color: #fff; cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  letter-spacing: 0.04em;
  padding: 18px 0;
  text-align: left;
}
.nav-item > button svg { width: 18px; height: 18px; color: var(--gold); transition: transform 0.3s; }
.nav-item.is-open > button svg { transform: rotate(45deg); }
.nav-sub {
  display: none;
  padding: 0 0 18px 4px;
}
.nav-item.is-open .nav-sub { display: grid; gap: 8px; }
.nav-sub a {
  color: var(--gold-soft);
  font-size: 1rem;
  letter-spacing: 0.04em;
}
.nav-aside {
  padding: 40px 8vw;
  background: linear-gradient(180deg, rgba(197,160,89,0.08), transparent);
  display: flex; flex-direction: column; justify-content: end; gap: 18px;
}
.nav-aside p { color: rgba(255,255,255,0.7); max-width: 28ch; }
.nav-aside a.gold { color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.8rem; }

/* ---------- Hero: fullscreen → shrink on wheel (Figür-style) ---------- */
.hero-pin {
  height: 250vh;
  background: #000;
  margin-top: calc(var(--header-h) * -1);
}
.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: #000;
  color: #fff;
}
.hero-stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-shade {
  position: absolute;
  left: 0; right: 0;
  z-index: 5;
  pointer-events: none;
  height: 50%;
}
.hero-shade-top {
  top: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.72), transparent);
}
.hero-shade-bot {
  bottom: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.72), transparent);
}

/* Full hall background — starts cover-scaled with frame, ends at 1 */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform-origin: center center;
  will-change: transform;
}

/* Small end-state frame; JS scales it up to cover viewport at start */
.hero-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: min(570px, 78vw);
  height: min(300px, 44vw);
  overflow: hidden;
  background: #000;
  transform: translate(-50%, -50%) scale(5);
  transform-origin: center center;
  will-change: transform;
  box-shadow: 0 20px 80px rgba(0,0,0,0.45);
}
.hero-frame img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-ui {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  align-items: end;
  width: min(1584px, calc(100% - 48px));
  margin-inline: auto;
  left: 0;
  right: 0;
  padding: 0 0 7vh;
  pointer-events: none;
  will-change: opacity, transform;
}
.scroll-button {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  font-size: 1rem;
  letter-spacing: -0.02em;
  padding: 0 0 8px;
  width: fit-content;
}
.scroll-bars {
  display: flex;
  gap: 8px;
  height: 40px;
}
.scroll-bars i {
  display: block;
  width: 1px;
  height: 100%;
  background: #fff;
}
.scroll-bars i:first-child { margin-top: 10px; height: calc(100% - 10px); }
.hero-title-block {
  display: flex;
  align-items: end;
  gap: clamp(24px, 4vw, 60px);
}
.hero-rule {
  position: relative;
  width: 1px;
  height: min(42vh, 340px);
  background: rgba(255,255,255,0.2);
  flex: none;
}
.hero-rule::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 18%;
  width: 1px;
  height: 42%;
  background: var(--gold);
}
.hero-ui h1 {
  color: #fff;
  font-size: clamp(2.2rem, 6.4vw, 5.8rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin: 0;
  max-width: 12ch;
}
.hero-ui h1 span {
  font-style: italic;
  font-weight: 400;
  color: #fff;
  display: inline-block;
}

/* Phone / tablet: same shrink effect, compact chrome */
@media (max-width: 1099px) {
  .hero-pin {
    height: 220vh;
    margin-top: calc(var(--header-h) * -1);
  }
  .hero-frame {
    width: min(320px, 82vw);
    height: min(180px, 46vw);
  }
  .hero-ui {
    grid-template-columns: 1fr;
    justify-items: center;
    align-content: end;
    text-align: center;
    width: calc(100% - 32px);
    padding: 0 0 max(28px, env(safe-area-inset-bottom, 0px));
    gap: 28px;
  }
  .scroll-button {
    order: 2;
    justify-content: center;
    font-size: 0.9rem;
  }
  .hero-title-block {
    order: 1;
    gap: 0;
    justify-content: center;
  }
  .hero-rule { display: none; }
  .hero-ui h1 {
    max-width: 11ch;
    font-size: clamp(2rem, 9.5vw, 3.2rem);
    letter-spacing: -0.03em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-pin { height: 100vh; height: 100dvh; }
  .hero-sticky { position: relative; }
  .hero-bg { transform: none !important; }
  .hero-frame {
    inset: 0; width: 100%; height: 100%;
    top: 0; left: 0;
    transform: none !important;
    box-shadow: none;
  }
}

/* ---------- Capability strip ---------- */
.caps {
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  border-top: 1px solid rgba(197,160,89,0.25);
  border-bottom: 1px solid rgba(197,160,89,0.25);
}
.caps-track {
  display: flex; gap: 56px; width: max-content;
  padding: 22px 0;
  animation: marquee 32s linear infinite;
}
.caps-track span {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  white-space: nowrap;
}
.caps-track span::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  margin-right: 56px;
  transform: translateY(-1px);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Intro ---------- */
.intro {
  padding: 110px 0 80px;
  background: var(--cream);
  text-align: center;
}
.intro h2 {
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  max-width: 16ch;
  margin: 0 auto 22px;
}
.intro p { max-width: 62ch; margin: 0 auto 28px; font-size: 1.05rem; }
.link-gold {
  color: var(--navy);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 500;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
}

/* ---------- Projects ---------- */
.projects { padding: 40px 0 100px; background: var(--cream); }
.projects-head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 24px; margin-bottom: 28px;
}
.projects-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin: 0; }
.project-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 720px) {
  .project-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1100px) {
  .project-grid { grid-template-columns: 1.2fr 0.8fr; }
  .project-card:nth-child(3n) { grid-column: 1 / -1; min-height: 420px; }
}
.project-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: end;
}
.project-card img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 0.8s var(--ease);
}
.project-card:hover img { transform: scale(1.1); }
.project-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,13,34,0.82) 100%);
}
.project-card .body {
  position: relative; z-index: 1;
  padding: 28px;
}
.project-card h3 { color: #fff; font-size: 1.35rem; margin: 0 0 8px; }
.project-card p { color: rgba(255,255,255,0.78); margin: 0; font-size: 0.95rem; }

/* ---------- Process ---------- */
.process {
  padding: 100px 0;
  background: var(--white);
}
.process h2 { text-align: center; font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 48px; }
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (min-width: 800px) {
  .process-grid { grid-template-columns: 1fr 1fr; }
}
.process-item {
  background: #fff;
  padding: 48px 40px;
  min-height: 240px;
}
.process-item .num {
  font-family: var(--font-display);
  font-size: 3.4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 18px;
}
.process-item h3 { font-size: 1.25rem; margin-bottom: 10px; }
.process-item p { margin: 0; }

/* ---------- Statement ---------- */
.hero-kicker {
  color: var(--gold);
  letter-spacing: 0.42em;
  font-size: 0.72rem;
  margin-bottom: 18px;
}
.statement {
  position: relative;
  min-height: 70vh;
  display: grid; place-items: center;
  color: #fff;
  overflow: hidden;
}
.statement img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.statement::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(0,13,34,0.55);
}
.statement .inner { position: relative; z-index: 1; text-align: center; padding: 80px 24px; }
.statement h2 { color: #fff; font-size: clamp(2rem, 5vw, 4rem); max-width: 16ch; margin: 0 auto 16px; }
.statement p { color: rgba(255,255,255,0.82); margin: 0 auto; max-width: 46ch; }

/* ---------- Sustain teaser ---------- */
.sustain {
  padding: 100px 0;
  background: var(--cream);
}
.sustain h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 12px; }
.sustain .lead { max-width: 56ch; margin-bottom: 40px; }
.sustain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 800px) { .sustain-grid { grid-template-columns: 1fr 1fr; } }
.sustain-card {
  background: #fff;
  padding: 32px 28px;
  border-top: 3px solid var(--gold);
}
.sustain-card h3 { font-size: 1.15rem; }
.sustain-card p { margin: 0; }

/* ---------- Contact band ---------- */
.contact-band {
  background: var(--navy);
  color: #fff;
  padding: 80px 0;
}
.contact-band h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.contact-band p { color: rgba(255,255,255,0.72); }
.contact-band .row {
  display: flex; flex-wrap: wrap; gap: 28px 64px; align-items: end;
  justify-content: space-between;
}
.contact-band a.phone {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.72);
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 800px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.site-footer .brand { width: fit-content; }
.site-footer h4 {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.site-footer a:hover { color: #fff; }
.site-footer li { margin-bottom: 8px; }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  padding-top: 20px; font-size: 0.82rem;
}
.footer-bottom a { color: var(--gold-soft); }

/* ---------- Page hero (inner) ---------- */
.page-hero {
  padding: calc(var(--header-h) + 72px) 0 56px;
  background: var(--cream);
}
.breadcrumb {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 22px;
}
.breadcrumb a:hover { color: var(--navy); }
.page-hero h1 {
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  max-width: 16ch;
}
.page-hero .lead { max-width: 54ch; font-size: 1.08rem; }
.page-hero.photo {
  position: relative;
  min-height: 52vh;
  display: grid; align-items: end;
  color: #fff;
  overflow: hidden;
  padding: 0;
}
.page-hero.photo > img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.page-hero.photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,13,34,0.2), rgba(0,13,34,0.72));
}
.page-hero.photo .wrap { position: relative; z-index: 1; padding: 160px 0 56px; }
.page-hero.photo h1, .page-hero.photo .lead, .page-hero.photo .breadcrumb { color: #fff; }

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (min-width: 900px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stats div {
  background: #fff;
  padding: 36px 24px;
  text-align: center;
}
.stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--navy);
}
.stats span { color: var(--muted); font-size: 0.88rem; }

/* ---------- Content blocks ---------- */
.section { padding: 80px 0; }
.section.cream { background: var(--cream); }
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 64px; } }
.split img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }
.service-list { display: grid; gap: 0; }
.service-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.service-row .idx {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.1rem;
  min-width: 2ch;
}
.service-row h3 { font-size: 1.15rem; margin: 0 0 6px; }
.service-row p { margin: 0; }

.ref-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (min-width: 800px) { .ref-grid { grid-template-columns: repeat(4, 1fr); } }
.ref-cell {
  min-height: 120px;
  display: grid; place-items: center;
  background: var(--cream);
  border: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--navy);
  text-align: center;
  padding: 16px;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 800px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
.blog-card { background: #fff; }
.blog-card img { width: 100%; height: 240px; object-fit: cover; }
.blog-card .body { padding: 22px 4px 0; }
.blog-card time { color: var(--gold); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; }
.prose { max-width: 68ch; }
.prose p { margin-bottom: 1.1em; }
.prose h2 { font-size: 1.6rem; margin: 1.4em 0 0.5em; }

/* ---------- Contact form ---------- */
.contact-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 900px) { .contact-shell { grid-template-columns: 0.9fr 1.1fr; gap: 64px; } }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy); }
.form-field input,
.form-field select,
.form-field textarea {
  border: 0; border-bottom: 1px solid var(--line);
  background: transparent; padding: 10px 0;
  outline: none;
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-bottom-color: var(--gold); }
.field-error { color: #9b2c2c; font-size: 0.8rem; min-height: 1em; }
.form-success { display: none; margin-top: 16px; color: var(--navy); }
.form-success.is-on { display: block; }
.check { display: flex; gap: 10px; align-items: start; font-size: 0.9rem; color: var(--muted); }
.check input { margin-top: 4px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--navy); color: #fff;
  border: 1px solid var(--navy);
  padding: 14px 28px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
.btn:hover { background: var(--navy-mid); }
.btn-gold { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-soft); }
.btn-outline { background: transparent; color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }

/* ---------- Search / cookie / kvkk ---------- */
.search-overlay, .kvkk-modal {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(0,13,34,0.92);
  display: none;
  place-items: center;
  padding: 24px;
}
.search-overlay.is-open, .kvkk-modal.is-open { display: grid; }
.search-box, .kvkk-box {
  width: min(720px, 100%);
  background: #fff;
  padding: 32px;
}
.search-box input {
  width: 100%; border: 0; border-bottom: 1px solid var(--line);
  font-size: 1.4rem; padding: 12px 0;
}
.search-results { margin-top: 18px; display: grid; gap: 8px; }
.search-results a { color: var(--navy); }
.kvkk-box { max-height: 80vh; overflow: auto; }
.kvkk-box h2 { font-size: 1.3rem; }
.kvkk-box p, .kvkk-box li { font-size: 0.92rem; }

.cookie-bar {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 70;
  background: var(--navy); color: #fff;
  padding: 18px 20px;
  display: none;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.cookie-bar.is-on { display: flex; }
.cookie-bar p { color: rgba(255,255,255,0.8); margin: 0; max-width: 70ch; font-size: 0.9rem; }
.cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; }

.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.wa-float svg { width: 26px; height: 26px; }

.reveal { opacity: 0; transform: translateY(24px); animation: rise 0.8s var(--ease) forwards; }
.reveal:nth-child(2) { animation-delay: 0.08s; }
.reveal:nth-child(3) { animation-delay: 0.16s; }
@keyframes rise { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .reveal, .caps-track, .scroll-hint .mouse::after { animation: none; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 720px) {
  .brand img { height: 64px; max-width: 140px; }
  :root { --header-h: 88px; }
  .site-header .bar { width: calc(100% - 24px); }
  .wrap { width: calc(100% - 32px); }
}
