/*
Theme Name: Teimurazov Psychologist
Theme URI: https://teimurazov.com
Author: Ivan
Description: Custom one-page theme for psychologist / psychotherapist / coach in Tbilisi.
Version: 1.1 (cleaned)
Text Domain: teimurazov-psychology
*/

/* --------------------------------------------------------------
   FONTS
   -------------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=DM+Sans:wght@400;500;600;700&display=swap");

/* --------------------------------------------------------------
   DESIGN TOKENS
   -------------------------------------------------------------- */

:root {
  /* Ink / dark neutrals */
  --nk-ink-950: #020307;
  --nk-ink-900: #05070d;
  --nk-ink-800: #080b14;
  --nk-ink-700: #101421;
  --nk-ink-600: #171c2a;
  --nk-ink-400: #9ca3af;
  --nk-ink-300: #d1d5db;
  --nk-ink-100: #f9fafb;

  /* Gold (primary accent) */
  --nk-gold-300: #f7d58b;
  --nk-gold-400: #f4c96b;
  --nk-gold-500: #f2b54b;

  /* Emerald / success */
  --nk-emerald-300: #5fe3a0;
  --nk-emerald-500: #31b37a;

  /* Scarlet / negative */
  --nk-scarlet-300: #f29b9b;
  --nk-scarlet-500: #e15252;

  --nk-radius-card: 28px;
  --nk-radius-pill: 999px;

  --nk-shadow-card: 0 28px 80px rgba(0, 0, 0, 0.68);
  --nk-shadow-gold: 0 14px 34px rgba(242, 181, 75, 0.28);

 /* Page background / text */
--nk-page-bg:
  linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.00) 0%,
    rgba(0, 0, 10, 0.35) 55%,
    rgba(0, 0, 12, 0.80) 100%
  ),
  /* светлое золото в левом верхнем углу */
  radial-gradient(circle at 10% 8%,  rgba(254, 243, 199, 0.15), transparent 55%),
  radial-gradient(circle at 75% 15%, rgba(15, 23, 42, 0.95),  transparent 60%),
  radial-gradient(circle at 12% 82%, rgba(15, 23, 42, 0.9),   transparent 60%),
  radial-gradient(circle at 88% 92%, rgba(15, 23, 42, 0.95),  transparent 60%),
  radial-gradient(circle at 50% 40%, rgba(30, 64, 175, 0.12), transparent 60%),
  linear-gradient(150deg, #020309 0%, #020515 45%, #02030c 100%);
--nk-page-text: #f8fafc;

}

/* --------------------------------------------------------------
   BASE
   -------------------------------------------------------------- */

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--nk-page-bg);
  color: var(--nk-page-text);
  padding-top: 78px;  /* можно убрать */
  
}


.nk-landing {
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--nk-ink-100);
  background: transparent;
  min-height: 100vh;
}

.nk-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.75rem;
}

.nk-heading-display {
  font-family: "Playfair Display", "DM Sans", system-ui, serif;
}

.nk-muted {
  color: var(--nk-ink-400);
}

/* --------------------------------------------------------------
   BUTTONS
   -------------------------------------------------------------- */

.nk-btn-primary,
.nk-btn-primary-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--nk-radius-pill);
  border: none;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  background: linear-gradient(135deg, #f2b54b, #f4c96b);
  color: var(--nk-ink-900);
  box-shadow: var(--nk-shadow-gold);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
  white-space: nowrap;
  text-decoration: none;
}

.nk-btn-primary {
  padding: 0.75rem 1.75rem;
  font-size: 11px;
}

.nk-btn-primary-small {
  padding: 0.5rem 1.25rem;
  font-size: 10px;
}

.nk-btn-primary:hover,
.nk-btn-primary-small:hover {
  transform: translateY(-1px) scale(1.01);
  background: linear-gradient(135deg, #f2b54b, #f7d58b);
}

.nk-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--nk-radius-pill);
  padding: 0.75rem 1.75rem; /* как у .nk-btn-primary */
  font-size: 11px;          /* как у .nk-btn-primary */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  border: 1px solid var(--nk-ink-600);
  background: rgba(5, 7, 13, 0.9);
  color: var(--nk-ink-100);
  text-decoration: none;
  transition:
    border-color 0.15s ease,
    background 0.15s ease,
    transform 0.15s ease;
}

.nk-btn-secondary:hover {
  border-color: var(--nk-ink-400);
  background: rgba(5, 7, 13, 0.7);
  transform: translateY(-1px);
}

/* --------------------------------------------------------------
   NAVBAR
   -------------------------------------------------------------- */

.nk-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #0c0e14;
  border-bottom: none;
  backdrop-filter: blur(18px);
}


.nk-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.75rem;
  position: relative;
}

.nk-nav-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* logo */

.nk-logo-circle {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(242, 181, 75, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  color: var(--nk-gold-400);
  font-size: 1.1rem;
}

.nk-logo-text-top {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--nk-ink-400);
}

.nk-logo-text-bottom {
  font-family: "Playfair Display", serif;
  font-size: 14px;
}

/* logo image */

.nk-logo-img {
  display: block;
  height: 40px;
  width: auto;
  object-fit: contain;
  object-position: center;
}

@media (min-width: 768px) {
  .nk-logo-img {
    height: 46px;
  }
}

/* язык / разделитель */

.nk-nav-divider {
  width: 100%;
  height: 1px;
  background: rgba(148, 163, 184, 0.3);
  margin: 1.1rem 0 0.9rem;
}

.nk-nav-lang {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--nk-ink-400);
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}

.nk-nav-lang--active {
  color: var(--nk-ink-100);
}

/* CTA только на мобиле */
.nk-nav-cta-mobile {
  display: inline-flex;
}

/* --------------------------------------------------------------
   NAV MENU LIST
   -------------------------------------------------------------- */

.nk-nav-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.nk-nav-menu-list li {
  margin: 0;
  padding: 0;
}

.nk-nav-menu-list a {
  text-decoration: none;
  color: var(--nk-ink-300);
  font-size: 13px;
  transition: color 0.18s ease;
  display: block;
  padding: 0.1rem 0;
}

.nk-nav-menu-list a:hover {
  color: var(--nk-ink-100);
}

.nk-nav-menu-list .current-menu-item > a,
.nk-nav-menu-list .current_page_item > a {
  color: var(--nk-ink-100);
  font-weight: 500;
}

/* --------------------------------------------------------------
   MOBILE NAV TOGGLE + PANEL
   -------------------------------------------------------------- */

.nk-nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 32px;
  height: 32px;
  margin-left: auto;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(5, 7, 13, 0.9);
  padding: 0;
  cursor: pointer;
}

.nk-nav-toggle span {
  display: block;
  height: 2px;
  width: 16px;
  margin: 0 auto;
  border-radius: 999px;
  background: #e5e7eb;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

/* анимация в "крестик" */

.nk-nav.nk-nav--open .nk-nav-toggle span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.nk-nav.nk-nav--open .nk-nav-toggle span:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}

.nk-nav.nk-nav--open .nk-nav-toggle span:nth-child(3) {
  opacity: 0;
}

/* панель */

.nk-nav-menu {
  position: absolute;
  top: calc(100% + 14px);
  right: 1.75rem;
  left: 1.75rem;
  padding: 1.4rem 1.5rem 1.6rem;
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(5, 7, 13, 0.98);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.85);
  display: none;
  flex-direction: column;
  gap: 0.9rem;
  z-index: 60;
  font-size: 13px;
  color: var(--nk-ink-300);
}

.nk-nav.nk-nav--open .nk-nav-menu {
  display: flex;
}

/* активный язык */
.nk-nav-menu .nk-nav-lang {
  display: inline-block;
  margin: 0.35rem 0;
  font-size: 10px;
  text-align: center;
}

.nk-nav-menu .nk-nav-lang--active {
  position: relative;
}

.nk-nav-menu .nk-nav-lang--active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.25rem;
  transform: translateX(-50%);
  width: 10px;
  height: 1px;
  border-radius: 999px;
  background: var(--nk-gold-400);
}

/* CTA внутри мобильного меню */

.nk-nav-menu .nk-btn-primary {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 230px;
  margin: 1.6rem auto 0;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;

  font-size: 12px;
  letter-spacing: 0.12em;
  font-weight: 500;

  background: linear-gradient(
    180deg,
    #f0c06f 0%,
    #e5a84d 45%,
    #d9963c 100%
  );
  color: #1a1a1a;

  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.45),
    0 0 14px rgba(255, 200, 90, 0.35),
    inset 0 1px 3px rgba(255, 255, 255, 0.55),
    inset 0 -2px 4px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.18s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}

.nk-nav-menu .nk-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.55),
    0 0 18px rgba(255, 200, 90, 0.45),
    inset 0 1px 3px rgba(255, 255, 255, 0.6);
}

.nk-nav-menu .nk-btn-primary:active {
  transform: translateY(1px) scale(0.98);
  box-shadow:
    0 3px 12px rgba(0, 0, 0, 0.45),
    0 0 10px rgba(255, 200, 90, 0.25);
}

/* DESKTOP NAV OVERRIDES */

@media (min-width: 768px) {
  .nk-nav-toggle {
    display: none;
  }

  .nk-nav-inner {
    align-items: center;
  }

  .nk-nav-menu {
    position: static;
    padding: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
    background: transparent;
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 1.75rem;
  }

  .nk-nav-menu-list {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }

  .nk-nav-divider {
    width: 1px;
    height: 16px;
    margin: 0;
    background: rgba(148, 163, 184, 0.5);
  }

  .nk-nav-menu .nk-btn-primary {
    width: auto;
    margin: 0;
  }

  .nk-nav-cta-mobile {
    display: none;
  }
}

/* --------------------------------------------------------------
   HERO
   -------------------------------------------------------------- */

.nk-hero {
  padding: 3.5rem 0 2.75rem;
}

.nk-hero-inner {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 3rem;
}

@media (min-width: 900px) {
  .nk-hero-inner {
    flex-direction: row;
    align-items: center;
    gap: 3.5rem;
  }
}

.nk-hero-text {
  flex: 1 1 0;
  max-width: 520px;
}


.nk-hero-title {
  margin-top: 1.5rem;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.18;
  color: var(--nk-page-text);
}

@media (min-width: 768px) {
  .nk-hero-title {
    font-size: 40px;
  }
}

/* на главном hero — точно показать заголовок */
#hero-main .nk-hero-title {
  display: block;
  opacity: 1;
  visibility: visible;
}

.nk-hero-title span {
  color: var(--nk-gold-400);
}

.nk-hero-sub {
  margin-top: 0.75rem;
  font-size: 15px;
  line-height: 1.6;
  color: var(--nk-ink-300);
}

.nk-hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.nk-hero-badges {
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .nk-hero-badges {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.nk-badge-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: 0.9rem 1rem;
}

.nk-badge-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.35rem;
}

.nk-badge-title--red {
  color: var(--nk-scarlet-300);
}

.nk-badge-title--green {
  color: var(--nk-emerald-300);
}

.nk-badge-title--neutral {
  color: var(--nk-ink-400);
}

.nk-badge-text {
  font-size: 14px;
  color: var(--nk-ink-100);
}

/* hero image */

.nk-hero-figure {
  flex: 1 1 0;
  display: flex;
  justify-content: center;
}

/* аккуратная рамка с фото */

.nk-hero-photo-frame {
  position: relative;
  width: 340px;
  max-width: 100%;
  aspect-ratio: 3 / 4;
}

.nk-hero-photo-bg {
  position: absolute;
  inset: 0;
  border-radius: 40px;
  background: linear-gradient(
    180deg,
    rgba(30, 64, 175, 0.4),
    rgba(15, 23, 42, 0.96)
  );
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.85);
}

.nk-hero-photo-inner {
  position: absolute;
  inset: 20px 22px 0;
  border-radius: 32px;
  overflow: hidden;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.nk-hero-photo-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* мобилка: не режем голову, низ почти впритык */

@media (max-width: 640px) {
  .nk-hero-photo-inner {
    inset: 12px 16px 0;
    align-items: flex-end;
  }

  .nk-hero-photo-inner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

/* --------------------------------------------------------------
   GENERIC SECTION
   -------------------------------------------------------------- */

.nk-section {
  padding: 3rem 0;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.nk-section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.nk-section-kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--nk-ink-400);
  margin-bottom: 0.5rem;
}

.nk-section-title {
  font-family: "Playfair Display", serif;
  font-size: 28px;
}

@media (min-width: 768px) {
  .nk-section-title {
    font-size: 32px;
  }
}

.nk-section-sub {
  margin-top: 0.75rem;
  font-size: 15px;
  color: var(--nk-ink-300);
}

/* --------------------------------------------------------------
   CARD / GLASS
   -------------------------------------------------------------- */

.nk-with-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .nk-with-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.nk-card {
  position: relative;
  border-radius: var(--nk-radius-card);
  padding: 1.5rem 1.6rem;
  overflow: hidden;
}

.nk-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(148, 163, 184, 0.06),
    transparent 60%
  );
  opacity: 0.9;
  pointer-events: none;
}

.nk-card-inner {
  position: relative;
  z-index: 1;
}

.nk-card-kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-bottom: 0.75rem;
}

.nk-card-kicker--red {
  color: var(--nk-scarlet-300);
}

.nk-card-kicker--green {
  color: var(--nk-emerald-300);
}

.nk-card-list {
  font-size: 15px;
  color: var(--nk-ink-100);
  margin-bottom: 0.75rem;
}

.nk-card-list li {
  margin-bottom: 0.3rem;
}

.nk-card-foot {
  font-size: 13px;
  color: var(--nk-ink-400);
}

/* glass для основных карточек */

.nk-card,
.nk-service-card,
.nk-fee-card,
.nk-book-card,
.nk-process-aside {
  background: rgba(7, 12, 28, 0.78);
  border-radius: var(--nk-radius-card);
  border: 1px solid rgba(148, 163, 184, 0.55);
  backdrop-filter: blur(18px) saturate(130%);
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.75),
    0 0 24px rgba(248, 250, 252, 0.03);
}

/* --------------------------------------------------------------
   PROCESS TIMELINE ("How we work together")
   -------------------------------------------------------------- */

.nk-process-layout {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 960px) {
  .nk-process-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: start;
  }
}

.nk-timeline {
  position: relative;
  padding-left: 2.25rem;
  border-left: 1px solid rgba(148, 163, 184, 0.6);
}

.nk-step {
  position: relative;
  margin-bottom: 1.9rem;
}

.nk-step:last-child {
  margin-bottom: 0;
}

.nk-step-circle {
  position: absolute;
  left: -2.2rem;
  top: 0;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(242, 181, 75, 0.7);
  background: #020307;
  color: var(--nk-gold-300);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.7);
}

.nk-step-title {
  font-family: "Playfair Display", serif;
  font-size: 18px;
}

.nk-step-sub {
  margin-top: 0.15rem;
  font-size: 15px;
  color: var(--nk-emerald-300);
}

.nk-step-text {
  margin-top: 0.4rem;
  font-size: 15px;
  color: var(--nk-ink-300);
  line-height: 1.6;
}

.nk-process-aside {
  padding: 1.6rem 1.7rem;
}

.nk-process-aside p {
  font-size: 15px;
  color: var(--nk-ink-300);
  margin-bottom: 0.6rem;
}

.nk-process-aside p:last-child {
  margin-bottom: 0;
}

/* --------------------------------------------------------------
   SERVICES
   -------------------------------------------------------------- */

.nk-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .nk-services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.nk-service-card {
  padding: 1.4rem 1.5rem;
}

.nk-service-kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--nk-ink-400);
  margin-bottom: 0.4rem;
}

.nk-service-title {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 0.4rem;
}

.nk-service-text {
  font-size: 14px;
  color: var(--nk-ink-300);
}

/* --------------------------------------------------------------
   FEES
   -------------------------------------------------------------- */

.nk-fees-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.7rem;
}

@media (min-width: 900px) {
  .nk-fees-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.nk-fee-card {
  position: relative;
  padding: 1.6rem 1.7rem;
  overflow: hidden;
}

.nk-fee-card--primary::before,
.nk-fee-card--secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.nk-fee-card--primary::before {
  background: radial-gradient(
    circle at top left,
    rgba(242, 181, 75, 0.18),
    transparent 60%
  );
}

.nk-fee-card--secondary::before {
  background: radial-gradient(
    circle at top,
    rgba(148, 163, 184, 0.18),
    transparent 60%
  );
}

.nk-fee-inner {
  position: relative;
  z-index: 1;
}

.nk-fee-kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--nk-ink-400);
  margin-bottom: 0.7rem;
}

.nk-fee-price {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  color: var(--nk-gold-400);
  margin-bottom: 0.4rem;
}

.nk-fee-price span {
  font-size: 22px;
  vertical-align: text-top;
}

.nk-fee-text {
  font-size: 14px;
  color: var(--nk-ink-300);
  margin-bottom: 0.6rem;
}

.nk-fee-list {
  font-size: 14px;
  color: var(--nk-ink-300);
  margin-bottom: 0.9rem;
}

.nk-fee-list li {
  margin-bottom: 0.25rem;
}

/* --------------------------------------------------------------
   SIMPLE BOOKING CARDS
   -------------------------------------------------------------- */

.nk-book-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .nk-book-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.nk-book-card {
  padding: 1.5rem 1.6rem;
}

.nk-book-kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--nk-ink-400);
  margin-bottom: 0.6rem;
}

.nk-book-title {
  font-size: 15px;
  color: var(--nk-ink-100);
  margin-bottom: 0.5rem;
}

.nk-book-text {
  font-size: 14px;
  color: var(--nk-ink-300);
  margin-bottom: 0.7rem;
}

.nk-book-email {
  font-size: 15px;
  font-weight: 600;
  color: var(--nk-gold-300);
}

/* --------------------------------------------------------------
   BOOKING FLOW – PREMIUM
   -------------------------------------------------------------- */

.nk-booking-flow {
  max-width: 820px;
  margin: 0 auto;
}

.nk-booking-flow--premium {
  position: relative;
}

.nk-booking-flow--premium::before {
  content: "";
  position: absolute;
  inset: -80px -120px auto;
  background: radial-gradient(
    circle at top,
    rgba(245, 208, 90, 0.12),
    transparent 60%
  );
  pointer-events: none;
  z-index: -1;
}

.nk-booking-header {
  text-align: left;
  margin-bottom: 3rem;
}

.nk-booking-steps {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nk-booking-step {
  display: flex;
  gap: 1.6rem;
  align-items: flex-start;
  padding: 1.9rem 1.8rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.03),
      rgba(5, 7, 13, 0.98)
    );
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.55);
  margin-bottom: 1.25rem;
  backdrop-filter: blur(18px);
}

.nk-booking-step-icon {
  flex: 0 0 auto;
}

.nk-booking-step-icon-inner {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(
      circle at 30% 0,
      rgba(250, 204, 21, 0.28),
      rgba(15, 23, 42, 1)
    );
  border: 1px solid rgba(248, 250, 252, 0.18);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6);
}

.nk-booking-step-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.nk-booking-step-body {
  flex: 1;
}

.nk-booking-step-label {
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 0.25rem;
}

.nk-booking-step-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
}

.nk-booking-step-sub {
  margin: 0 0 0.45rem;
  font-weight: 500;
}

.nk-booking-step-text {
  margin: 0;
  opacity: 0.9;
}

/* разделитель между шагами */

.nk-booking-separator {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: -0.4rem 0 1.1rem;
  pointer-events: none;
}

.nk-booking-separator-line {
  display: block;
  width: 1px;
  height: 40px;
  border-radius: 999px;
  background: linear-gradient(
    to bottom,
    rgba(148, 163, 184, 0.55),
    rgba(15, 23, 42, 0)
  );
  opacity: 0.9;
}

.nk-booking-separator-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(248, 250, 252, 0.95),
    rgba(148, 163, 184, 0.12)
  );
  box-shadow: 0 0 14px rgba(248, 250, 252, 0.65);
}

/* карточка с виджетом */

.nk-booking-widget {
  margin-top: 3rem;
  padding: 2.1rem 1.9rem;
  border-radius: 26px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: radial-gradient(
      circle at top left,
      rgba(250, 250, 250, 0.04),
      rgba(8, 11, 20, 0.98)
    );
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.7);
}

.nk-booking-widget-title {
  font-size: 1.35rem;
  margin: 0 0 0.4rem;
}

.nk-booking-widget-text {
  margin: 0;
  opacity: 0.9;
}

/* адаптив booking-flow: мобилка — иконка сверху, текст на всю ширину */

@media (max-width: 768px) {
  .nk-booking-step {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1.6rem 1.4rem;
    margin-bottom: 0.9rem;
  }

  .nk-booking-step-icon {
    margin-bottom: 0;
  }

  .nk-booking-step-title {
    font-size: 1.05rem;
  }

  .nk-booking-step-text {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .nk-booking-widget {
    padding: 1.6rem 1.3rem;
  }
}

/* --------------------------------------------------------------
   CALENDAR WRAPPER (без лишней рамки)
   -------------------------------------------------------------- */

section.nk-booking-widget {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.nk-booking-widget-inner {
  margin: 0 !important;
  padding: 0 !important;
  margin-top: -3rem !important;
}

.nk-booking-widget-header {
  margin-bottom: 0.5rem !important;
}

/* --------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------- */

.nk-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.22);
  padding: 1.7rem 0;
  font-size: 13px;
  color: var(--nk-ink-400);
}

.nk-footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

@media (min-width: 768px) {
  .nk-footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.nk-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.nk-footer-links a {
  color: var(--nk-ink-400);
  text-decoration: none;
  transition: color 0.15s ease;
}

.nk-footer-links a:hover {
  color: var(--nk-ink-100);
}

/* --------------------------------------------------------------
   SPLIT SECTIONS (TEXT + PHOTO)
   -------------------------------------------------------------- */

.nk-split-section {
  padding: 4rem 0;
}

.nk-split {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  align-items: stretch;
}

@media (min-width: 960px) {
  .nk-split {
    flex-direction: row;
  }

  .nk-split--reverse {
    flex-direction: row-reverse;
  }
}

.nk-split-text-card {
  flex: 1.3;
}

.nk-split-photo-card {
  flex: 1.1;
  padding: 1.3rem 1.3rem 1.5rem;
}

.nk-split-kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--nk-ink-400);
  margin-bottom: 0.35rem;
}

.nk-split-title {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  margin: 0 0 0.75rem;
}

@media (min-width: 768px) {
  .nk-split-title {
    font-size: 28px;
  }
}

.nk-split-lead {
  font-size: 15px;
  color: var(--nk-ink-300);
  margin: 0 0 1rem;
}

.nk-split-list {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  font-size: 14px;
  color: var(--nk-ink-100);
}

.nk-split-list li {
  margin-bottom: 0.4rem;
}

.nk-split-footnote {
  font-size: 13px;
  color: var(--nk-ink-400);
  margin-top: 0.7rem;
}

/* карточка под фото / схему */

.nk-split-photo {
position: relative;
border-radius: 22px;
overflow: hidden;
min-height: 230px;
background:
linear-gradient(
135deg,
rgba(37, 99, 235, 0.32) 25%,
transparent 25%,
transparent 50%,
rgba(37, 99, 235, 0.32) 50%,
rgba(37, 99, 235, 0.32) 75%,
transparent 75%,
transparent
),
radial-gradient(circle at top left, #1d2a45, #020617);
background-size: 32px 32px, cover;
}
.nk-split-photo-inner {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.nk-split-photo-inner img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
/* мобилка – компактнее */
@media (max-width: 640px) {
.nk-split-section {
padding: 3rem 0;
}
.nk-split-text-card,
.nk-split-photo-card {
min-height: 0;
}
}
/* --------------------------------------------------------------
   "WITH ME" & FEES – LAYOUT + ICONS
   -------------------------------------------------------------- */

/* две карточки With Me */

#with-me .nk-with-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.3rem;
}

/* убираем стандартные точки списка в With Me */

#with-me .nk-card-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

/* кастомные маркеры ✘ / ✔ */

#with-me .nk-li-bad::before,
#with-me .nk-li-good::before {
  display: inline-block;
  width: 1.1em;
  margin-right: 0.35rem;
  font-weight: 600;
  text-align: center;
}

#with-me .nk-li-bad::before {
  content: "✘";
  color: var(--nk-scarlet-300);
}

#with-me .nk-li-good::before {
  content: "✔";
  color: var(--nk-emerald-300);
}

/* сетка цен – две карточки */

#fees .nk-fees-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.7rem;
}

/* десктоп: рядом */

@media (min-width: 900px) {
  #with-me .nk-with-grid {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
  }

  #with-me .nk-with-grid .nk-card {
    flex: 1 1 0;
  }

  #fees .nk-fees-grid {
    display: flex;
    flex-direction: row;
    gap: 1.7rem;
    align-items: stretch;
  }

  #fees .nk-fees-grid .nk-fee-card {
    flex: 1 1 0;
  }
}

/* --------------------------------------------------------------
   MOBILE COMPACT LAYOUT (общие сжатия)
   -------------------------------------------------------------- */

@media (max-width: 768px) {
  .nk-hero .nk-container,
  .nk-section .nk-container {
    padding: 0 1.25rem;
  }

  .nk-hero {
    padding: 2.2rem 0 1.8rem;
  }

  .nk-hero-inner {
    flex-direction: column;
    align-items: center;
    gap: 1.6rem;
  }

  .nk-hero-title {
    font-size: 28px;
    line-height: 1.25;
  }

  .nk-hero-sub {
    margin-top: 0.5rem;
    font-size: 14px;
  }

  .nk-hero-actions {
    margin-top: 1.1rem;
    gap: 0.6rem;
  }

  .nk-section {
    padding: 2.1rem 0;
  }

  .nk-section-header {
    margin-bottom: 1.5rem;
  }

  .nk-split-section {
    padding: 2rem 0;
  }

  .nk-split {
    gap: 1.6rem;
  }

  .nk-split-text-card,
  .nk-split-photo-card {
    padding: 1.3rem 1.25rem;
  }

  #with-me .nk-with-grid {
    gap: 1rem;
  }

  #with-me .nk-card {
    padding: 1.2rem 1.3rem;
  }

  #fees .nk-fees-grid {
    gap: 1.2rem;
  }

  #fees .nk-fee-card {
    padding: 1.4rem 1.4rem;
  }

  .nk-booking-flow {
    margin-top: 1.4rem;
  }
}

/* --------------------------------------------------------------
   ABOUT PAGE – ОБО МНЕ
   -------------------------------------------------------------- */

/* сжатые split-секции на странице about */

#education.nk-split-section,
#approach.nk-split-section,
#topics.nk-split-section,
#values.nk-split-section {
  padding: 2.8rem 0;
}

#education .nk-split,
#approach .nk-split,
#topics .nk-split,
#values .nk-split {
  gap: 1.8rem;
}

#education .nk-split-text-card,
#approach .nk-split-text-card,
#topics .nk-split-text-card,
#values .nk-split-text-card,
#education .nk-split-photo-card,
#approach .nk-split-photo-card,
#topics .nk-split-photo-card,
#values .nk-split-photo-card {
  padding: 1.4rem 1.5rem;
}

/* мобилка about – ещё плотнее */

@media (max-width: 768px) {
  #education.nk-split-section,
  #approach.nk-split-section,
  #topics.nk-split-section,
  #values.nk-split-section {
    padding: 1.9rem 0;
  }

  #education .nk-split,
  #approach .nk-split,
  #topics .nk-split,
  #values .nk-split {
    gap: 1.2rem;
  }

  #education .nk-split-text-card,
  #approach .nk-split-text-card,
  #topics .nk-split-text-card,
  #values .nk-split-text-card,
  #education .nk-split-photo-card,
  #approach .nk-split-photo-card,
  #topics .nk-split-photo-card,
  #values .nk-split-photo-card {
    padding: 1.2rem 1.3rem;
  }

  #education .nk-split-lead,
  #approach .nk-split-lead,
  #topics .nk-split-lead,
  #values .nk-split-lead {
    font-size: 14px;
    margin-bottom: 0.7rem;
  }

  #education .nk-split-list,
  #approach .nk-split-list,
  #topics .nk-split-list,
  #values .nk-split-list {
    margin-bottom: 0.6rem;
  }
}

/* заголовок страницы "Обо мне и моей работе" */

#education .nk-section-header--about {
  max-width: 760px;
  margin: 0 auto 2.4rem;
  text-align: center;
}

#education .nk-section-header--about .nk-section-title {
  display: block;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.2;
  margin: 0 0 0.75rem;
  color: var(--nk-page-text);
}

@media (max-width: 768px) {
  #education .nk-section-header--about {
    margin-bottom: 1.8rem;
  }

  #education .nk-section-header--about .nk-section-title {
    font-size: 26px;
  }

  #education .nk-section-header--about .nk-section-sub {
    font-size: 14px;
  }
}

/* самая первая секция about – без линии и с маленьким отступом сверху */

#education.nk-section {
  border-top: none;
  padding-top: 1rem;
  margin-top: 0;
}
/* === ABOUT: показать H1 и сам header секции === */
/* === FIX: всегда показывать H1 / page titles === */

/* hero-заголовок на главной */
#hero-main .nk-hero-title,
.nk-hero-title,
.nk-section-title,
h1 {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  text-indent: 0 !important;
  height: auto !important;
  overflow: visible !important;
  clip: auto !important;
  position: static !important;
  color: var(--nk-page-text) !important;
}


/* сам контейнер заголовка "Обо мне и моей работе" */
#education .nk-section-header--about {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;

  max-width: 760px;
  margin: 1.5rem auto 2.4rem; /* чуть отступа сверху, чтобы не лип к шапке */
  text-align: center;
}

/* сам H1 внутри */
#education .nk-section-header--about .nk-section-title {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  text-indent: 0 !important;
  height: auto !important;
  overflow: visible !important;
  clip: auto !important;
  position: static !important;

  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.2;
  margin: 0 0 0.75rem;
  color: var(--nk-page-text);
}

/* подпись под H1 */
#education .nk-section-header--about .nk-section-sub {
  font-size: 15px;
  color: var(--nk-ink-300);
}
/* --------------------------------------------------------------
   PROJECTS PAGE
   -------------------------------------------------------------- */

.nk-projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.7rem;
}

.nk-project-card {
  /* уже есть glass-оформление от .nk-card */
}

.nk-project-layout {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.nk-project-text {
  flex: 1.1;
}

.nk-project-media {
  flex: 1;
  min-height: 230px;
}

/* десктоп: карточка в две колонки, часть зеркально */
@media (min-width: 960px) {
  .nk-project-layout {
    flex-direction: row;
    align-items: stretch;
  }

  .nk-project-card--reverse .nk-project-layout {
    flex-direction: row-reverse;
  }

  .nk-project-media {
    min-height: 260px;
  }
}

/* типографика внутри проекта */

.nk-project-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: color-mix(in srgb, var(--nk-gold-500, #d6b25e) 85%, transparent);
  margin-bottom: 0.4rem;
}

.nk-project-title {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  margin: 0 0 0.6rem;
}

@media (min-width: 768px) {
  .nk-project-title {
    font-size: 22px;
  }
}

.nk-project-lead {
  font-size: 14px;
  color: var(--nk-ink-300);
  margin: 0 0 0.7rem;
}


/* список выгод / содержания проекта */

.nk-project-list {
  margin: 0.5rem 0 0.4rem;
  padding-left: 1.1rem;
  font-size: 14px;
  color: var(--nk-ink-100);
}

.nk-project-list li {
  margin-bottom: 0.35rem;
}

.nk-project-footnote {
  margin-top: 0.4rem;
  font-size: 13px;
  color: var(--nk-ink-400);
}



/* --------------------------------------------------------------
   ABOUT: PERSONAL STORY LAYOUT
   -------------------------------------------------------------- */

/* Чуть мягче hero на странице "Обо мне" */
#about-hero.nk-hero {
  border-top: none;
  padding-top: 2.6rem;
}

/* Заголовки и подписи секций */
.nk-about-section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.nk-about-section-title {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  margin: 0;
}

@media (min-width: 768px) {
  .nk-about-section-title {
    font-size: 26px;
  }
}


/* Узкая колонка текста по центру */
.nk-about-narrow {
  max-width: 820px;
  margin: 0 auto;
  font-size: 15px;
  color: var(--nk-ink-300);
}

.nk-about-narrow p {
  margin: 0 0 0.8rem;
}



.nk-about-tag {
  font-size: 11px;
  padding: 0.35rem 0.9rem;
  border-radius: var(--nk-radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.55);
  background: rgba(15, 23, 42, 0.85);
  color: var(--nk-ink-300);
}

.nk-about-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)); /* 2×2 на десктопе */
  gap: 1.25rem;
  margin-top: 1.5rem;
}

@media (max-width: 900px) {
  .nk-about-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)); /* остаётся 2, просто чуть уже */
  }
}

@media (max-width: 600px) {
  .nk-about-photo-grid {
    grid-template-columns: 1fr; /* на мобиле по одной в столбик */
  }
}


.nk-about-photo-item {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.nk-about-photo-frame {
  border-radius: 22px;
  overflow: hidden;
  min-height: 140px;
  background: radial-gradient(circle at top, #1e293b, #020617);
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: var(--nk-shadow-card);
}

.nk-about-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nk-about-photo-caption {
  font-size: 12px;
  color: var(--nk-ink-400);
}

/* ТАЙМЛАЙН "МОЙ ПУТЬ" */
.nk-about-timeline {
  border-left: 1px solid rgba(148, 163, 184, 0.6);
  padding-left: 1.5rem;
  margin-top: 1rem;
}

.nk-about-timeline-item {
  position: relative;
  margin-bottom: 1.4rem;
}

.nk-about-timeline-item:last-child {
  margin-bottom: 0;
}

.nk-about-timeline-item::before {
  content: "";
  position: absolute;
  left: -1.55rem;
  top: 0.4rem;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--nk-gold-400);
  box-shadow: 0 0 0 4px rgba(242, 181, 75, 0.22);
}

.nk-about-year {
  font-size: 13px;
  font-weight: 600;
  color: var(--nk-ink-400);
  margin-bottom: 0.2rem;
}

.nk-about-timeline-text {
  font-size: 14px;
  color: var(--nk-ink-100);
}

/* ПИЛЛЫ "СЕЙЧАС В ФОКУСЕ" */
.nk-about-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.nk-about-pill {
  font-size: 13px;
  border-radius: var(--nk-radius-pill);
  padding: 0.45rem 0.95rem;
  border: 1px solid rgba(148, 163, 184, 0.55);
  background: rgba(15, 23, 42, 0.9);
  color: var(--nk-ink-300);
}

.nk-service-kicker {
  display: inline-block;
  padding: 4px 18px;              /* отступы как у бейджа */
  border-radius: 999px;           /* скругление под капсулу */
  border: 1px solid rgba(255,255,255,0.12); /* рамка как на примере */
  
  color: #f5c76a;                 /* золотой текст */
  text-shadow: 0 0 4px rgba(245,199,106,0.45); /* лёгкое свечение */
}
@media (max-width: 768px) {
  .nk-landing {
    min-height: auto;
  }
}
@media (max-width: 768px) {
  .nk-hero {
    padding: 1.6rem 0 1.2rem;
  }

  .nk-hero-inner {
    gap: 1.2rem;
  }
}
@media (max-width: 768px) {
  .nk-section {
    padding: 1.6rem 0;
  }
}
.nk-booking-step-sub {
 
  color: #f5c76a;                        /* золотой текст */
  text-shadow: 0 0 4px rgba(245, 199, 106, 0.4); /* очень лёгкое свечение */

  font-size: 14px;
  font-weight: 500;
}
.nk-logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}
/* ====== NK Beyond Work (final) ====== */
#nk-beyond.nk-bw{
  --ink:#F3F6FF;
  --muted:rgba(243,246,255,.72);
  --line:rgba(243,246,255,.14);
  --line2:rgba(243,246,255,.10);
  --gold:rgba(214,174,88,.95);

  padding: clamp(28px, 3.5vw, 56px) 0;
  color: var(--ink);
  background: transparent !important; /* без своего фона */
}

/* Заголовок СВЕРХУ, карточки НИЖЕ */
#nk-beyond .nk-bw__wrap{
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: block !important;
}

#nk-beyond .nk-bw__intro{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 16px;
  margin: 0 0 clamp(18px, 2.2vw, 28px) 0;
}

/* ✅ ШРИФТ ЗАГОЛОВКА */
#nk-beyond .nk-bw__title{
  font-family: "Playfair Display", serif !important;
  font-weight: 600;
  margin: 0;
  font-size: clamp(22px, 2.6vw, 38px);
  line-height: 1.12;
  letter-spacing: .01em;
}

#nk-beyond .nk-bw__pill{
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(243,246,255,.65);
  padding: 8px 12px;
  border: 1px solid var(--line2);
  border-radius: 999px;
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(10px);
  white-space: nowrap;
}

/* 2x2 сетка */
#nk-beyond .nk-bw__grid{
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: clamp(14px, 2vw, 22px);
  align-items: stretch;
}

/* Card */
#nk-beyond .nk-bw-card{
  position: relative;
  border-radius: 22px;
  border: 1px solid var(--line);
  overflow: hidden;
  background:
    radial-gradient(520px 220px at 20% 0%, rgba(255,255,255,.06), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  box-shadow:
    0 20px 60px rgba(0,0,0,.45),
    0 0 0 1px rgba(255,255,255,.04) inset;

  display: flex;
  flex-direction: column;
  height: 100%;
  transform: translateZ(0);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

#nk-beyond .nk-bw-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(700px 260px at 70% 10%, rgba(214,174,88,.08), transparent 55%),
    radial-gradient(520px 240px at 20% 100%, rgba(255,255,255,.05), transparent 60%);
  pointer-events:none;
  opacity:.9;
}

#nk-beyond .nk-bw-card:hover{
  transform: translateY(-3px);
  border-color: rgba(214,174,88,.22);
  box-shadow:
    0 26px 70px rgba(0,0,0,.5),
    0 0 0 1px rgba(214,174,88,.10) inset;
}

/* Фото: одинаковый размер всегда */
#nk-beyond .nk-bw-card__media{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid var(--line2);
  background: rgba(255,255,255,.02);
}

#nk-beyond .nk-bw-card__media img{
  width: 100% !important;
  height: 100% !important;
  display: block;
  object-fit: cover !important;
  object-position: center;
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.03);
}

#nk-beyond .nk-bw-card__media::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.45) 100%),
    radial-gradient(700px 220px at 30% 0%, rgba(214,174,88,.10), transparent 55%);
  pointer-events:none;
}

#nk-beyond .nk-bw-card__body{
  position: relative;
  padding: clamp(16px, 2vw, 22px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

#nk-beyond .nk-bw-card__title{
  margin: 0;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.2;
  letter-spacing: .2px;
}

#nk-beyond .nk-bw-card__text{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

/* Мобилка */
@media (max-width: 680px){
  #nk-beyond .nk-bw__grid{
    grid-template-columns: 1fr !important;
  }
  #nk-beyond .nk-bw__pill{ display:none; }
  #nk-beyond .nk-bw-card{ border-radius: 18px; }
  #nk-beyond .nk-bw-card__media{ aspect-ratio: 16 / 10; }
}
