/* Enlem kabuk — site chrome + page styles. Tokens: NIHAI SENTEZ §11–12 */

:root {
  --brand-primary: #0049B1;
  --navy: #002861;
  --bg: #FFFFFF;
  --bg-secondary: #EEF2F6;
  --text: #12202C;
  --text-secondary: #5A6570;
  --border: #D5DCE3;
  --globe: #0087D9;
  --highlight: #00ADEF;
  --success: #176B4A;
  --warning: #A85B24;
  --error: #B42318;
  --font: "Source Sans 3", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --measure: 1440px;
  --gutter: 24px;
  --section: 120px;
  --section-m: 72px;
  /* Legacy aliases — existing page styles keep working */
  --ink: var(--text);
  --muted: var(--text-secondary);
  --paper: var(--bg);
  --mist: var(--bg-secondary);
  --line: var(--border);
  --sea: var(--brand-primary);
  --focus: var(--highlight);
}
* { box-sizing: border-box; }
html { scroll-behavior: auto; }
html, body { margin: 0; background: var(--paper); color: var(--ink); }
body {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  animation: fadein 0.45s ease both;
}
@keyframes fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}
img { max-width: 100%; }
a { color: var(--sea); }
a:hover { color: var(--ink); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}
.skip { position: absolute; left: -999px; top: 0; }
.skip:focus { left: 8px; top: 8px; background: #fff; padding: 8px 12px; z-index: 20; }
.shell-note {
  display: none;
}
header.site {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 88px;
  padding: 12px 32px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  box-shadow: none;
  flex-wrap: nowrap;
}
.brand-lock {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  min-width: 0;
  flex: 0 1 auto;
}
.brand-lock:hover { color: var(--text); }
.brand-lock__mark {
  display: block;
  height: 64px;
  width: auto;
  flex: 0 0 auto;
}
.brand-lock__legal {
  display: block;
  font-weight: 400;
  font-size: 11px;
  line-height: 1.3;
  color: var(--text-secondary);
  max-width: 16.5rem;
  word-break: normal;
  overflow-wrap: normal;
}
.chrome-nav {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
  min-width: 0;
  flex: 1 1 auto;
  justify-content: flex-end;
  gap: 0;
}
.chrome-nav a, .chrome-nav summary {
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 10px;
  list-style: none;
  cursor: pointer;
}
.chrome-nav a:hover, .chrome-nav summary:hover { color: var(--brand-primary); }
.chrome-nav a[aria-current="page"],
.chrome-nav summary[aria-current="true"] { color: var(--brand-primary); }
.chrome-dd { position: relative; }
.chrome-dd ul {
  position: absolute; left: 0; top: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  list-style: none; margin: 0; padding: 8px 0;
  min-width: 220px; z-index: 5;
  white-space: normal;
}
.chrome-dd ul a { display: block; padding: 8px 14px; }
.chrome-tools {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.chrome-burger {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 12px;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  background: transparent;
  border: 1px solid var(--border);
  cursor: pointer;
}
.chrome-drawer {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 8px 32px 20px;
  z-index: 99;
}
.chrome-drawer nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.chrome-drawer a:not(.lang-switch__opt), .chrome-drawer .lang {
  padding: 10px 0;
  font-weight: 600;
  text-decoration: none;
  color: var(--text);
}
.chrome-drawer a:not(.lang-switch__opt):hover,
.chrome-drawer a[aria-current="page"] { color: var(--brand-primary); }
.chrome-drawer__group {
  padding: 10px 0 4px;
  font-size: 12px;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--text-secondary);
}
.chrome-drawer .cta { display: inline-block; margin-top: 8px; width: fit-content; }
.chrome-noscript {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding: 10px var(--gutter);
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  font-weight: 600;
  background: var(--bg-secondary);
}
.brand {
  font-weight: 600;
  letter-spacing: 0.18em;
  text-decoration: none;
  color: var(--ink);
  font-size: 14px;
}
.brand:hover { color: var(--ink); }
.brand span {
  display: block;
  font-weight: 400;
  letter-spacing: 0;
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
  line-height: 1.3;
}
nav.desk { display: flex; align-items: center; gap: 0; flex-wrap: nowrap; }
nav.desk a, nav.desk summary {
  color: var(--ink);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 10px;
  list-style: none;
  cursor: pointer;
}
nav.desk a:hover, nav.desk summary:hover { color: var(--sea); }
nav.desk details { position: relative; }
nav.desk details ul {
  position: absolute; left: 0; top: 100%;
  background: var(--paper);
  border: 1px solid var(--line);
  list-style: none; margin: 0; padding: 8px 0;
  min-width: 220px; z-index: 5;
}
nav.desk details ul a { display: block; padding: 8px 14px; }
.cta {
  display: inline-block;
  background: var(--brand-primary);
  color: #fff !important;
  text-decoration: none;
  padding: 12px 18px;
  font-size: 16px;
  font-weight: 600;
  border: 0;
  border-radius: 0;
  cursor: pointer;
}
.cta:hover { background: var(--ink); color: #fff !important; }
.cta.ghost {
  background: transparent;
  color: var(--sea) !important;
  border: 1px solid var(--sea);
}
.cta.ghost:hover { background: var(--sea); color: #fff !important; }
.cta:disabled { opacity: 0.45; cursor: not-allowed; }
.lang { font-size: 13px; color: var(--muted); padding: 10px; }
.lang b { color: var(--ink); font-weight: 600; }
.lang-switch {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin: 0;
  flex: 0 0 auto;
}
.lang-switch__trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  line-height: 0;
  font: inherit;
  color: inherit;
}
.lang-switch__trigger:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: 2px;
}
.lang-switch.is-open .lang-switch__trigger {
  border-color: var(--brand-primary);
}
.lang-switch__flag {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--border);
  flex: 0 0 auto;
  background: var(--bg-secondary);
}
.lang-switch__flag img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.12);
}
.lang-switch__opt .lang-switch__flag {
  width: 24px;
  height: 24px;
}
.lang-switch__list {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  z-index: 30;
  margin: 0;
  padding: 4px 0;
  list-style: none;
  min-width: 5.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  box-shadow: none;
}
.lang-switch__list[hidden] { display: none; }
.lang-switch__heading {
  display: block;
  padding: 0;
  margin: 0;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  white-space: nowrap;
  writing-mode: horizontal-tb;
  text-orientation: mixed;
  word-break: keep-all;
  overflow-wrap: normal;
  text-align: center;
  pointer-events: none;
  flex: 0 0 auto;
}
.lang-switch__opt {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  text-decoration: none;
  color: var(--text);
  white-space: nowrap;
}
.lang-switch__opt:hover,
.lang-switch__opt:focus {
  background: var(--bg-secondary);
  color: var(--text);
  outline: none;
}
.lang-switch__opt.is-current,
.lang-switch__opt[aria-current="true"] {
  background: var(--bg-secondary);
  color: var(--brand-primary);
}
.lang-switch__code {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.chrome-drawer .lang-switch {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 12px 0 4px;
}
.chrome-drawer .lang-switch__list {
  right: auto;
  left: 0;
}
.burger { display: none; }
main {
  max-width: var(--measure);
  margin: 0 auto;
  padding: 0 var(--gutter) 120px;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--sea);
  font-weight: 600;
  margin: 48px 0 0;
}
.breadcrumb {
  margin: 32px 0 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}
.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.breadcrumb li { display: flex; align-items: center; }
.breadcrumb li + li::before {
  content: "/";
  margin: 0 8px;
  color: var(--border);
  font-weight: 400;
}
.breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
}
.breadcrumb a:hover { color: var(--brand-primary); }
.breadcrumb [aria-current="page"] { color: var(--text); font-weight: 600; }
.section-intro .eyebrow { margin-top: 24px; }
.section-body {
  min-height: 280px;
  margin-top: var(--section);
  border-top: 1px solid var(--border);
}
h1 {
  font-size: 56px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 12px 0 20px;
  max-width: 18ch;
}
h1.short { font-size: 64px; max-width: 14ch; }
h2 {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  max-width: 28ch;
}
h3 { font-size: 18px; margin: 0 0 8px; font-weight: 700; }
.lede { font-size: 18px; max-width: 62ch; line-height: 1.5; }
.hero-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.hero-bleed .slot-16x9 { min-height: 0; }
.hero-copy { padding: 48px 0 0; max-width: 42rem; }
.hero--corporate .hero-copy { padding: 56px 0 32px; max-width: 46rem; }
.hero-ops {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
  margin: 0 0 20px;
}
.region[hidden] { display: none !important; }
.manset__stage { display: grid; gap: 0; }
.manset.is-carousel .manset__stage,
.region.is-carousel .manset__stage {
  grid-template-columns: 1fr;
}
.section-lead {
  font-size: 28px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 28ch;
  margin: 0 0 16px;
  color: var(--text);
}
.flagship { margin: 32px 0 64px; }
.flagship__media { margin: 0 0 28px; }
.flagship__copy { max-width: 46rem; }
.flagship__copy h3 {
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.collection h3 {
  font-size: 28px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  max-width: 28ch;
  margin: 0 0 16px;
}
.collection-gates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 28px 0;
}
.gate {
  border: 1px solid var(--border);
  background: var(--bg-secondary);
  padding: 28px 24px;
}
.gate h4 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 12px;
}
.gate p:last-child { margin-bottom: 0; }
.teaser h2 { margin-bottom: 20px; }
.facility-grid { margin: 28px 0; }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0;
}
.proof-grid__item {
  margin: 0;
  border: 1px solid var(--border);
  background: var(--bg-secondary);
  min-width: 0;
}
.proof-grid__item img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: contain;
  background: var(--bg-secondary);
}
.proof-grid__item figcaption {
  padding: 8px 12px;
  font-size: 14px;
  color: var(--text-secondary);
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin: 24px 0 0;
}
section.block { margin: var(--section) 0 0; }
.slot {
  border: 1px solid var(--line);
  background: var(--mist);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
  padding: 16px;
  gap: 6px;
  min-height: 280px;
}
.slot b { color: var(--ink); font-weight: 600; font-size: 14px; }
.slot-16x9 { aspect-ratio: 16 / 9; min-height: unset; width: 100%; }
.slot-4x5 { aspect-ratio: 4 / 5; min-height: unset; width: 100%; }
.slot.pack { min-height: unset; }
.pack-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.pack-row .slot { aspect-ratio: 4 / 5; min-height: unset; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: transparent;
  border: 0;
  padding: 0;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.card .slot {
  min-height: unset;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--muted);
}
h3 a { color: inherit; text-decoration: none; }
h3 a:hover { color: var(--sea); }
.card .body { padding: 16px 0 0; }
.sci { font-style: italic; color: var(--muted); font-size: 13px; font-weight: 400; margin: 0 0 8px; }
.form-tag {
  display: inline-block;
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.04em;
  color: var(--ink);
  border: 1px solid var(--line);
  padding: 4px 8px;
  margin: 0 0 12px;
}
.card .ask {
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: var(--sea);
}
.card .ask:hover { color: var(--ink); }
.meta {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 8px 16px;
  margin: 32px 0;
  font-size: 16px;
}
.meta b { font-weight: 600; }
table { width: 100%; border-collapse: collapse; font-size: 16px; background: var(--paper); }
th, td { border: 1px solid var(--line); padding: 12px 14px; text-align: left; vertical-align: top; }
th { font-weight: 600; background: var(--mist); }
.partners { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.partners li { border: 1px solid var(--line); padding: 8px 12px; background: var(--paper); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding: 0; list-style: none; }
.steps li { border: 1px solid var(--line); padding: 20px; background: var(--paper); }
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.filters span { border: 1px solid var(--line); padding: 8px 12px; font-size: 14px; background: var(--paper); }
form.rfq { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; }
form.rfq label { display: flex; flex-direction: column; gap: 6px; font-size: 16px; }
form.rfq .full { grid-column: 1 / -1; }
form.rfq input, form.rfq select, form.rfq textarea {
  font: inherit; padding: 12px; border: 1px solid var(--line); background: var(--paper); border-radius: 0;
}
.disabled { font-size: 14px; color: var(--muted); }
footer.site {
  border-top: 0;
  padding: 48px 32px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy);
}
footer.site a { color: #fff; }
footer.site a:hover { color: #fff; text-decoration: underline; }
footer.site strong { display: block; color: #fff; margin-bottom: 10px; font-weight: 700; }
footer.site h2 {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 12px;
  max-width: none;
  font-weight: 600;
}
.footer-inner {
  max-width: var(--measure);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 0.9fr;
  gap: 32px;
}
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin: 0 0 8px; }
.footer-stack { display: flex; flex-direction: column; gap: 4px; }
.footer-note { margin-top: 16px; font-size: 13px; color: rgba(255, 255, 255, 0.65); }
.footer-col--cta .cta { background: var(--brand-primary); }
.enlem-splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  --enlem-split-x: 50%;
}
.enlem-splash__wing {
  position: absolute;
  inset: 0;
  background: #0049B1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transform: translateX(0);
}
.enlem-splash__wing--left {
  clip-path: inset(0 calc(100% - var(--enlem-split-x)) 0 0);
}
.enlem-splash__wing--right {
  clip-path: inset(0 0 0 var(--enlem-split-x));
}
.enlem-splash__mark {
  display: block;
  width: min(72vw, 520px);
  max-width: calc(100vw - 48px);
  height: auto;
  opacity: 0;
  transform: scale(0.98);
}
.enlem-splash.is-ready .enlem-splash__mark {
  opacity: 1;
  transform: scale(1);
  transition: opacity 200ms ease, transform 200ms ease;
}
.enlem-splash.is-reveal .enlem-splash__wing {
  transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
}
.enlem-splash.is-reveal .enlem-splash__wing--left {
  transform: translateX(-100%);
}
.enlem-splash.is-reveal .enlem-splash__wing--right {
  transform: translateX(100%);
}
html.enlem-splash-lock,
html.enlem-splash-lock body { overflow: hidden; }
@media (max-width: 1280px) {
  header.site { padding: 12px 20px; }
  .chrome-nav a, .chrome-nav summary { padding: 10px 7px; font-size: 14px; }
}
@media (max-width: 1100px) {
  .proof-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 1180px) {
  .chrome-nav { display: none; }
  header.site .lang { display: none; }
  header.site .lang-switch { display: inline-flex; }
  .chrome-burger { display: inline-flex; }
}
header.site.is-overflow .chrome-nav { display: none; }
header.site.is-overflow .lang { display: none; }
header.site.is-overflow .lang-switch { display: inline-flex; }
header.site.is-overflow .chrome-burger { display: inline-flex; }
@media (max-width: 800px) {
  header.site { padding: 12px 16px; min-height: 72px; }
  nav.desk { display: none; }
  .burger { display: block; }
  .burger summary { cursor: pointer; padding: 10px; list-style: none; }
  .burger nav { display: flex; flex-direction: column; padding: 8px 0 16px; }
  .chrome-drawer { padding-left: 16px; padding-right: 16px; }
  header.site .chrome-tools > .cta { display: none; }
  .brand-lock__legal { max-width: 14rem; }
  .brand-lock__mark { height: 56px; }
  .enlem-splash.is-reveal .enlem-splash__wing { transition-duration: 400ms; }
  .enlem-splash__mark { width: min(86vw, 420px); }
  footer.site { padding: 36px 16px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  main { padding: 0 16px var(--section-m); }
  h1, h1.short { font-size: 40px; }
  h2 { font-size: 26px; }
  .split, .grid, .steps, form.rfq, .pack-row, .news-grid, .proof-grid { grid-template-columns: 1fr; }
  section.block { margin-top: var(--section-m); }
  .hero-copy { padding-top: 32px; }
  .hero--corporate .hero-copy { padding: 32px 0 24px; }
  .hero-ops { font-size: 18px; }
  .section-lead { font-size: 22px; }
  .flagship { margin: 24px 0 48px; }
  .flagship__copy h3 { font-size: 26px; }
  .collection h3 { font-size: 22px; }
}
@media (max-width: 700px) {
  .collection-gates { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .brand-lock__legal { display: none; }
}
@media (max-width: 390px) {
  .brand-lock { align-items: flex-start; gap: 8px; }
  .brand-lock__mark { height: 48px; }
  .brand-lock__legal { font-size: 10px; max-width: 11.5rem; }
  header.site { padding: 10px 12px; gap: 8px; }
  header.site .chrome-tools { gap: 6px; }
  .lang-switch__heading { font-size: 9px; letter-spacing: 0.02em; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  body { animation: none; }
}
