:root {
  --color-bg: #0e1016;
  --color-bg-2: #191c26;
  --color-ink: #14161f;
  --color-paper: #fafaf6;
  --color-accent: #ff5200;
  --color-accent-hover: #ff6a24;
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Instrument Sans", system-ui, sans-serif;
  --font-mono: "Space Mono", ui-monospace, monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--color-bg);
  color: var(--color-paper);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease, opacity 0.15s ease;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

::selection {
  background: var(--color-accent);
  color: var(--color-paper);
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}

.animate-pulse-dot {
  animation: pulse-dot 1.8s ease-in-out infinite;
}

/* ——— Page-load reveals (landing) ——— */
@keyframes lk-in-up {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes lk-in-down {
  from {
    opacity: 0;
    transform: translate3d(0, -12px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes lk-in-stamp {
  0% {
    opacity: 0;
    transform: scale(0.82) rotate(-14deg);
  }
  72% {
    opacity: 1;
    transform: scale(1.05) rotate(-1deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes lk-in-bg {
  from {
    opacity: 0.55;
    transform: scale(1.045);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lk-reveal {
  opacity: 0;
  animation-duration: 0.55s;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  animation-fill-mode: forwards;
  animation-name: lk-in-up;
}

.lk-reveal--down {
  animation-name: lk-in-down;
  animation-duration: 0.45s;
}

.lk-reveal--stamp {
  animation-name: lk-in-stamp;
  animation-duration: 0.65s;
  animation-timing-function: cubic-bezier(0.34, 1.3, 0.64, 1);
}

.lk-body--landing .hero-bg__img {
  animation: lk-in-bg 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.lk-reveal--1 {
  animation-delay: 0.06s;
}
.lk-reveal--2 {
  animation-delay: 0.14s;
}
.lk-reveal--3 {
  animation-delay: 0.24s;
}
.lk-reveal--4 {
  animation-delay: 0.36s;
}
.lk-reveal--5 {
  animation-delay: 0.48s;
}
.lk-reveal--6 {
  animation-delay: 0.54s;
}
.lk-reveal--7 {
  animation-delay: 0.62s;
}
.lk-reveal--8 {
  animation-delay: 0.72s;
}

@media (prefers-reduced-motion: reduce) {
  .lk-reveal,
  .lk-reveal--down,
  .lk-reveal--stamp,
  .lk-body--landing .hero-bg__img {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

.glass {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 10px 34px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.gnome-photo {
  filter: grayscale(0.4) contrast(1.06) brightness(0.9) saturate(0.82);
}

@media (prefers-reduced-motion: reduce) {
  .animate-pulse-dot {
    animation: none;
  }
}

@media (min-width: 861px) and (min-height: 761px) {
  .hero-lock {
    height: 100dvh;
    overflow: hidden;
  }
}

/* ——— Header ——— */
.lk-header {
  position: relative;
  z-index: 2;
}

body.lk-menu-open .lk-header {
  z-index: 300;
}

/* Keep the real header logo + close control above the overlay */
body.lk-menu-open .lk-header__inner {
  position: relative;
  z-index: 110;
}

body.lk-menu-open .lk-lang {
  visibility: hidden;
}

body.lk-menu-open .lk-burger {
  display: none;
}

body.lk-menu-open .lk-menu-close {
  display: inline-flex;
}

.lk-header--page {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(14, 16, 22, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.lk-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 44px;
  gap: 16px;
}

.lk-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-paper);
}

.lk-logo__mark {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: block;
  border-radius: 9px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s ease;
}

.lk-logo:hover .lk-logo__mark {
  transform: scale(1.03);
}

.lk-logo__word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  line-height: 1;
}

.lk-header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lk-nav--desktop {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lk-nav__link {
  font-weight: 600;
  font-size: 13px;
  color: rgba(250, 250, 246, 0.72);
}

.lk-nav__link:hover {
  color: var(--color-accent-hover);
}

/* Language switcher — pills on desktop, dropdown on mobile */
.lk-lang {
  position: relative;
  z-index: 5;
  margin-right: 15px;
}

.lk-lang__pills {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  border-radius: 999px;
}

.lk-lang__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(250, 250, 246, 0.55);
  line-height: 1;
}

.lk-lang__pill:hover {
  color: var(--color-paper);
}

.lk-lang__pill.is-active {
  background: var(--color-accent);
  color: var(--color-ink);
}

.lk-lang__dropdown {
  display: none;
  position: relative;
}

.lk-lang__toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 58px;
  padding: 7px 10px 7px 12px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--color-paper);
  background: rgba(255, 255, 255, 0.07);
}

.lk-lang__current {
  color: var(--color-accent);
}

.lk-lang__chevron {
  color: rgba(250, 250, 246, 0.55);
  transition: transform 0.18s ease;
}

.lk-lang__dropdown.is-open .lk-lang__chevron {
  transform: rotate(180deg);
}

.lk-lang__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 88px;
  margin: 0;
  padding: 6px;
  list-style: none;
  border-radius: 14px;
  z-index: 6;
}

.lk-lang__menu[hidden] {
  display: none;
}

.lk-lang__option {
  display: block;
  padding: 8px 12px;
  border-radius: 10px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(250, 250, 246, 0.65);
  text-align: left;
}

.lk-lang__option:hover {
  color: var(--color-paper);
  background: rgba(255, 255, 255, 0.06);
}

.lk-lang__option.is-active {
  color: var(--color-ink);
  background: var(--color-accent);
}

/* Burger — mobile only */
.lk-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: var(--color-paper);
  cursor: pointer;
}

.lk-burger__bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 16px;
}

.lk-burger__bars span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.lk-menu-close {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: var(--color-paper);
  cursor: pointer;
}

.lk-menu-close[hidden] {
  display: none !important;
}

/* Fullscreen mobile menu */
.lk-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(90% 70% at 80% 0%, rgba(255, 82, 0, 0.14), transparent 55%),
    radial-gradient(80% 60% at 10% 100%, rgba(25, 28, 38, 0.95), transparent 50%),
    #0e1016;
  color: var(--color-paper);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, -10px, 0) scale(0.985);
  transition:
    opacity 0.34s ease,
    visibility 0.34s ease,
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.lk-mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}

.lk-mobile-menu[hidden] {
  display: none;
}

.lk-mobile-menu.is-open[hidden] {
  display: flex;
}

.lk-mobile-menu__top {
  /* Spacer matching header row so menu body starts under the logo */
  flex: none;
  height: 76px;
  pointer-events: none;
}

.lk-mobile-menu__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 8px 28px 48px;
}

.lk-mobile-menu__eyebrow {
  margin: 0 0 18px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--color-accent);
}

.lk-mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lk-mobile-menu__link {
  display: block;
  padding: 12px 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 7.5vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-paper);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateY(14px);
  opacity: 0;
  transition:
    color 0.15s ease,
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.28s ease;
}

.lk-mobile-menu.is-open .lk-mobile-menu__link {
  transform: translateY(0);
  opacity: 1;
}

.lk-mobile-menu.is-open .lk-mobile-menu__link:nth-child(1) {
  transition-delay: 0.06s;
}

.lk-mobile-menu.is-open .lk-mobile-menu__link:nth-child(2) {
  transition-delay: 0.12s;
}

.lk-mobile-menu.is-open .lk-mobile-menu__link:nth-child(3) {
  transition-delay: 0.18s;
}

/* Faster reverse stagger on close */
.lk-mobile-menu:not(.is-open) .lk-mobile-menu__link:nth-child(1) {
  transition-delay: 0.08s;
}

.lk-mobile-menu:not(.is-open) .lk-mobile-menu__link:nth-child(2) {
  transition-delay: 0.04s;
}

.lk-mobile-menu:not(.is-open) .lk-mobile-menu__link:nth-child(3) {
  transition-delay: 0s;
}

.lk-mobile-menu__link:hover,
.lk-mobile-menu__link:focus-visible {
  color: var(--color-accent);
}

body.lk-menu-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .lk-mobile-menu,
  .lk-mobile-menu__link,
  .lk-lang__chevron {
    transition: none;
  }
}

/* ——— Hero ——— */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100dvh;
  overflow: hidden;
  color: var(--color-paper);
  background: radial-gradient(110% 100% at 15% 0%, #191c26, #0e1016);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.hero-bg__layer {
  position: absolute;
  inset: 0;
}

.hero-bg__glow {
  background: radial-gradient(50% 70% at 84% 46%, rgba(255, 82, 0, 0.14), transparent 64%);
  mix-blend-mode: screen;
}

.hero-bg__h {
  background: linear-gradient(
    90deg,
    rgba(14, 16, 22, 0.78) 0%,
    rgba(14, 16, 22, 0.58) 26%,
    rgba(14, 16, 22, 0.28) 52%,
    rgba(14, 16, 22, 0.2) 70%,
    rgba(14, 16, 22, 0.5) 88%,
    rgba(14, 16, 22, 0.7) 100%
  );
}

.hero-bg__v {
  background: linear-gradient(
    0deg,
    rgba(14, 16, 22, 0.88) 4%,
    rgba(14, 16, 22, 0.16) 34%,
    rgba(14, 16, 22, 0.06) 52%,
    rgba(14, 16, 22, 0.2) 82%,
    rgba(14, 16, 22, 0.68) 100%
  );
}

.hero-bg__veil {
  background: rgba(14, 16, 22, 0.06);
}

.hero-bg__m-base,
.hero-bg__m-radial,
.hero-bg__m-y,
.hero-bg__m-x {
  display: none;
}

.hero-bg__noise {
  opacity: 0.5;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.hbody {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  padding: 14px 44px;
}

.eyebrow {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  align-self: flex-start;
  gap: 8px 13px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
}

.eyebrow__city {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(250, 250, 246, 0.82);
}

.eyebrow__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(255, 82, 0, 0.2);
}

.eyebrow__coords {
  color: rgba(250, 250, 246, 0.34);
}

.eyebrow__mode {
  color: var(--color-accent);
}

.h1 {
  margin: 14px 0 0;
  max-width: 820px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(38px, 4.9vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.h1__accent {
  color: var(--color-accent);
}

.lead {
  margin: 30px 0 0;
  max-width: 540px;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(250, 250, 246, 0.68);
}

.cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 38px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 56px;
  padding: 0 19px;
  border-radius: 13px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
}

.badge:hover {
  opacity: 0.9;
  color: #fff;
}

.badge__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1;
}

.badge__small {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.badge__big {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.stats {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: 8px;
}

.cta--no-stores .stats {
  margin-left: 0;
}

.stats__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  line-height: 1;
}

.stats__gt {
  color: var(--color-accent);
}

.stats__label {
  margin-top: 5px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.14em;
  color: rgba(250, 250, 246, 0.55);
}

.stamp-wrap {
  position: absolute;
  top: 330px;
  right: 100px;
  z-index: 2;
  width: 176px;
  height: 176px;
  pointer-events: none;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

.stamp-wrap__motion {
  position: absolute;
  inset: 0;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.stamp-wrap__ring,
.stamp-wrap__dash {
  position: absolute;
  border-radius: 50%;
}

.stamp-wrap__ring {
  inset: 0;
  border: 2px solid rgba(255, 82, 0, 0.7);
}

.stamp-wrap__dash {
  inset: 13px;
  border: 1px dashed rgba(255, 82, 0, 0.75);
}

.stamp-wrap__body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.stamp-wrap__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  line-height: 1.02;
  letter-spacing: 0.01em;
}

.stamp-wrap__love {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 9px;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 9.5px;
  letter-spacing: 0.07em;
  color: rgba(250, 250, 246, 0.72);
}

/* ——— Carousel ——— */
.shelf {
  position: relative;
  z-index: 1;
  padding: 16px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.shelf-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 44px 11px;
}

.shelf-hd__label {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--color-accent);
}

.shelf-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.shelf-nav__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: rgba(250, 250, 246, 0.82);
  cursor: pointer;
  padding: 0;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease, opacity 0.15s ease;
}

.shelf-nav__btn:hover:not(:disabled) {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--color-paper);
  background: rgba(255, 255, 255, 0.05);
}

.shelf-nav__btn:disabled {
  opacity: 0.28;
  cursor: default;
}

.carousel-viewport {
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}

.carousel-viewport.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.track {
  display: flex;
  gap: 16px;
  width: max-content;
  padding: 0 44px;
  will-change: transform;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}

/* Blur on every card kills scroll/composited motion — keep glass look without filter */
.track .gcard.glass {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: rgba(255, 255, 255, 0.1);
}

.gcard {
  flex: none;
  width: 200px;
  border-radius: 14px;
  padding: 11px;
}

.gcard__media {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 9px;
  overflow: hidden;
  background: var(--color-ink);
}

.gcard__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gcard__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14, 16, 22, 0.1) 0%,
    rgba(14, 16, 22, 0) 38%,
    rgba(14, 16, 22, 0.62) 100%
  );
}

.gcard__tint {
  position: absolute;
  inset: 0;
  background: rgba(255, 82, 0, 0.08);
  mix-blend-mode: overlay;
}

.gcard__dist {
  position: absolute;
  left: 8px;
  bottom: 8px;
  background: var(--color-accent);
  color: var(--color-ink);
  padding: 3px 7px;
  border-radius: 5px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 9px;
}

.gcard__meta {
  margin-top: 9px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}

.gcard__name {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  line-height: 1.2;
}

.gcard__id {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 8px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.gcard__loc {
  margin: 0;
  font-size: 11px;
  color: rgba(250, 250, 246, 0.5);
}

/* ——— Legal pages ——— */
.lk-body--page {
  background: radial-gradient(110% 80% at 12% 0%, #191c26 0%, #0e1016 55%, #0e1016 100%);
}

.lk-shell {
  position: relative;
  min-height: calc(100dvh - 90px);
}

.lk-shell__noise {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.lk-legal {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 16px 24px 80px;
}

.lk-legal__updated {
  margin: 0;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.lk-legal__title {
  margin: 16px 0 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.lk-legal__intro {
  margin: 24px 0 0;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(250, 250, 246, 0.72);
}

.lk-legal__sections {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.lk-legal__section h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.lk-legal__section p {
  margin: 16px 0 0;
  font-size: 16.5px;
  line-height: 1.75;
  color: rgba(250, 250, 246, 0.78);
}

.lk-legal__footer {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  font-size: 14px;
  font-weight: 600;
}

.lk-legal__footer a {
  color: rgba(250, 250, 246, 0.72);
}

.lk-legal__footer a:hover,
.lk-legal__footer-accent {
  color: var(--color-accent);
}

.lk-legal__footer-accent:hover {
  color: var(--color-accent-hover);
}

/* ——— Responsive ——— */
@media (max-width: 860px) {
  .lk-header__inner {
    padding: 18px 24px;
    flex-wrap: nowrap;
    gap: 12px;
  }

  .lk-mobile-menu__top {
    height: 76px;
  }

  .hero {
    height: auto;
    min-height: 100dvh;
    overflow: visible;
  }

  .hero-bg__img {
    object-position: 55% 42%;
  }

  .hero-bg__glow,
  .hero-bg__h,
  .hero-bg__v,
  .hero-bg__veil {
    display: none;
  }

  .hero-bg__m-base,
  .hero-bg__m-radial,
  .hero-bg__m-y,
  .hero-bg__m-x {
    display: block;
  }

  .hero-bg__m-base {
    background: rgba(14, 16, 22, 0.52);
  }

  .hero-bg__m-radial {
    background: radial-gradient(
      ellipse 58% 52% at 50% 44%,
      rgba(14, 16, 22, 0.12) 0%,
      rgba(14, 16, 22, 0.22) 34%,
      rgba(14, 16, 22, 0.55) 62%,
      rgba(14, 16, 22, 0.9) 100%
    );
  }

  .hero-bg__m-y {
    background: linear-gradient(
      180deg,
      rgba(14, 16, 22, 0.9) 0%,
      rgba(14, 16, 22, 0.4) 22%,
      rgba(14, 16, 22, 0.12) 42%,
      rgba(14, 16, 22, 0.12) 58%,
      rgba(14, 16, 22, 0.48) 78%,
      rgba(14, 16, 22, 0.94) 100%
    );
  }

  .hero-bg__m-x {
    background: linear-gradient(
      90deg,
      rgba(14, 16, 22, 0.85) 0%,
      rgba(14, 16, 22, 0.35) 18%,
      rgba(14, 16, 22, 0.1) 35%,
      rgba(14, 16, 22, 0.1) 65%,
      rgba(14, 16, 22, 0.35) 82%,
      rgba(14, 16, 22, 0.85) 100%
    );
  }

  .hero-bg__noise {
    opacity: 0.35;
  }

  .stamp-wrap {
    display: none;
  }

  .hbody {
    flex: none;
    padding: 32px 24px 36px;
  }

  .h1 {
    margin-top: 20px;
    font-size: clamp(34px, 6.4vw, 56px);
  }

  .lead {
    margin-top: 26px;
    font-size: 17px;
    line-height: 1.62;
  }

  .cta {
    margin-top: 34px;
  }

  .shelf-hd,
  .track {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 860px) {
  .lk-nav--desktop {
    display: none;
  }

  .lk-burger {
    display: inline-flex;
  }

  .lk-header__actions {
    gap: 10px;
  }

  .lk-lang {
    margin-right: 0;
  }

  .lk-lang__pills {
    display: none;
  }

  .lk-lang__dropdown {
    display: block;
  }
}

@media (max-width: 560px) {
  .lk-header__inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .lk-mobile-menu__top {
    height: 70px;
  }

  .hbody {
    padding: 28px 20px 48px;
  }

  .eyebrow {
    gap: 10px 13px;
    row-gap: 10px;
  }

  .h1 {
    margin-top: 22px;
    font-size: clamp(28px, 8.6vw, 42px);
    line-height: 1.02;
  }

  .lead {
    margin-top: 28px;
    font-size: 16px;
    line-height: 1.65;
  }

  .cta {
    margin-top: 36px;
    gap: 14px;
  }

  .badge {
    flex: 0 0 auto;
    width: 164px;
    height: auto;
    justify-content: center;
    gap: 9px;
    padding: 12px 13px;
    border-radius: 12px;
  }

  .badge svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
  }

  .badge__text {
    min-width: 0;
  }

  .badge__small {
    font-size: 9px;
  }

  .badge__big {
    font-size: 15px;
    white-space: nowrap;
  }

  .stats {
    width: 100%;
    margin-left: 0;
    margin-top: 22px;
    gap: 28px;
  }

  .shelf {
    padding-top: 36px;
    padding-bottom: calc(40px + env(safe-area-inset-bottom, 0px));
  }

  .shelf-hd {
    padding-bottom: 20px;
  }

  .shelf-hd,
  .track {
    padding-left: 20px;
    padding-right: 20px;
  }

  .track {
    gap: 12px;
  }

  .gcard {
    width: 158px;
  }

  .lk-legal {
    padding-left: 20px;
    padding-right: 20px;
  }

  .lk-legal__section h2 {
    font-size: 20px;
  }

  .lk-legal__section p {
    font-size: 15.5px;
  }
}

@media (max-width: 400px) {
  .h1 {
    font-size: clamp(26px, 8.4vw, 36px);
  }

  .lk-logo__word {
    font-size: 15px;
  }
}

@media (max-height: 760px) {
  .hero-lock {
    height: auto;
    min-height: 100vh;
    overflow: visible;
  }

  .hbody {
    flex: none;
    justify-content: flex-start;
    padding-top: 28px;
    padding-bottom: 28px;
  }
}

@media (max-width: 560px) and (max-height: 760px) {
  .hbody {
    padding-bottom: 44px;
  }
}

/* ——— Blog / Wiedza ——— */
.lk-blog {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px 24px 88px;
}

.lk-blog__hero {
  max-width: 640px;
  margin-bottom: 40px;
}

.lk-blog__eyebrow,
.lk-article__eyebrow {
  margin: 0 0 14px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--color-accent);
  text-transform: uppercase;
}

.lk-article__eyebrow a {
  color: inherit;
}

.lk-article__eyebrow a:hover {
  color: var(--color-accent-hover);
}

.lk-blog__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 5.5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.lk-blog__lead {
  margin: 16px 0 0;
  max-width: 520px;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(250, 250, 246, 0.62);
}

.lk-blog__empty {
  padding: 48px 0;
  color: rgba(250, 250, 246, 0.55);
}

.lk-blog__featured {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.lk-blog__featured-media,
.lk-blog__card-media {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--color-ink);
}

.lk-blog__featured-media {
  min-height: 320px;
}

.lk-blog__featured-media img,
.lk-blog__card-media img,
.lk-article__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0.28) contrast(1.05) brightness(0.92) saturate(0.88);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s ease;
}

.lk-blog__featured:hover .lk-blog__featured-media img,
.lk-blog__card:hover .lk-blog__card-media img {
  transform: scale(1.04);
  filter: grayscale(0.1) contrast(1.06) brightness(0.95) saturate(1);
}

.lk-blog__featured-shade,
.lk-blog__card-shade,
.lk-article__hero-fade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(14, 16, 22, 0.05) 0%,
    rgba(14, 16, 22, 0.15) 45%,
    rgba(14, 16, 22, 0.55) 100%
  );
}

.lk-blog__media-fallback {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  background:
    radial-gradient(60% 70% at 70% 30%, rgba(255, 82, 0, 0.28), transparent 60%),
    linear-gradient(160deg, #191c26, #0e1016);
}

.lk-blog__featured-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 34px;
}

.lk-blog__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(250, 250, 246, 0.45);
}

.lk-blog__chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 82, 0, 0.14);
  color: var(--color-accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lk-blog__featured-title,
.lk-blog__card-title {
  margin: 14px 0 0;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.lk-blog__featured-title {
  font-size: clamp(28px, 3.2vw, 38px);
}

.lk-blog__featured-title a,
.lk-blog__card-title a {
  color: var(--color-paper);
}

.lk-blog__featured-title a:hover,
.lk-blog__card-title a:hover {
  color: var(--color-accent-hover);
}

.lk-blog__excerpt {
  margin: 14px 0 0;
  font-size: 15.5px;
  line-height: 1.55;
  color: rgba(250, 250, 246, 0.58);
}

.lk-blog__excerpt--sm {
  font-size: 14px;
  line-height: 1.5;
}

.lk-blog__read {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.lk-blog__read:hover {
  color: var(--color-accent-hover);
}

.lk-blog__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.lk-blog__card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  transition: border-color 0.2s ease, transform 0.25s ease;
}

.lk-blog__card:hover {
  border-color: rgba(255, 82, 0, 0.35);
  transform: translateY(-2px);
}

.lk-blog__card-media {
  aspect-ratio: 16 / 11;
}

.lk-blog__card-body {
  padding: 18px 18px 20px;
}

.lk-blog__card-title {
  font-size: 20px;
}

.lk-blog__pager {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.lk-blog__pager-link {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(250, 250, 246, 0.7);
}

.lk-blog__pager-link:hover {
  color: var(--color-accent);
}

.lk-blog__pager-link.is-disabled {
  opacity: 0.28;
  pointer-events: none;
}

.lk-blog__pager-status {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(250, 250, 246, 0.4);
}

.lk-blog__footer {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.lk-blog__footer a {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(250, 250, 246, 0.55);
}

.lk-blog__footer a:hover {
  color: var(--color-accent);
}

/* App download banner (in-article) */
.lk-app-banner {
  position: relative;
  margin: 44px 0 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 82, 0, 0.35);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 82, 0, 0.14) 0%, rgba(14, 16, 22, 0.2) 42%, rgba(255, 255, 255, 0.03) 100%),
    #141822;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.lk-app-banner__glow {
  position: absolute;
  inset: -40% -20% auto auto;
  width: 70%;
  height: 140%;
  background: radial-gradient(circle at 70% 30%, rgba(255, 82, 0, 0.28), transparent 62%);
  pointer-events: none;
}

.lk-app-banner__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 28px;
  align-items: center;
  padding: 28px 28px 30px;
}

.lk-app-banner__eyebrow {
  margin: 0 0 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--color-accent);
}

.lk-app-banner__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.lk-app-banner__text {
  margin: 12px 0 0;
  max-width: 46ch;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(250, 250, 246, 0.68);
}

.lk-app-banner__points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.lk-app-banner__points li {
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(250, 250, 246, 0.72);
  background: rgba(0, 0, 0, 0.18);
}

.lk-app-banner__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-width: 200px;
  padding: 16px 18px;
  border-radius: 14px;
  background: var(--color-accent);
  color: #140c08;
  box-shadow: 0 10px 28px rgba(255, 82, 0, 0.28);
  transition: background 0.2s ease, transform 0.2s ease;
}

.lk-app-banner__cta:hover {
  background: var(--color-accent-hover);
  color: #140c08;
  transform: translateY(-2px);
}

.lk-app-banner__cta-label {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.lk-app-banner__cta-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.72;
}

@media (max-width: 720px) {
  .lk-app-banner__inner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 22px 18px 22px;
  }

  .lk-app-banner__cta {
    width: 100%;
  }
}

/* Single article */
.lk-article {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 20px 24px 96px;
}

.lk-article__header {
  max-width: 680px;
}

.lk-article__meta {
  margin-bottom: 18px;
}

.lk-article__readtime {
  color: rgba(250, 250, 246, 0.35);
}

.lk-article__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 5.2vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.lk-article__deck {
  margin: 18px 0 0;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(250, 250, 246, 0.6);
}

.lk-article__hero {
  position: relative;
  margin: 34px 0 40px;
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 16 / 9;
  background: var(--color-ink);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.lk-article__content {
  max-width: 640px;
  font-size: 17px;
  line-height: 1.72;
  color: rgba(250, 250, 246, 0.78);
}

.lk-article__content > *:first-child {
  margin-top: 0;
}

.lk-article__content p,
.lk-article__content ul,
.lk-article__content ol {
  margin: 0 0 1.15em;
}

.lk-article__content h2,
.lk-article__content h3 {
  margin: 1.6em 0 0.55em;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-paper);
  line-height: 1.15;
}

.lk-article__content h2 {
  font-size: 1.55em;
}

.lk-article__content h3 {
  font-size: 1.25em;
}

.lk-article__content a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lk-article__content a:hover {
  color: var(--color-accent-hover);
}

.lk-article__content blockquote {
  margin: 1.6em 0;
  padding: 4px 0 4px 18px;
  border-left: 3px solid var(--color-accent);
  color: rgba(250, 250, 246, 0.88);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15em;
  line-height: 1.35;
  letter-spacing: -0.015em;
}

.lk-article__content figure {
  margin: 1.6em 0;
}

.lk-article__content figure.lk-inline {
  margin: 1.8em 0;
}

.lk-article__content figure.lk-inline figcaption {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(250, 250, 246, 0.4);
}

.lk-article__content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.lk-article__content ul,
.lk-article__content ol {
  padding-left: 1.2em;
}

.lk-article__footer {
  margin-top: 52px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.lk-article__back {
  display: inline-flex;
  margin-bottom: 28px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(250, 250, 246, 0.55);
}

.lk-article__back:hover {
  color: var(--color-accent);
}

.lk-article__adjacent {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.lk-article__adj {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--color-paper);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.lk-article__adj:hover {
  border-color: rgba(255, 82, 0, 0.4);
  background: rgba(255, 82, 0, 0.06);
  color: var(--color-paper);
}

.lk-article__adj span {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.lk-article__adj strong {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.lk-article__adj--next {
  text-align: right;
  grid-column: 2;
}

.lk-article__adj--prev {
  grid-column: 1;
}

@media (max-width: 860px) {
  .lk-blog__featured {
    grid-template-columns: 1fr;
  }

  .lk-blog__featured-media {
    min-height: 240px;
    aspect-ratio: 16 / 10;
  }

  .lk-blog__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .lk-blog,
  .lk-article {
    padding: 12px 20px 72px;
  }

  .lk-blog__hero {
    margin-bottom: 28px;
  }

  .lk-blog__featured-body {
    padding: 22px 18px 24px;
  }

  .lk-blog__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .lk-article__hero {
    margin: 26px -4px 32px;
    border-radius: 14px;
  }

  .lk-article__content {
    font-size: 16px;
  }

  .lk-article__adjacent {
    grid-template-columns: 1fr;
  }

  .lk-article__adj--next,
  .lk-article__adj--prev {
    grid-column: auto;
    text-align: left;
  }
}

/* ——— Contact ——— */
.lk-contact {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  margin: 0 auto;
  padding: 20px 24px 88px;
}

.lk-contact__hero {
  max-width: 560px;
  margin-bottom: 36px;
}

.lk-contact__eyebrow {
  margin: 0 0 14px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--color-accent);
  text-transform: uppercase;
}

.lk-contact__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 5.5vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.lk-contact__lead {
  margin: 14px 0 0;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(250, 250, 246, 0.62);
}

.lk-contact__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 22px;
  align-items: start;
}

.lk-contact__aside {
  display: grid;
  gap: 12px;
}

.lk-contact__card {
  padding: 18px 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.lk-contact__card-label {
  margin: 0 0 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 250, 246, 0.42);
}

.lk-contact__card-value {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-accent);
}

.lk-contact__card-value:hover {
  color: var(--color-accent-hover);
}

.lk-contact__card-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  color: rgba(250, 250, 246, 0.72);
}

.lk-contact__topics {
  margin: 0;
  padding: 0 0 0 1.1em;
  color: rgba(250, 250, 246, 0.72);
  font-size: 15px;
  line-height: 1.55;
}

.lk-contact__panel {
  padding: 26px 26px 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(160deg, rgba(255, 82, 0, 0.08), transparent 42%),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.lk-contact__flash {
  margin-bottom: 20px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.45;
}

.lk-contact__flash strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-display);
  font-size: 16px;
}

.lk-contact__flash ul {
  margin: 6px 0 0;
  padding-left: 1.1em;
}

.lk-contact__flash--ok {
  border: 1px solid rgba(88, 200, 120, 0.35);
  background: rgba(88, 200, 120, 0.1);
  color: rgba(220, 255, 230, 0.92);
}

.lk-contact__flash--err {
  border: 1px solid rgba(255, 100, 90, 0.4);
  background: rgba(255, 80, 70, 0.1);
  color: rgba(255, 220, 215, 0.95);
}

.lk-contact__form {
  display: grid;
  gap: 16px;
}

.lk-contact__honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.lk-contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.lk-contact__field {
  display: grid;
  gap: 8px;
}

.lk-contact__field span {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250, 250, 246, 0.5);
}

.lk-contact__field input,
.lk-contact__field select,
.lk-contact__field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(8, 10, 14, 0.55);
  color: var(--color-paper);
  font: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.lk-contact__field textarea {
  resize: vertical;
  min-height: 150px;
  line-height: 1.5;
}

.lk-contact__field input:focus,
.lk-contact__field select:focus,
.lk-contact__field textarea:focus {
  border-color: rgba(255, 82, 0, 0.65);
  background: rgba(8, 10, 14, 0.75);
}

.lk-contact__field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(250, 250, 246, 0.55) 50%),
    linear-gradient(135deg, rgba(250, 250, 246, 0.55) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 2px),
    calc(100% - 12px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 36px;
}

.lk-contact__field select option {
  background: #141822;
  color: var(--color-paper);
}

.lk-contact__consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(250, 250, 246, 0.62);
}

.lk-contact__consent input {
  margin-top: 3px;
  accent-color: var(--color-accent);
}

.lk-contact__consent a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lk-contact__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
  padding: 15px 20px;
  border: 0;
  border-radius: 14px;
  background: var(--color-accent);
  color: #140c08;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(255, 82, 0, 0.28);
  transition: background 0.2s ease, transform 0.2s ease;
}

.lk-contact__submit:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
}

.lk-contact__footer {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.lk-contact__footer a {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(250, 250, 246, 0.55);
}

.lk-contact__footer a:hover {
  color: var(--color-accent);
}

@media (max-width: 860px) {
  .lk-contact__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .lk-contact {
    padding: 12px 20px 72px;
  }

  .lk-contact__row {
    grid-template-columns: 1fr;
  }

  .lk-contact__panel {
    padding: 20px 16px 22px;
  }

  .lk-contact__submit {
    width: 100%;
  }
}
