:root {
  --paper: #ffffff;
  --nude: #e8e2d9;
  --sand: #cfc8bf;
  --ink: #111111;
  --black: #000000;
  --muted: #6a6660;
  --wine: #5c0316;
  --anthracite: #383e42;
  --line: rgba(17, 17, 17, 0.14);
  --ghost: rgba(255, 255, 255, 0.92);
  --sans: "Jost", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --head: 78px;
  --crumb: 42px;
  --track: 0.22em;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body {
  background: var(--black);
  color: var(--paper);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; }
html[lang="tr"] .lng-en,
html[lang="en"] .lng-tr { display: none !important; }
.lng-en,
[lang="en"] { -webkit-locale: "en"; }
.lng-tr,
[lang="tr"] { -webkit-locale: "tr"; }
.ghost .lng-en,
.ghost .lng-tr,
.kg-foot-links .lng-en,
.kg-foot-links .lng-tr,
.more .lng-en,
.more .lng-tr,
.kg-dot .lng-en,
.kg-dot .lng-tr,
.kg-nav .lng-en,
.kg-nav .lng-tr,
.kg-overlay nav .lng-en,
.kg-overlay nav .lng-tr,
.kg-talent h2.lng-en,
.kg-talent h2.lng-tr,
.kg-line-head h2.lng-en,
.kg-line-head h2.lng-tr,
.kg-split-copy h2.lng-en,
.kg-split-copy h2.lng-tr,
.kg-title h1.lng-en,
.kg-title h1.lng-tr,
.kg-band-head h2.lng-en,
.kg-band-head h2.lng-tr,
.skill h3.lng-en,
.skill h3.lng-tr,
.kg-fig .lng-en,
.kg-fig .lng-tr,
.chips .lng-en,
.chips .lng-tr,
.plate h2.lng-en,
.plate h2.lng-tr,
.certs-iso h3.lng-en,
.certs-iso h3.lng-tr,
.kg-cat .lng-en,
.kg-cat .lng-tr,
.kg-kicker .lng-en,
.kg-kicker .lng-tr {
  text-transform: uppercase;
}

/* ——— Header ——— */
.kg-head {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--paper);
  color: var(--ink);
}
body.home .kg-head {
  position: absolute;
  left: 0; right: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.55) 0%, rgba(0,0,0,.18) 70%, transparent 100%);
  color: var(--paper);
  transition: background .35s var(--ease), color .35s var(--ease);
}
body.home .kg-head.is-solid {
  position: fixed;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
}
body.home .kg-head.is-solid .kg-logo img { filter: none; }
.kg-head-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  height: var(--head);
  padding: 0 28px;
  gap: 16px;
}
.kg-head-side {
  display: flex;
  align-items: center;
  gap: 18px;
}
.kg-head-side--l { justify-content: flex-start; }
.kg-head-side--r { justify-content: flex-end; }
.kg-meta {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: var(--track);
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0.8;
}
.kg-lang { position: relative; }
.kg-lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: var(--track);
  text-transform: uppercase;
  padding: 6px 0;
}
.kg-lang-btn i {
  display: inline-block;
  transform: rotate(90deg);
  font-style: normal;
  font-size: 14px;
  line-height: 1;
}
.kg-lang-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 140px;
  padding: 10px 0;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 12px 32px rgba(0,0,0,.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  z-index: 70;
}
.kg-lang.open .kg-lang-menu { opacity: 1; pointer-events: auto; transform: none; }
.kg-lang-menu button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 8px 16px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.kg-lang-menu button:hover,
.kg-lang-menu button.is-on { background: var(--nude); }

.kg-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: var(--head);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 110px 1fr;
  align-items: center;
  width: min(1280px, 92vw);
  pointer-events: none;
}
.kg-nav .kg-logo,
.kg-nav > ul > li > a { pointer-events: auto; }
.kg-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(8px, 0.9vw, 16px);
}
.kg-nav-left { justify-content: flex-end; padding-right: 14px; }
.kg-nav-right { justify-content: flex-start; padding-left: 14px; }
.kg-logo { justify-self: center; }
.kg-nav a {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0.88;
  transition: opacity .3s;
}
.kg-nav a:hover,
.kg-nav a[aria-current="page"] { opacity: 1; }
.kg-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 8px;
  flex-shrink: 0;
}
.kg-logo img {
  height: 18px;
  width: auto;
}
body.home .kg-logo img { filter: invert(1); }
.kg-logo small {
  font-size: 7px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  opacity: 0.7;
}
.kg-join {
  font-size: 11px;
  letter-spacing: var(--track);
  text-transform: uppercase;
}
.kg-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
}
.kg-icon svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.3; }
.kg-burger {
  display: none;
  width: 36px;
  height: 36px;
  position: relative;
}
.kg-burger span {
  position: absolute;
  left: 8px; right: 8px;
  height: 1px;
  background: currentColor;
  transition: transform .35s var(--ease), opacity .35s;
}
.kg-burger span:first-child { top: 13px; }
.kg-burger span:last-child { bottom: 13px; }
body.nav-open .kg-burger span:first-child { transform: translateY(4.5px) rotate(45deg); }
body.nav-open .kg-burger span:last-child { transform: translateY(-4.5px) rotate(-45deg); }

.has-drop { position: static; }
.has-drop > a {
  display: inline-flex;
  align-items: center;
  height: var(--head);
}
.kg-drop {
  position: fixed;
  top: var(--head);
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 36px;
  padding: 36px 48px 40px;
  background: var(--nude);
  color: var(--ink);
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility 0s linear .3s;
  z-index: 70;
}
.kg-drop,
.kg-drop a {
  pointer-events: none;
}
.kg-drop::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}
.has-drop:hover .kg-drop,
.has-drop:focus-within .kg-drop,
.has-drop.is-open .kg-drop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  transition-delay: 0s;
}
.has-drop:hover .kg-drop a,
.has-drop:focus-within .kg-drop a,
.has-drop.is-open .kg-drop a {
  pointer-events: auto;
}
.kg-drop a {
  display: flex;
  flex-direction: column;
  gap: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 10px;
  opacity: 1;
  width: 160px;
  white-space: normal;
}
.kg-drop a img {
  width: 160px;
  height: 110px;
  object-fit: cover;
  background: #111;
}
.kg-drop a span {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: none;
  color: var(--muted);
  font-weight: 400;
}
.kg-drop a span.lng-tr:first-of-type,
.kg-drop a span.lng-en:first-of-type,
.kg-drop a span:nth-of-type(1),
.kg-drop a span:nth-of-type(2) {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
}

/* Mobile / search overlays */
.kg-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: var(--nude);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  padding: 28px 32px 48px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s var(--ease), visibility .4s;
}
.kg-overlay.is-on { opacity: 1; visibility: visible; }
.kg-overlay-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
}
.kg-overlay nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 22px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.kg-overlay nav a[aria-current="page"] { text-decoration: underline; text-underline-offset: 6px; }
.kg-overlay .sub {
  font-size: 14px;
  letter-spacing: 0.12em;
  padding-left: 8px;
  opacity: 0.6;
}
.kg-search-form {
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 12px;
  margin-bottom: 32px;
}
.kg-search-form input {
  flex: 1;
  border: 0;
  background: none;
  font: inherit;
  font-size: 22px;
  letter-spacing: 0.08em;
  outline: none;
  color: var(--ink);
}
.kg-search-hits a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
}
.kg-search-hits small {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--muted);
}

.kg-crumb {
  background: var(--nude);
  color: var(--ink);
  height: var(--crumb);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 28px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.kg-crumb a { opacity: 0.55; }
.kg-crumb a:hover { opacity: 1; }
.kg-crumb span { opacity: 1; }

/* ——— Hero ——— */
.kg-stage {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--sand);
}
.kg-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}
.kg-slide.is-on { opacity: 1; pointer-events: auto; }
.kg-slide img,
.kg-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72) contrast(1.05);
}
.kg-slide-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  padding: 0 24px 48px;
}
.kg-slide-copy h1,
.kg-slide-copy .serif {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3.4rem, 8vw, 7.2rem);
  letter-spacing: 0.04em;
  line-height: 0.95;
  color: var(--paper);
  font-style: italic;
}
.ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  min-width: 148px;
  height: 38px;
  padding: 0 22px;
  border: 1px solid var(--paper);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--paper);
  background: transparent;
  transition: background .35s var(--ease), color .35s var(--ease);
}
.ghost:hover { background: var(--paper); color: var(--ink); }
.ghost--ink {
  border-color: var(--ink);
  color: var(--ink);
}
.ghost--ink:hover { background: var(--ink); color: var(--paper); }
.kg-hero-arrows {
  position: absolute;
  left: 24px; right: 24px;
  bottom: 24px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.kg-hero-arrows button {
  pointer-events: auto;
  width: 40px;
  height: 40px;
  font-size: 22px;
  color: var(--paper);
  opacity: 0.7;
}
.kg-hero-arrows button:hover { opacity: 1; }

.kg-houses {
  position: relative;
  flex: 0 0 auto;
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 16px 24px 18px;
  background: var(--sand);
  overflow-x: auto;
  scrollbar-width: none;
}
.kg-houses::-webkit-scrollbar { display: none; }
.kg-dot {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-family: var(--sans);
  font-style: normal;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.15;
  padding: 0 8px;
  border: 1px solid transparent;
  transition: transform .3s var(--ease), border-color .3s;
}
.kg-dot span {
  display: block;
  width: 100%;
  text-align: center;
  padding-left: 0.12em;
}
.kg-dot.is-on { border-color: var(--ink); }
.kg-dot:hover { transform: scale(1.06); }

/* ——— Banners ——— */
.kg-banners {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--nude);
  color: #fff;
}
.kg-banners .kg-houses {
  background: var(--nude);
  z-index: 20;
  padding-top: 36px;
}
.kg-line,
.kg-split {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
  color: #fff;
  text-align: center;
}
.kg-fold {
  position: sticky;
  top: var(--head);
  scroll-margin-top: var(--head);
  transform-origin: center top;
  border-top: 20px solid var(--nude);
  box-shadow: 0 -12px 32px rgba(0, 0, 0, 0.16);
}
.kg-lead {
  position: relative;
  top: auto;
  z-index: 1;
  min-height: calc(100dvh - 128px);
  box-shadow: none;
  background: var(--black) url('../img/uretim.jpg') center / cover no-repeat;
}
.kg-lead-slide {
  position: absolute;
  inset: 0;
  isolation: isolate;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .55s ease;
}
.kg-lead-slide.is-on {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.kg-lead-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.22);
  pointer-events: none;
  z-index: 1;
}
.kg-lead-slide video { z-index: 0; }
.kg-lead-slide .kg-line-head {
  height: 100%;
  width: 100%;
  max-width: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 28px;
}
@media (prefers-reduced-motion: reduce) {
  .kg-fold {
    position: relative;
    top: auto;
    box-shadow: none;
    transform: none !important;
  }
}
.kg-line::before,
.kg-split::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.22);
  pointer-events: none;
  z-index: 1;
}
.kg-lead::before { display: none; }
.kg-line video,
.kg-split video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--black);
  filter: brightness(0.94) contrast(1.06);
  z-index: 0;
}
.kg-line-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 0;
  filter: brightness(0.94) contrast(1.06);
  transition: opacity .35s ease;
}
.kg-line.is-playing .kg-line-thumb { opacity: 0; }
.kg-line-head {
  position: relative;
  z-index: 2;
  padding: calc(120px + 2.2cm) 28px;
  max-width: 900px;
}
.kg-split-copy {
  position: relative;
  z-index: 2;
  padding: 120px 28px;
  max-width: 720px;
}
.kg-line-head h2 {
  font-family: var(--sans);
  font-style: normal;
  font-size: clamp(1.82rem, 4.55vw, 3.36rem);
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 22px;
  color: #fff;
}
.kg-split-copy h2 {
  font-family: var(--sans);
  font-style: normal;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 12px;
  color: #fff;
}
.kg-line-head .kg-kicker,
.kg-split-copy .kg-kicker {
  color: #fff;
  opacity: 0.78;
}
.kg-line-head p:not(.kg-kicker),
.kg-split-copy p:not(.kg-kicker) {
  color: #fff;
  line-height: 1.7;
  margin-bottom: 28px;
}
.kg-line-head .ghost,
.kg-split-copy .ghost {
  margin-top: 16px;
}

/* ——— Highlights ——— */
.kg-band {
  background: var(--black);
  color: var(--paper);
  padding: 72px 28px 40px;
}
.kg-band--nude {
  background: var(--nude);
  color: var(--ink);
}
.kg-band-head {
  max-width: 720px;
  margin-bottom: 48px;
}
.kg-kicker {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.7;
}
.kg-band-head h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.15;
}
.kg-band-head p {
  margin-top: 16px;
  max-width: 42em;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
.kg-band--nude .kg-band-head p { color: var(--muted); }

.kg-news {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-auto-rows: minmax(280px, auto);
  gap: 8px;
  padding: 0 28px 80px;
  background: var(--black);
}
.kg-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  background: #0a0a0a;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}
.kg-card--wide { grid-column: 1 / 2; grid-row: 1 / 3; min-height: 640px; }
.kg-card img,
.kg-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.kg-card:hover img,
.kg-card:hover video { transform: scale(1.05); }
.kg-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.1) 55%);
}
.kg-card-copy { position: relative; z-index: 1; }
.kg-cat {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: 0.75;
}
.kg-card h3 {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.25;
  margin-bottom: 16px;
  max-width: 18em;
}
.kg-card .more {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

.kg-figures {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--nude);
  color: var(--ink);
  border-top: 1px solid var(--line);
}
.kg-fig {
  padding: 56px 32px;
  border-right: 1px solid var(--line);
}
.kg-fig:last-child { border-right: 0; }
.kg-fig b {
  display: block;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 10px;
}
.kg-fig span {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.kg-talent {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--black) url('../img/workwith.jpg') center / cover no-repeat;
  color: #fff;
  padding: 120px 28px;
  text-align: center;
}
.kg-talent.kg-fold {
  position: sticky;
}
.kg-talent::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  pointer-events: none;
  z-index: 0;
}
.kg-talent > * {
  position: relative;
  z-index: 1;
}
.kg-talent h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #fff;
}
.kg-talent .kg-kicker {
  color: #fff;
  opacity: 0.78;
}
.kg-talent p:not(.kg-kicker) {
  color: #fff;
  margin-bottom: 28px;
}
.kg-talent .ghost--ink {
  border-color: #fff;
  color: #fff;
}
.kg-talent .ghost--ink:hover {
  background: #fff;
  color: var(--ink);
}

/* ——— Footer ——— */
.kg-foot {
  background: var(--sand);
  color: var(--ink);
  padding: 56px 28px 32px;
  text-align: center;
}
.kg-foot-logo img {
  height: 20px;
  width: auto;
  margin: 0 auto 28px;
}
.kg-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  margin: 0 0 36px;
}
.kg-social a {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--ink);
  opacity: 0.88;
}
.kg-social a:hover { opacity: 1; }
.kg-social svg { width: 18px; height: 18px; fill: currentColor; }
.kg-foot-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-bottom: 28px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.kg-foot-links a {
  display: inline-flex;
  align-items: center;
}
.kg-foot-links a:not(:last-child)::after {
  content: "–";
  margin: 0 10px;
  opacity: 0.4;
  letter-spacing: 0;
}
.kg-foot-lang {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.kg-foot-lang button.is-on { text-decoration: underline; text-underline-offset: 4px; }
.kg-copy {
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--muted);
}

/* ——— Inner pages ——— */
.kg-title {
  background: var(--black);
  min-height: 58vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px 24px 64px;
}
.kg-title h1 {
  font-size: clamp(2.4rem, 7vw, 5.4rem);
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.kg-title p {
  margin-top: 18px;
  max-width: 36em;
  color: rgba(255,255,255,.58);
  font-size: 15px;
  letter-spacing: 0.02em;
}

.kg-hero-page {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}
.kg-hero-page img,
.kg-hero-page video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
}
.kg-hero-page .kg-slide-copy { padding-bottom: 0; }

.wrap {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
  padding: 72px 0;
}
.wrap h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.wrap .lead,
.wrap > p {
  color: rgba(255,255,255,.62);
  max-width: 42em;
  line-height: 1.75;
}
.quote {
  width: min(860px, calc(100% - 56px));
  margin: 0 auto;
  padding: 80px 0;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.01em;
}

.house-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 0 28px 80px;
  background: var(--black);
}
.house-tile {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 28px;
}
.house-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.house-tile:hover img { transform: scale(1.05); }
.house-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75), transparent 50%);
}
.house-tile h3 {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-size: 2rem;
  font-style: italic;
  font-weight: 400;
}
.house-tile p {
  position: relative;
  z-index: 1;
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.78;
}
.sec-label {
  padding: 56px 28px 20px;
  background: var(--black);
}
.sec-label h2 {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.sec-label p {
  max-width: 40em;
  color: rgba(255,255,255,.55);
  font-size: 14px;
}

.skill {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
}
.skill article {
  background: var(--black);
  padding: 36px 32px;
  min-height: 180px;
}
.kg-band--nude .skill { background: var(--line); }
.kg-band--nude .skill article { background: var(--nude); color: var(--ink); }
.skill h3 {
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.skill p { color: var(--muted); font-size: 14px; line-height: 1.6; }

.tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.tabs button {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.6);
}
.tabs button.is-on {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.lookbook { padding: 12px 0 40px; }
.lookbook[hidden] { display: none !important; }
.lookbook-name {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 10vw, 6.4rem);
  font-style: italic;
  font-weight: 400;
  line-height: 0.9;
  margin-bottom: 12px;
}
.lookbook-meta {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: 0.7;
}
.lookbook-body {
  max-width: 34em;
  color: rgba(255,255,255,.62);
  min-height: 3.6em;
}
.lookbook-rail {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding-top: 32px;
  scrollbar-width: none;
}
.lookbook-rail button {
  flex: 0 0 auto;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 14px;
  color: rgba(255,255,255,.4);
  border-bottom: 1px solid transparent;
  white-space: nowrap;
}
.lookbook-rail button.is-on {
  color: var(--paper);
  border-bottom-color: var(--paper);
}

.finishes, .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}
.kg-band > .chips { margin-top: 28px; padding-bottom: 24px; }
.finishes li, .chips li {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,.28);
}
.kg-band--nude .chips li {
  border-color: rgba(17,17,17,.25);
  color: var(--ink);
}

.box-stage {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.box-card {
  background: #0c0c0c;
  padding: 28px 24px 36px;
  min-height: 360px;
  border: 1px solid rgba(255,255,255,.08);
}
.box-card h3 {
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 18px 0 8px;
}
.box-card p { color: var(--muted); font-size: 14px; }
.rig {
  height: 140px;
  perspective: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rig-inner {
  width: 130px;
  height: 84px;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(-22deg) rotateY(-32deg);
  transition: transform .7s var(--ease);
}
.box-card:hover .rig-inner { transform: rotateX(-12deg) rotateY(-18deg); }
.rig-face {
  position: absolute;
  inset: 0;
  background: #efe8dc;
}
.rig-lid {
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 46%;
  background: #f7f2ea;
  transform-origin: top;
  transform: translateZ(18px);
  transition: transform .8s var(--ease);
}
.box-card:hover .rig--lid .rig-lid { transform: translateZ(18px) rotateX(-108deg); }
.rig--book .rig-lid {
  width: 54%;
  height: 100%;
  transform-origin: left;
  transform: translateZ(10px);
}
.box-card:hover .rig--book .rig-lid { transform: translateZ(10px) rotateY(-95deg); }
.rig--draw .rig-lid {
  height: 70%;
  top: 15%;
  transform-origin: center;
  transform: translateZ(22px);
}
.box-card:hover .rig--draw .rig-lid { transform: translateZ(48px); }

.cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  align-items: baseline;
}
.cloud span {
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.degree {
  font-size: clamp(5rem, 16vw, 11rem);
  font-weight: 200;
  letter-spacing: -0.06em;
  line-height: 0.8;
  margin-top: 24px;
}

.plates {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.plate {
  min-height: 48vh;
  padding: clamp(40px, 6vw, 80px);
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.plate:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.12); }
.plate-mark {
  position: absolute;
  top: 10%;
  left: 8%;
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 200;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,.08);
}
.plate h2 {
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.plate .since {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
  margin-bottom: 14px;
}
.plate p { color: rgba(255,255,255,.58); max-width: 34em; }
.certs-iso {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid rgba(255,255,255,.12);
}
.certs-iso article {
  padding: clamp(40px, 5vw, 72px);
  border-right: 1px solid rgba(255,255,255,.12);
}
.certs-iso article:last-child { border-right: 0; }
.certs-iso h3 {
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.certs-iso p { color: rgba(255,255,255,.58); font-size: 14px; line-height: 1.7; max-width: 36em; }
.certs-iso .n {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  margin-bottom: 12px;
}

.cert-index {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.cert-index a {
  display: block;
  padding: 28px 18px 32px;
  border-right: 1px solid rgba(255,255,255,.12);
  color: inherit;
  text-decoration: none;
}
.cert-index a:last-child { border-right: 0; }
.cert-index a:hover span { color: var(--paper); }
.cert-index .n {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  margin-bottom: 10px;
}
.cert-index span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.4;
}

.stages {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
}
.stages article {
  background: var(--black);
  padding: 32px 24px 40px;
  min-height: 220px;
}
.kg-band--nude .stages { background: var(--line); }
.kg-band--nude .stages article { background: var(--nude); color: var(--ink); }
.stages .n {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.stages h3 {
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.stages p { color: var(--muted); font-size: 14px; line-height: 1.6; }

.policy {
  width: min(760px, calc(100% - 56px));
  margin: 0 auto;
  padding: 0 0 80px;
  list-style: none;
}
.policy li {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,.62);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.kg-band--nude .policy li {
  color: var(--ink);
  border-color: var(--line);
}

.quote--center { text-align: center; }

[id] { scroll-margin-top: 96px; }

.world-wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}
.world {
  position: relative;
  min-height: 480px;
  background: #0c0c0c;
  border: 1px solid rgba(255,255,255,.1);
}
.pin {
  position: absolute;
  transform: translate(-50%, -50%);
  background: none;
  border: 0;
  color: var(--paper);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0 0 0 14px;
}
.pin::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--paper);
}
.pin.is-on::before { box-shadow: 0 0 0 6px rgba(255,255,255,.16); }
.world-card {
  background: #0c0c0c;
  border: 1px solid rgba(255,255,255,.1);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.world-card h2 {
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 8px 0 12px;
}
.world-card p { color: rgba(255,255,255,.58); margin-bottom: 8px; }
.markets {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 36px;
}
.markets article {
  padding: 24px;
  background: #0c0c0c;
  border: 1px solid rgba(255,255,255,.08);
  min-height: 160px;
}
.markets .n { font-size: 10px; letter-spacing: 0.16em; color: var(--muted); margin-bottom: 12px; }
.markets h3 { font-size: 1.05rem; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px; }
.markets p { color: var(--muted); font-size: 13px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-grid label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--muted);
}
.contact-grid input,
.contact-grid textarea {
  width: 100%;
  margin-bottom: 18px;
  padding: 10px 0;
  background: none;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.28);
  color: var(--paper);
  font: inherit;
  outline: none;
}
.contact-grid textarea { min-height: 120px; resize: vertical; }
.contact-grid .submit {
  margin-top: 8px;
  min-width: 148px;
  height: 38px;
  padding: 0 22px;
  border: 1px solid var(--paper);
  background: transparent;
  color: var(--paper);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  cursor: pointer;
}
.contact-grid .submit:hover { background: var(--paper); color: var(--ink); }

/* ——— Contact directory (centered) ——— */
body.page-contact { background: var(--paper); color: var(--ink); min-height: 100vh; }
.cu {
  max-width: 36rem;
  margin: 0 auto;
  padding: 72px 28px 120px;
  text-align: center;
}
.cu-title {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-bottom: 80px;
}
.cu-block {
  margin: 0 0 68px;
}
.cu-block h2 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.cu-block p {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.01em;
}
.cu-block p + p { margin-top: 4px; }
.cu-block a {
  color: var(--wine);
  border-bottom: 1px solid transparent;
}
.cu-block a:hover { border-bottom-color: var(--wine); }

.cu-form-wrap {
  margin-top: 96px;
  padding-top: 8px;
}
.cu-form-wrap h2 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.cu-form {
  max-width: 28rem;
  margin: 0 auto;
  text-align: left;
}
.cu-form label {
  display: block;
  font-family: var(--serif);
  font-size: 15px;
  margin: 18px 0 4px;
}
.cu-form input,
.cu-form select,
.cu-form textarea {
  width: 100%;
  padding: 8px 0 10px;
  background: none;
  border: 0;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.1rem;
  outline: none;
  border-radius: 0;
  appearance: none;
}
.cu-form textarea { min-height: 110px; resize: vertical; }
.cu-form select {
  appearance: auto;
  background: var(--paper);
}
.cu-form button {
  display: inline-block;
  margin: 32px auto 0;
  width: 100%;
  height: 44px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
}
.cu-form button:hover {
  background: var(--wine);
  border-color: var(--wine);
  color: var(--paper);
}
.cu-done {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--wine);
  margin-top: 20px;
  text-align: center;
}

.sigs {
  background: var(--black);
  padding: 80px 28px;
}
.sigs-sticky {
  display: grid;
  grid-template-columns: 0.6fr 1.2fr;
  gap: 40px;
  align-items: end;
  min-height: 50vh;
}
.sigs-num {
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 200;
  letter-spacing: -0.04em;
  line-height: 0.8;
  color: rgba(255,255,255,.16);
}
.sigs-kicker {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.sigs-copy h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.sigs-copy p:last-child { color: rgba(255,255,255,.58); max-width: 34em; }
.sigs-sheet { display: none; }

.scale {
  background: var(--nude);
  color: var(--ink);
  padding: 100px 28px;
}
.scale-row {
  display: flex;
  justify-content: space-between;
  font-size: clamp(2rem, 6vw, 4.4rem);
  font-weight: 300;
  letter-spacing: -0.03em;
}
.scale-bar {
  height: 1px;
  background: rgba(17,17,17,.18);
  margin: 28px 0 18px;
}
.scale-bar i { display: block; height: 1px; width: 0; background: var(--ink); }
.scale-cap { color: var(--muted); max-width: 28em; }

.houses-alt .house {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 64vh;
}
.houses-alt .house:nth-child(even) { grid-template-columns: 0.9fr 1.1fr; }
.houses-alt .house:nth-child(even) .house-copy { order: -1; }
.house-media { width: 100%; height: 100%; min-height: 320px; object-fit: cover; }
.house-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 80px);
  background: var(--black);
}
.house-copy h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 8px 0 14px;
}
.house-copy p { color: rgba(255,255,255,.58); max-width: 36em; }
.house-copy p + p { margin-top: 10px; }
.house-copy a.mail { color: inherit; border-bottom: 1px solid rgba(255,255,255,.28); width: max-content; }
.house-copy .more {
  margin-top: 24px;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  width: max-content;
  padding-bottom: 2px;
}

.legal {
  max-width: 42rem;
  margin: 0 auto;
  padding: 64px 28px 100px;
}
.legal h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  text-align: center;
  margin-bottom: 16px;
}
.legal .updated {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.55;
  margin: 0 0 40px;
}
.legal h2 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 36px 0 12px;
}
.legal p, .legal li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
}
.legal p + p { margin-top: 12px; }
.legal ul { margin: 8px 0 0 1.2em; list-style: disc; }
.legal li + li { margin-top: 6px; }
.legal a { color: var(--wine); }
.legal code {
  font-size: 0.9em;
  letter-spacing: 0.02em;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1180px) {
  .kg-nav ul.kg-nav-left,
  .kg-nav ul.kg-nav-right,
  .kg-meta,
  .kg-join { display: none; }
  .has-drop .kg-drop { display: none; }
  .kg-burger { display: block; }
  .kg-head-row { grid-template-columns: 1fr 1fr; }
  .kg-news { grid-template-columns: 1fr 1fr; }
  .kg-card--wide { grid-column: auto; grid-row: auto; min-height: 420px; }
  .house-grid { grid-template-columns: 1fr 1fr; }
  .kg-figures, .markets, .box-stage, .stages { grid-template-columns: 1fr 1fr; }
  .certs-iso, .cert-index { grid-template-columns: 1fr 1fr; }
  .certs-iso article, .cert-index a { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .kg-fig { border-right: 0; border-bottom: 1px solid var(--line); }
}
@media (max-width: 720px) {
  .kg-news, .house-grid, .kg-split, .kg-figures, .skill, .plates, .certs-iso, .cert-index, .stages, .world-wrap, .contact-grid, .markets, .box-stage, .houses-alt .house,
  .houses-alt .house:nth-child(even) { grid-template-columns: 1fr; }
  .houses-alt .house:nth-child(even) .house-copy { order: 0; }
  .kg-slide-copy .serif { font-size: 3.2rem; }
  .kg-dot { width: 64px; height: 64px; font-size: 8px; padding: 0 5px; }
  .sigs-sticky { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .kg-slide { transition: none; }
}
