/* Kitchen VC — public site (light theme, no-scroll fullpage slide engine).
   Brand: Cormorant Garamond (display) + Outfit (body).
   Palette: #ED1C24 / #111111 / #F5F5F5 / #FFFFFF.
   The styles are scoped to .k-site to keep them isolated from /admin. */

:root {
  --k-red: #ED1C24;
  --k-red-deep: #C8161D;
  --k-red-soft: rgba(237, 28, 36, 0.08);
  --k-ink: #111111;
  --k-ink-2: #1f1f1f;
  --k-ink-mute: #5a5a5a;
  --k-ink-dim: #8a8a8a;
  --k-line: rgba(17, 17, 17, 0.10);
  --k-line-strong: rgba(17, 17, 17, 0.18);
  --k-bg: #ffffff;
  --k-bg-soft: #f5f5f5;
  --k-bg-grey: #fafafa;
  --k-radius: 8px;
  --k-radius-sm: 6px;
  --k-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --k-shadow: 0 8px 24px -12px rgba(0, 0, 0, 0.10);
  --k-shadow-lg: 0 16px 40px -16px rgba(0, 0, 0, 0.18);
  --k-display: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --k-body: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --k-container: 1280px;
  --k-pad-x: clamp(20px, 5vw, 80px);
  --k-nav-h: 88px;
  --k-ease: cubic-bezier(0.7, 0, 0.3, 1);
}

/* ─── Reset (scoped) ───────────────────────────────────────────────────── */
.k-site, .k-site *, .k-site *::before, .k-site *::after { box-sizing: border-box; }
.k-site h1, .k-site h2, .k-site h3, .k-site h4, .k-site h5, .k-site h6,
.k-site p, .k-site ul, .k-site figure { margin: 0; padding: 0; }
.k-site ul { list-style: none; }
.k-site a { color: inherit; text-decoration: none; transition: color 180ms ease; }
.k-site img, .k-site svg { display: block; max-width: 100%; }

/* Page chrome */
html, body { margin: 0; padding: 0; background: var(--k-bg); }
body.k-site {
  color: var(--k-ink);
  font-family: var(--k-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
.k-site ::selection { background: var(--k-red); color: #fff; }

/* When the slide engine is active, fully suppress page scroll. */
body.k-site.is-fullpage { overflow: hidden; height: 100vh; height: 100dvh; }

/* Focus ring (visible on keyboard nav, hidden on mouse) */
.k-site a:focus-visible,
.k-site button:focus-visible,
.k-site input:focus-visible,
.k-site textarea:focus-visible,
.k-site select:focus-visible {
  outline: 2px solid var(--k-red);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ─── Container ────────────────────────────────────────────────────────── */
.k-container {
  width: 100%;
  max-width: var(--k-container);
  margin: 0 auto;
  padding-left: var(--k-pad-x);
  padding-right: var(--k-pad-x);
}

/* ─── Header / nav ─────────────────────────────────────────────────────── */
.k-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--k-nav-h);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(160%) blur(8px);
  -webkit-backdrop-filter: saturate(160%) blur(8px);
  transition: opacity 220ms ease, transform 220ms ease, box-shadow 200ms ease, background 200ms ease;
  display: flex;
  align-items: center;
}
.k-header.is-scrolled {
  box-shadow: 0 1px 0 var(--k-line);
  background: rgba(255, 255, 255, 0.94);
}
.k-header.is-hidden {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}
.k-header > .k-container {
  height: 100%;
  display: flex;
  align-items: center;
}

.k-nav {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.k-nav__brand,
.k-nav__brand-link {
  display: inline-flex;
  align-items: center;
  height: 100%;
}
.k-nav__brand img { height: 40px; width: auto; display: block; }

.k-nav__menu {
  display: flex;
  align-items: center;
  height: 100%;
  gap: clamp(8px, 1.4vw, 18px);
  font-family: var(--k-body);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.005em;
  color: var(--k-ink);
}
.k-nav__menu a {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 600;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
  position: relative;
}
.k-nav__menu a:hover,
.k-nav__menu a:focus-visible {
  background: var(--k-red);
  color: #fff;
  outline: none;
}
.k-nav__menu a.k-nav__brand-text { color: var(--k-red); }
.k-nav__menu a.k-nav__brand-text:hover,
.k-nav__menu a.k-nav__brand-text:focus-visible { background: var(--k-red); color: #fff; }
.k-nav__menu a.is-active {
  color: var(--k-red);
}
.k-nav__menu a.is-active:hover {
  color: #fff;
}

.k-nav__social { display: inline-flex; align-items: center; gap: 14px; margin-left: 12px; }
.k-nav__social a {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--k-red);
  transition: transform 180ms ease, color 180ms ease;
}
.k-nav__social a:hover,
.k-nav__social a:focus-visible {
  background: transparent;
  transform: translateY(-2px);
  color: #000;
}
.k-nav__social svg { width: 18px; height: 18px; }

.k-nav__toggle {
  display: none;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid var(--k-line-strong);
  border-radius: var(--k-radius-sm);
  cursor: pointer;
  align-items: center; justify-content: center;
  color: var(--k-ink);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.k-nav__toggle:hover { background: var(--k-red); color: #fff; border-color: var(--k-red); }
.k-nav__toggle svg { width: 20px; height: 20px; }

@media (max-width: 860px) {
  :root { --k-nav-h: 68px; }
  .k-nav__brand img { height: 32px; }
  .k-nav__menu { display: none; }
  .k-nav__toggle { display: inline-flex; }
  /* Backdrop blur is jank-prone on iOS Safari during scroll — drop it. */
  .k-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(255, 255, 255, 0.96); }
  .k-header > .k-container {
    padding-left: max(var(--k-pad-x), env(safe-area-inset-left));
    padding-right: max(var(--k-pad-x), env(safe-area-inset-right));
  }
}

/* Mobile drawer */
.k-mobile {
  position: fixed; inset: var(--k-nav-h) 0 0 0;
  background: var(--k-bg);
  z-index: 49;
  padding: 32px var(--k-pad-x);
  padding-left: max(var(--k-pad-x), env(safe-area-inset-left));
  padding-right: max(var(--k-pad-x), env(safe-area-inset-right));
  padding-bottom: max(32px, env(safe-area-inset-bottom));
  display: none;
  flex-direction: column;
  gap: 24px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.k-mobile.is-open { display: flex; }
.k-mobile__nav { display: flex; flex-direction: column; }
.k-mobile__nav a {
  font-family: var(--k-display);
  font-size: 32px;
  letter-spacing: -0.01em;
  border-bottom: 1px solid var(--k-line);
  padding: 14px 0;
  transition: color 180ms ease;
}
.k-mobile__nav a:hover,
.k-mobile__nav a:focus-visible { color: var(--k-red); }
.k-mobile__ctas { display: flex; flex-direction: column; gap: 6px; padding-top: 4px; }
.k-mobile__cta {
  font-family: var(--k-body);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--k-red);
  padding: 10px 0;
  transition: color 180ms ease;
}
.k-mobile__cta:hover,
.k-mobile__cta:focus-visible { color: var(--k-red-deep); }
.k-mobile__social { display: inline-flex; gap: 16px; padding-top: 4px; }
.k-mobile__social a { font-family: var(--k-body); font-size: 13px; font-weight: 500; color: var(--k-ink-mute); padding: 4px 0; }
.k-mobile__social a:hover { color: var(--k-ink); }

/* ─── Slide engine (no native scroll on desktop) ────────────────────────── */
.k-fullpage {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}
.k-slides {
  position: absolute;
  inset: 0;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  transition: transform 800ms var(--k-ease);
}
.k-section {
  height: 100vh;
  height: 100dvh;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  padding: calc(var(--k-nav-h) + 24px) 0 64px;
  overflow: hidden;
}
.k-section--white { background: var(--k-bg); }
.k-section--soft  { background: var(--k-bg-soft); }
.k-section--grey  { background: var(--k-bg-grey); }
.k-section--ink   { background: var(--k-ink); color: #fff; }

/* Mobile: keep slide engine, just compress section padding. */
@media (max-width: 860px) {
  .k-section { padding: calc(var(--k-nav-h) + 16px) 0 56px; }
  .k-section > .k-container {
    padding-left: max(var(--k-pad-x), env(safe-area-inset-left));
    padding-right: max(var(--k-pad-x), env(safe-area-inset-right));
  }
}

/* ─── Right-side slide nav (arrows + dots) ─────────────────────────────── */
.k-slidenav {
  position: fixed;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.k-slidenav__arrow {
  font-family: var(--k-body);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  width: 28px; height: 28px;
  border-radius: 7px;
  border: 1px solid var(--k-line-strong);
  background: rgba(255, 255, 255, 0.92);
  color: var(--k-ink);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  padding: 0;
  user-select: none;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05), inset 0 -1px 0 rgba(0, 0, 0, 0.04);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease,
              transform 120ms ease, opacity 180ms ease, box-shadow 180ms ease;
}
.k-slidenav__arrow:hover {
  background: var(--k-red);
  color: #fff;
  border-color: var(--k-red);
  transform: translateY(-1px);
}
.k-slidenav__arrow:active {
  transform: translateY(0);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.12);
}
.k-slidenav__arrow[disabled],
.k-slidenav__arrow.is-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}
.k-slidenav__dots {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 6px 0;
}
.k-slidenav__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.22);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background 200ms ease, transform 200ms ease, width 200ms ease, height 200ms ease;
}
.k-slidenav__dot:hover { background: var(--k-red); }
.k-slidenav__dot.is-active {
  background: var(--k-red);
  transform: scale(1.5);
}
@media (max-width: 860px) {
  /* On mobile: collapse to bottom-center horizontal dots, drop arrows. */
  .k-slidenav {
    flex-direction: row;
    top: auto;
    right: 50%;
    bottom: max(14px, env(safe-area-inset-bottom));
    transform: translateX(50%);
    gap: 10px;
  }
  .k-slidenav__arrow { display: none; }
  .k-slidenav__dots { flex-direction: row; padding: 0; gap: 10px; }
}

/* Persistent keyboard cue in bottom-left corner — Linear/Vercel-style.
   Shows the keys that drive section navigation; always visible on desktop. */
.k-kbdcorner {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--k-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--k-ink-mute);
  pointer-events: none;
  user-select: none;
}
.k-kbdcorner__keys { display: inline-flex; gap: 4px; }
.k-kbdcorner kbd {
  font-family: var(--k-body);
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  width: 20px; height: 20px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--k-line-strong);
  border-radius: 5px;
  color: var(--k-ink);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05), inset 0 -1px 0 rgba(0, 0, 0, 0.04);
}
@media (max-width: 860px) { .k-kbdcorner { display: none; } }

/* ─── Typography ───────────────────────────────────────────────────────── */
.k-display { font-family: var(--k-display); font-weight: 500; line-height: 1.05; color: var(--k-ink); }
.k-h1 { font-family: var(--k-display); font-weight: 500; font-size: clamp(40px, 6vw, 76px); line-height: 1.05; letter-spacing: -0.015em; color: var(--k-ink); }
.k-h2 { font-family: var(--k-display); font-weight: 500; font-size: clamp(36px, 5vw, 64px); line-height: 1.08; letter-spacing: -0.01em; color: var(--k-ink); }
.k-h3 { font-family: var(--k-display); font-weight: 500; font-size: clamp(22px, 2.4vw, 30px); line-height: 1.2; color: var(--k-ink); }
.k-em { font-style: italic; font-weight: 700; }
.k-em--red { color: var(--k-red); font-style: italic; font-weight: 700; }

.k-lede {
  font-family: var(--k-body);
  font-weight: 300;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.65;
  color: var(--k-ink-mute);
  max-width: 540px;
}
.k-body { color: var(--k-ink-mute); font-size: 15px; line-height: 1.7; }

/* ─── Buttons ──────────────────────────────────────────────────────────── */
/* Buttons — split pill: light label + detached red rounded-square icon.
   Hover fills label red and inverts the icon. */
.k-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--k-body);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  color: var(--k-ink);
  background: transparent;
  border: 0;
  padding: 0;
}

.k-btn__label {
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 0 22px;
  border-radius: 10px;
  background: var(--k-bg-soft);
  color: var(--k-ink);
  white-space: nowrap;
  transition: background-color 220ms ease, color 220ms ease;
}

.k-btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--k-red);
  color: #fff;
  flex-shrink: 0;
  transition: background-color 220ms ease, color 220ms ease;
}
.k-btn__icon svg { width: 18px; height: 18px; }

.k-btn:hover .k-btn__label { background: var(--k-red); color: #fff; }
.k-btn:hover .k-btn__icon  { background: #fff; color: var(--k-red); box-shadow: inset 0 0 0 2px var(--k-red); }
.k-btn:active .k-btn__label,
.k-btn:active .k-btn__icon { filter: saturate(0.9); }

/* ─── Section 1: Hero ──────────────────────────────────────────────────── */
.k-hero { background: var(--k-bg); position: relative; padding: 0; align-items: stretch; }
.k-hero > .k-container {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.k-hero__inner {
  position: relative;
  display: block;
  width: 100%;
  z-index: 1;
  /* Inner spans full container width but has no interactive content of its
     own — let pointer events fall through so map markers (e.g. SF) sitting
     visually behind this block can still receive hover/focus. */
  pointer-events: none;
}
.k-hero__copy { max-width: 600px; position: relative; z-index: 2; pointer-events: auto; }
.k-hero__block + .k-hero__block { margin-top: calc(1.6em * 2); }
.k-hero__title {
  margin: 0;
  font-size: clamp(30px, 7vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--k-ink);
}
.k-hero__sub {
  margin: 0;
  max-width: 480px;
  font-size: 14px;
  line-height: 1.6;
}
.k-hero__ctas { display: inline-flex; flex-wrap: wrap; gap: 14px; }

/* Locking the container's aspect ratio to the worldmap.svg viewBox
   (968x581 ≈ 1.666) means object-fit:contain fills the box exactly, so
   marker percentages map 1:1 onto SVG coordinates. */
.k-hero__map {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  height: 50vh;
  aspect-ratio: 960 / 631;
  width: auto;
  z-index: 0;
}
.k-hero__map img {
  width: 100%; height: 100%;
  object-fit: contain;
  opacity: 0.85;
  user-select: none;
  pointer-events: none;
}

/* Map markers — sit on top of the static red dots baked into worldmap.svg
   at SVG pixel coords (194, 223) for SF and (633, 212) for Istanbul.
   Width 968, height 581 → percentages below. */
.k-marker {
  position: absolute;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--k-red);
  box-shadow:
    0 0 0 6px rgba(237, 28, 36, 0.18),
    0 0 0 14px rgba(237, 28, 36, 0.08),
    0 0 22px rgba(237, 28, 36, 0.50);
  animation: kPulse 2s ease-in-out infinite;
  cursor: pointer;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.k-marker--sf { left: 23.85%; top: 41.52%; }
.k-marker--is { left: 69.58%; top: 39.78%; animation-delay: 0.7s; }

.k-marker__label {
  position: absolute;
  bottom: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--k-ink);
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 5;
}
@media (hover: none) and (pointer: coarse) {
  .k-marker__label {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    font-size: 10px;
    padding: 4px 8px;
    bottom: calc(100% + 10px);
  }
}
.k-marker__label::after {
  content: '';
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--k-ink);
}
.k-marker:hover .k-marker__label,
.k-marker:focus-visible .k-marker__label {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@keyframes kPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.25); }
}

@media (max-width: 1024px) {
  .k-hero { display: flex; flex-direction: column; }
  .k-hero > .k-container {
    order: 1;
    justify-content: flex-start;
    padding-top: 0;
  }
  .k-hero__map {
    order: 2;
    position: relative;
    top: auto; right: auto;
    transform: none;
    width: 100%;
    height: clamp(180px, 38vh, 280px) !important;
    aspect-ratio: auto;
    margin: 16px 0 0;
  }
  .k-hero__copy { max-width: 100%; }
}
@media (max-width: 860px) {
  .k-hero > .k-container { justify-content: center; gap: 4vh; }
  .k-hero__map { height: clamp(140px, 26vh, 220px) !important; margin: 0; }
  .k-hero__block + .k-hero__block { margin-top: 16px; }
}
@media (max-width: 480px) {
  .k-hero__ctas { display: flex; flex-direction: column; align-items: stretch; gap: 10px; }
  .k-hero__ctas .k-btn { width: 100%; }
  .k-hero__ctas .k-btn__label { flex: 1; justify-content: center; }
}

/* ─── Section 2: How our Kitchen works ─────────────────────────────────── */
.k-works { background: var(--k-bg-soft); position: relative; }
.k-works__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.7;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 0;
}
.k-works__deco img {
  height: 100%;
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: right center;
}
.k-works__inner { position: relative; z-index: 1; width: 100%; }
.k-works__head { max-width: 720px; margin-bottom: 64px; }
.k-works__sub { margin-top: 14px; }

.k-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.k-card {
  background: var(--k-bg);
  border: 1px solid var(--k-line);
  border-radius: 14px;
  padding: 26px 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--k-shadow);
  transition: transform 240ms var(--k-ease), box-shadow 240ms ease;
}
.k-card:hover { transform: translateY(-4px); box-shadow: var(--k-shadow-lg); }
.k-card__head { display: inline-flex; align-items: center; gap: 14px; }
.k-card__icon {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.k-card__icon img,
.k-card__icon svg { width: 40px; height: 40px; display: block; }
.k-card__title {
  font-family: var(--k-display);
  font-weight: 500;
  font-size: clamp(22px, 2vw, 26px);
  line-height: 1.2;
}
.k-card__body {
  color: var(--k-ink-mute);
  font-size: 15px;
  line-height: 1.65;
  max-width: 460px;
}

@media (max-width: 860px) {
  .k-works__deco { display: none; }
  .k-works__head { margin-bottom: 24px; }
  .k-works__sub { margin-top: 10px; }
  .k-cards { grid-template-columns: 1fr; gap: 12px; }
  .k-card { padding: 18px 20px; gap: 12px; }
  .k-card__title { font-size: 20px; }
  .k-card__body { font-size: 14px; line-height: 1.55; }
  .k-card__icon { width: 32px; height: 32px; }
  .k-card__icon img, .k-card__icon svg { width: 32px; height: 32px; }
}

/* ─── Section 3: We eat what we cook ───────────────────────────────────── */
.k-portfolio { background: var(--k-bg); }
.k-portfolio__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(17,17,17,0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(17,17,17,0.08) 1px, transparent 1px);
  background-size: 8vw 12vh;
  opacity: 1;
}
.k-portfolio__hatch {
  position: absolute;
  right: 18%; top: 30%;
  width: 110px; height: 110px;
  background: repeating-linear-gradient(
    135deg,
    transparent 0 6px,
    rgba(17,17,17,0.16) 6px 7px
  );
  pointer-events: none;
}
.k-portfolio__inner { position: relative; width: 100%; }
.k-portfolio__head { max-width: 720px; margin-bottom: 64px; }
.k-portfolio__sub { margin-top: 56px; max-width: 540px; }

.k-portfolio__list {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 36px);
  flex-wrap: wrap;
}
.k-portfolio__item {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--k-bg);
  transition: transform 220ms var(--k-ease), filter 220ms ease;
}
.k-portfolio__item img {
  width: 100%; height: 100%;
  object-fit: contain;
  border-radius: 50%;
}
.k-portfolio__item:hover {
  transform: translateY(-4px) scale(1.06);
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.18));
}
.k-portfolio__link { display: inline-flex; }

@media (max-width: 860px) {
  .k-portfolio__hatch { display: none; }
  .k-portfolio__head { margin-bottom: 24px; }
  .k-portfolio__sub { margin-top: 14px; }
  .k-portfolio__item { width: 48px; height: 48px; }
  .k-portfolio__list { gap: 16px; justify-content: flex-start; }
}

/* ─── Section 4: Chefs in the Kitchen ──────────────────────────────────── */
.k-chefs { background: var(--k-bg-grey); }
.k-chefs__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(17,17,17,0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(17,17,17,0.06) 1px, transparent 1px);
  background-size: 9vw 13vh;
  opacity: 1;
}
.k-chefs__inner { width: 100%; position: relative; }
.k-chefs__head { max-width: 720px; margin-bottom: 56px; }
.k-chefs__sub { margin-top: 56px; max-width: 480px; }

.k-chefs__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
.k-chef {
  background: var(--k-bg);
  border: 1px solid var(--k-line);
  border-radius: 13px;
  padding: 25px 25px 25px 29px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 25px;
  align-items: stretch;
  box-shadow: var(--k-shadow);
  transition: transform 240ms var(--k-ease), box-shadow 240ms ease;
}
.k-chef:hover { transform: translateY(-3px); box-shadow: var(--k-shadow-lg); }
.k-chef__copy { display: flex; flex-direction: column; gap: 4px; min-width: 0; }

.k-chef__name {
  font-family: var(--k-display);
  font-weight: 500;
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.15;
  color: var(--k-ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.k-chef__name em {
  font-style: italic;
  font-weight: 700;
}
.k-chef__role {
  font-family: var(--k-display);
  font-style: italic;
  font-weight: 700;
  color: var(--k-red);
  font-size: 14px;
  margin-top: 2px;
}
.k-chef__linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto; height: auto;
  margin-top: 6px;
  background: transparent;
  color: currentColor;
  flex-shrink: 0;
  align-self: flex-start;
  transition: transform 180ms ease, color 180ms ease;
}
.k-chef__linkedin:hover {
  transform: translateY(-2px);
  color: var(--k-red);
}
.k-chef__linkedin svg { width: auto; height: 14px; }

.k-chef__photo {
  width: 180px;
  aspect-ratio: 4/5;
  border-radius: 9px;
  overflow: hidden;
  background: #1a1a1a;
}
.k-chef__photo img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 860px) {
  .k-chefs__head { margin-bottom: 20px; }
  .k-chefs__sub { margin-top: 14px; }
  .k-chefs__list { grid-template-columns: 1fr; gap: 12px; }
  .k-chef {
    grid-template-columns: 1fr 96px;
    padding: 14px 16px;
    gap: 14px;
    align-items: center;
  }
  .k-chef__photo { width: 96px; aspect-ratio: 1/1; max-height: 96px; border-radius: 8px; }
  .k-chef__photo img { object-position: center top; }
  .k-chef__name { font-size: 18px; gap: 6px; }
  .k-chef__role { font-size: 13px; margin-top: 0; }
  .k-chef__linkedin { margin-top: 6px; }
}

/* ─── Section 5: Footer ────────────────────────────────────────────────── */
.k-foot {
  background: var(--k-bg);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 100px 0 0;
}
.k-foot > .k-container {
  flex: 1;
  display: flex;
  align-items: center;
  padding-bottom: 20px;
}
.k-foot__inner {
  display: block;
  width: 100%;
}
.k-foot__brand { display: inline-flex; align-items: center; }
.k-foot__brand img { height: 40px; width: auto; }
.k-foot__copy {
  max-width: 620px;
  margin-top: 52px;
  color: var(--k-ink-mute);
  font-size: 15px;
  line-height: 1.7;
}
.k-foot__ctas {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 52px;
  font-size: 15px;
}
.k-foot__ctas strong { font-weight: 600; color: var(--k-ink); }
.k-foot__ctas a { color: var(--k-red); transition: color 180ms ease; }
.k-foot__ctas a:hover { color: var(--k-red-deep); text-decoration: underline; }

.k-foot__social {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  align-self: end;
  justify-self: end;
}
.k-foot__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--k-red);
  transition: transform 180ms ease, color 180ms ease;
}
.k-foot__social a:hover {
  transform: translateY(-2px);
  color: var(--k-red-deep);
}
.k-foot__social svg { width: 26px; height: 26px; }

.k-foot__bar {
  background: #000;
  color: #fff;
  font-size: 13px;
  padding: 14px 0;
}
.k-foot__bar .k-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

@media (max-width: 860px) {
  .k-foot { padding: 0; }
  .k-foot__brand img { height: 32px; }
  .k-foot__copy { margin-top: 20px; font-size: 14px; line-height: 1.6; }
  .k-foot__ctas { margin-top: 20px; gap: 8px; font-size: 14px; }
  .k-foot > .k-container { padding-bottom: 60px; }
  .k-foot__bar { padding: 12px 0; font-size: 12px; }
  .k-foot__bar .k-container { justify-content: center; }
}

/* ─── Form pages (pitch, reserve) ──────────────────────────────────────── */
.k-page { padding-top: calc(var(--k-nav-h) + 56px); padding-bottom: 120px; min-height: 100vh; }
.k-page__head {
  width: 100%;
  max-width: 100%;
  margin: 0 auto 80px;
  text-align: center;
}
.k-page__head-row {
  width: 100%;
  text-align: center;
}
.k-page__head-row + .k-page__head-row {
  margin-top: 32px;
}
.k-page__eyebrow {
  font-family: var(--k-body); font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--k-red);
  text-align: center;
}
.k-page__title {
  text-align: center;
  text-wrap: balance;
}
.k-page__sub {
  color: var(--k-ink-mute);
  font-size: 16px; line-height: 1.65;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  text-wrap: balance;
}

.k-form {
  max-width: 760px;
  margin: 0 auto;
  background: var(--k-bg);
  border: 1px solid var(--k-line);
  border-radius: 14px;
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--k-shadow);
  display: grid;
  gap: 22px;
}
.k-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 720px) { .k-form__row { grid-template-columns: 1fr; gap: 16px; } }

.k-field { display: flex; flex-direction: column; gap: 8px; position: relative; }
.k-field--full { grid-column: 1 / -1; }
.k-field__label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500; color: var(--k-ink); letter-spacing: 0.01em;
}
.k-field__label .k-req { color: var(--k-red); font-weight: 700; }
.k-field__hint { font-size: 12px; color: var(--k-ink-dim); margin: -2px 0 0; }
.k-field__error { font-size: 12px; color: var(--k-red); min-height: 16px; margin: -2px 0 0; }

.k-input, .k-textarea, .k-select {
  background: var(--k-bg);
  border: 1px solid var(--k-line-strong);
  border-radius: var(--k-radius-sm);
  color: var(--k-ink);
  font: inherit;
  font-size: 15px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease;
  width: 100%;
  font-family: var(--k-body);
}
.k-input::placeholder, .k-textarea::placeholder {
  color: var(--k-ink-dim);
  font-style: italic;
  font-weight: 300;
  opacity: 1;
}
.k-select:has(option[value=""]:checked) {
  color: var(--k-ink-dim);
  font-style: italic;
  font-weight: 300;
}
.k-select option { color: var(--k-ink); font-style: normal; font-weight: 400; }
.k-select option[value=""][disabled] { color: var(--k-ink-dim); font-style: italic; font-weight: 300; }
.k-input:focus, .k-textarea:focus, .k-select:focus {
  border-color: var(--k-red);
  box-shadow: 0 0 0 3px rgba(237, 28, 36, 0.10);
}
.k-input:user-invalid, .k-textarea:user-invalid, .k-select:user-invalid,
.k-input.is-invalid, .k-textarea.is-invalid, .k-select.is-invalid {
  border-color: var(--k-red);
  box-shadow: 0 0 0 3px rgba(237, 28, 36, 0.10);
}
.k-textarea { min-height: 120px; resize: vertical; line-height: 1.5; }
.k-select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none'><path d='M1 1l5 5 5-5' stroke='%23111' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px 8px;
  padding-right: 36px;
}

.k-tip { position: relative; cursor: help; color: var(--k-ink-dim); }
.k-tip svg { width: 14px; height: 14px; }
.k-tip__bubble {
  position: absolute;
  bottom: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(4px);
  background: var(--k-ink);
  color: #fff;
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 6px;
  white-space: normal;
  width: max-content;
  max-width: 240px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 150ms ease, transform 150ms ease;
  z-index: 5;
  font-weight: 400;
}
.k-tip__bubble::after {
  content: ''; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  border: 5px solid transparent; border-top-color: var(--k-ink);
}
.k-tip:hover .k-tip__bubble, .k-tip:focus-within .k-tip__bubble {
  opacity: 1; transform: translateX(-50%) translateY(0);
}

.k-form__actions {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; margin-top: 8px; flex-wrap: wrap;
}
.k-form__legal { font-size: 12px; color: var(--k-ink-dim); max-width: 380px; }
.k-form__submit[disabled] { opacity: 0.6; cursor: progress; }
.k-form__submit[disabled] .k-btn__label,
.k-form__submit[disabled] .k-btn__icon { filter: none; }

.k-form__note { font-size: 13px; color: var(--k-ink-dim); }

/* Toast */
.k-toast {
  position: fixed; bottom: 24px; left: 50%;
  transform: translate(-50%, 120%);
  background: var(--k-ink);
  color: #fff;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 14px;
  z-index: 100;
  transition: transform 250ms ease;
  box-shadow: 0 10px 30px -8px rgba(0,0,0,0.3);
  max-width: calc(100vw - 32px);
}
.k-toast.is-show { transform: translate(-50%, 0); }
.k-toast.is-error { background: var(--k-red); }

/* Reveal-on-scroll */
.k-reveal { opacity: 0; transform: translateY(16px); transition: opacity 600ms ease, transform 600ms ease; }
.k-reveal.is-in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .k-reveal { opacity: 1; transform: none; transition: none; }
  .k-marker { animation: none !important; }
  .k-slides { transition: none; }
}

/* Skip link for a11y */
.k-skip {
  position: absolute; left: 16px; top: 16px; z-index: 100;
  background: var(--k-ink); color: #fff; padding: 8px 14px; border-radius: 6px;
  font-size: 14px; transform: translateY(-200%); transition: transform 150ms ease;
}
.k-skip:focus { transform: translateY(0); }

/* Honeypot — hidden from humans, exposed to dumb form-fillers. Display:none
   alone is sometimes ignored by sophisticated bots; combine off-screen +
   aria + tab removal so the field is unreachable through normal UX. */
.k-honeypot {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important; height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ─── 404 — Lost in transit ────────────────────────────────────────────────
   Reuses the hero's worldmap aesthetic: same SVG, same coordinate-anchored
   markers, but SF + Istanbul are dimmed and a dashed great-circle path is
   drawn between them. A "lost signal" pin pulses mid-route. */
.k-404 {
  position: relative;
  min-height: 100vh;
  background: var(--k-bg);
  display: flex;
  align-items: center;
  padding: calc(var(--k-nav-h) + 24px) 0 64px;
  overflow: hidden;
}
.k-404 > .k-container { position: relative; z-index: 1; }

.k-404__map {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  height: 60vh;
  aspect-ratio: 960 / 631;
  width: auto;
  z-index: 0;
  color: rgba(17, 17, 17, 0.35);
}
.k-404__map > img {
  width: 100%; height: 100%;
  object-fit: contain;
  opacity: 0.45;
  user-select: none;
  pointer-events: none;
  filter: grayscale(0.4);
}

/* Flight path overlay — sits on top of the map, behind the markers. */
.k-404__path {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  animation: k404PathIn 900ms 200ms var(--k-ease) forwards;
}
.k-404__path path {
  stroke-dashoffset: 220;
  animation: k404Dash 1800ms 200ms var(--k-ease) forwards;
}
@keyframes k404PathIn { to { opacity: 0.7; } }
@keyframes k404Dash   { to { stroke-dashoffset: 0; } }

/* Dimmed marker variant — same position, but quiet glow + paler core.
   Inherits .k-marker--sf / --is positioning. */
.k-marker--dim {
  background: rgba(237, 28, 36, 0.55);
  box-shadow:
    0 0 0 5px rgba(237, 28, 36, 0.10),
    0 0 0 11px rgba(237, 28, 36, 0.04);
  animation: none;
  width: 10px; height: 10px;
}

/* The lost pin — anchored to the path midpoint in SVG space (≈ 410, 140
   on a 968×581 viewBox → 42.36% / 24.10%). */
.k-404__lost {
  position: absolute;
  left: 42.36%;
  top: 24.10%;
  width: 48px; height: 48px;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: help;
  outline: none;
}
.k-404__lost-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1.5px dashed var(--k-red);
  opacity: 0.55;
  animation: k404Spin 14s linear infinite;
}
.k-404__lost-mark {
  position: relative;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--k-ink);
  color: #fff;
  font-family: var(--k-body);
  font-size: 24px;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
  box-shadow:
    0 0 0 6px rgba(17, 17, 17, 0.10),
    0 0 28px rgba(237, 28, 36, 0.55);
  animation: k404Glitch 3.4s ease-in-out infinite;
}
.k-404__lost-label {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--k-ink);
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: none;
}
.k-404__lost-label::after {
  content: '';
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--k-ink);
}
.k-404__lost:hover .k-404__lost-label,
.k-404__lost:focus-visible .k-404__lost-label {
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}

@keyframes k404Spin   { to { transform: rotate(360deg); } }
@keyframes k404Glitch {
  0%, 92%, 100% { transform: translate(0, 0); opacity: 1; }
  93%           { transform: translate(-1px, 1px); opacity: 0.7; }
  95%           { transform: translate(2px, -1px); opacity: 1; }
  97%           { transform: translate(-1px, -1px); opacity: 0.85; }
}

.k-404__inner {
  max-width: 640px;
  position: relative;
  z-index: 2;
}

/* Block stacking — each row sits in its own div; one line of breathing
   room between blocks (≈ 1 line of body copy = 1.6em). */
.k-404__block { display: block; }
.k-404__block + .k-404__block { margin-top: 1.6em; }

/* Big animated 404 badge — the loud, unmissable signal that this is
   the error page. Italic display numerals + a vertical red rule label. */
.k-404__badge {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}
.k-404__badge-num {
  font-family: var(--k-display);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(72px, 10vw, 132px);
  line-height: 0.85;
  letter-spacing: -0.03em;
  color: var(--k-red);
  text-shadow: 0 0 30px rgba(237, 28, 36, 0.30);
  animation: k404Throb 2.4s ease-in-out infinite;
  display: inline-block;
}
.k-404__badge-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-left: 16px;
  border-left: 2px solid var(--k-red);
  font-family: var(--k-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--k-red);
  white-space: nowrap;
}
.k-404__badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--k-red);
  box-shadow: 0 0 0 4px rgba(237, 28, 36, 0.15);
  animation: kPulse 2s ease-in-out infinite;
}
@keyframes k404Throb {
  0%, 100% { transform: scale(1);    text-shadow: 0 0 30px rgba(237, 28, 36, 0.30); }
  50%      { transform: scale(1.04); text-shadow: 0 0 56px rgba(237, 28, 36, 0.65); }
}

.k-404__title {
  margin: 0;
  font-size: clamp(56px, 8vw, 110px);
  line-height: 0.98;
  letter-spacing: -0.02em;
}
.k-404__sub {
  margin: 0;
  max-width: 460px;
}
.k-404__ctas {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 1024px) {
  .k-404 { min-height: auto; padding: calc(var(--k-nav-h) + 32px) 0 56px; }
  .k-404__map {
    position: relative;
    top: auto; right: auto;
    transform: none;
    width: 100%;
    height: auto;
    margin: 0 0 28px;
    opacity: 0.9;
  }
}
@media (prefers-reduced-motion: reduce) {
  .k-404__path { opacity: 0.7; animation: none; }
  .k-404__path path { stroke-dashoffset: 0; animation: none; }
  .k-404__lost-ring { animation: none; }
  .k-404__lost-mark { animation: none; }
  .k-404__badge-num { animation: none; }
  .k-404__badge-dot { animation: none; }
}
