/* Crab Party UI — типографика и размеры по Figma (Le Murmure → Playfair, Onest → Manrope) */

@font-face {
  font-family: "Le Murmure";
  src: url("../fonts/LeMurmure-Regular.woff2") format("woff2"),
       url("../fonts/LeMurmure-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #191919;
  --bg-light: #FAFAFA;
  --text: #FFFFFF;
  --text-dark: #191919;
  --border: #FFFFFF;
  --border-muted: rgba(255, 255, 255, 0.45);
  --font-display: "Le Murmure", "Playfair Display", serif;
  --font-body: "Manrope", -apple-system, sans-serif;
  --page-width: 1920px;
  --section-padding-x: 160px;
  --section-padding-top: 128px;
  --section-padding-bottom: 64px;
  --block-height: 1024px;
  /* Размеры шрифтов по Figma */
  --text-hero-title: clamp(56px, 6.5vw, 96px);
  --text-hero-subtitle: clamp(18px, 1.75vw, 28px);
  --text-section-heading: 96px;
  --text-nav-btn: 16px;
  --text-body: 16px;
  --text-card-title: 2rem;
  --text-concept-title: 96px;
  --text-format-label: 64px;
  --text-format-value: 16px;
  --text-format-cta: 16px;
  --line-tight: 1;
  --line-body: 1.2;
  --line-hero-title: 1.12;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: var(--line-body);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ========== HERO — первый экран, всё помещается в viewport ========== */
.hero {
  position: relative;
  width: 100%;
  max-width: var(--page-width);
  min-height: 100vh;
  height: var(--block-height);
  max-height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

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

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(25, 25, 25, 1) 0%, rgba(25, 25, 25, 0) 30%, rgba(25, 25, 25, 0) 70%, rgba(25, 25, 25, 1) 100%),
    rgba(0, 0, 0, 0.25);
  pointer-events: none;
}

/* Шапка: компактные отступы чтобы помещалось на первый экран */
.header-nav {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px var(--section-padding-x);
  width: 100%;
  flex-shrink: 0;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 64px;
}

.logo-img {
  width: 100px;
  height: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  font-size: var(--text-nav-btn);
  font-weight: 400;
  color: var(--text);
}

.nav-links a:hover {
  opacity: 0.85;
}

/* Бургер — скрыт на десктопе */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text);
  z-index: 100;
  transition: transform 0.2s;
}

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.burger.is-open .burger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.burger.is-open .burger-line:nth-child(2) {
  opacity: 0;
}

.burger.is-open .burger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.btn-nav-desk {
  display: inline-flex;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  font-family: var(--font-body);
  font-size: var(--text-nav-btn);
  font-weight: 400;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-white {
  background: var(--text);
  color: var(--text-dark);
}

.btn-white:hover {
  opacity: 0.92;
}

/* Hero content: по центру, компактные отступы между заголовком/подзаголовком/кнопкой */
.hero-content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  width: 100%;
  max-width: 964px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: var(--text-hero-title);
  font-weight: 600;
  line-height: 1.08;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--text);
}

.hero-subtitle {
  font-size: var(--text-hero-subtitle);
  font-weight: 400;
  line-height: var(--line-tight);
  max-width: 674px;
  margin: 0;
  color: var(--text);
}

/* ========== СЕКЦИИ — без вертикальных отступов между блоками (как в Figma) ========== */
.section {
  width: 100%;
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 var(--section-padding-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

.section-dark {
  background: var(--bg);
  padding-top: 64px;
  padding-bottom: 64px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: var(--text-section-heading);
  font-weight: 600;
  line-height: var(--line-tight);
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  color: var(--text);
}

.section-heading--dark {
  color: var(--text-dark);
  text-align: left;
}

/* Концепция — карточки 382×256, gap 24, border 1px white, radius 6, padding 24, space-between внутри */
.concept-cards {
  display: flex;
  flex-direction: row;
  gap: 24px;
  width: 100%;
  max-width: 1600px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
}

@media (min-width: 1920px) {
  .concept-cards {
    flex-wrap: nowrap;
  }
}

.concept-card {
  width: 382px;
  min-height: 256px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
}

.concept-card-title {
  font-family: var(--font-display);
  font-size: var(--text-concept-title);
  font-weight: 600;
  line-height: 1.05;
  text-transform: uppercase;
  margin: 0;
  color: var(--text);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.concept-card-text {
  font-size: var(--text-body);
  line-height: var(--line-body);
  margin: 0;
  color: var(--text);
}

/* ========== ЛОКАЦИЯ — высота 100vh, текст по центру по вертикали и горизонтали ========== */
.section-location {
  position: relative;
  height: 100vh;
  min-height: 400px;
  padding: 0 var(--section-padding-x);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.location-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.location-bg__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.location-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(25, 25, 25, 1) 0%, rgba(25, 25, 25, 0) 30%, rgba(25, 25, 25, 0) 70%, rgba(25, 25, 25, 1) 100%),
    rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.location-content {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
  max-width: 964px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.location-text {
  font-size: var(--text-body);
  line-height: var(--line-body);
  margin: 0;
  color: var(--text);
  text-align: center;
}

/* ========== ШЕФ — 2 фрейма на 100% ширины: фото 50%, текст 50%, без вертикальных отступов ========== */
.section-chef {
  background: var(--bg-light);
  padding: 0;
  width: 100%;
}

.chef-wrap {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  margin: 0;
}

.chef-image {
  flex: 0 0 50%;
  width: 50%;
  aspect-ratio: 1;
  background: var(--bg) url("../images/chef-6f41ef.png") center / cover no-repeat;
}

.chef-content {
  flex: 0 0 50%;
  width: 50%;
  min-width: 0;
  padding: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  overflow-wrap: break-word;
  word-wrap: break-word;
  box-sizing: border-box;
}

.chef-content .section-heading {
  font-size: clamp(36px, 4.5vw, 64px);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.chef-bio {
  font-size: var(--text-body);
  line-height: var(--line-body);
  margin: 0;
  color: var(--text-dark);
  min-width: 0;
}

/* ========== МЕНЮ — 2 фрейма на 100% ширины: текст 50%, фото 50%, без вертикальных отступов ========== */
.section-menu {
  background: var(--bg-light);
  padding: 0;
  width: 100%;
}

.menu-wrap {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: 100%;
  margin: 0;
}

.menu-content {
  flex: 0 0 50%;
  width: 50%;
  min-width: 0;
  padding: 64px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow-wrap: break-word;
  word-wrap: break-word;
  box-sizing: border-box;
}

.menu-content .section-heading {
  font-size: clamp(36px, 4.5vw, 64px);
}

.menu-lead {
  font-size: var(--text-body);
  margin: 0;
  color: var(--text-dark);
}

.menu-items {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.menu-item {
  width: calc(50% - 12px);
  min-width: 280px;
  padding: 1.5rem;
  border: 1px solid var(--text-dark);
  border-radius: 6px;
}

.menu-num {
  font-family: var(--font-display);
  font-size: var(--text-section-heading);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-dark);
  display: block;
  margin-bottom: 8px;
  line-height: var(--line-tight);
}

.menu-item-title {
  font-family: var(--font-display);
  font-size: var(--text-card-title);
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 8px;
  color: var(--text-dark);
  line-height: var(--line-tight);
}

.menu-item-desc {
  font-size: var(--text-body);
  line-height: var(--line-body);
  margin: 0;
  color: var(--text-dark);
  max-width: 294px;
}

.menu-image {
  flex: 0 0 50%;
  width: 50%;
  aspect-ratio: 1;
  background: var(--bg) url("../images/menu.png") center / cover no-repeat;
}

/* ========== АТМОСФЕРА — фон через img чтобы грузился при file:// ========== */
.section-atmosphere {
  position: relative;
  height: var(--block-height);
  padding: 0 var(--section-padding-x);
  justify-content: center;
  overflow: hidden;
}

.atmosphere-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.atmosphere-bg__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.atmosphere-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(25, 25, 25, 1) 0%, rgba(25, 25, 25, 0) 30%, rgba(25, 25, 25, 0) 70%, rgba(25, 25, 25, 1) 100%),
    rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.atmosphere-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 964px;
}

.atmosphere-text {
  font-size: var(--text-body);
  line-height: var(--line-body);
  margin: 0;
  color: var(--text);
  text-align: center;
}

/* ========== СПИКЕРЫ — разделитель 455×1 #D9D9D9 ========== */
.speakers {
  width: 100%;
  max-width: 1024px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.speaker-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.speaker-name {
  font-family: var(--font-display);
  font-size: var(--text-card-title);
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
  color: var(--text);
  line-height: var(--line-tight);
}

.speaker-desc {
  font-size: var(--text-body);
  line-height: var(--line-body);
  margin: 0;
  color: var(--text);
  max-width: 512px;
}

.speaker-divider {
  width: 455px;
  height: 1px;
  background: #D9D9D9;
  margin: 0;
  flex-shrink: 0;
  align-self: center;
}

/* ========== ПЛАН МЕРОПРИЯТИЯ ========== */
.schedule-section--light {
  background: var(--bg-light);
  padding-top: 64px;
  padding-bottom: 64px;
}

.schedule-section--light .section-heading {
  color: var(--text-dark);
  margin-bottom: 0;
}

.schedule-section .section-heading {
  margin-bottom: 0;
}

.schedule-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.schedule-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.schedule-time {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.5vw, 40px);
  line-height: 1;
  text-transform: uppercase;
  color: var(--text);
  margin: 0;
}

.schedule-section--light .schedule-time {
  color: var(--text-dark);
}

.schedule-desc {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1.25vw, 20px);
  line-height: var(--line-body);
  color: var(--text);
  margin: 0;
  max-width: 512px;
}

.schedule-section--light .schedule-desc {
  color: var(--text-dark);
}

.schedule-divider {
  width: 455px;
  max-width: 100%;
  height: 1px;
  background: #D9D9D9;
  margin: 0;
  flex-shrink: 0;
}

.schedule-section--light .schedule-divider {
  background: rgba(0, 0, 0, 0.15);
}

/* ========== ЗВЕЗДНЫЕ ГОСТИ — карточки с фото из Figma ========== */
.guests-grid {
  display: flex;
  flex-direction: row;
  gap: 24px;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}

.guest-card {
  flex: 1;
  min-width: 300px;
  max-width: 788px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.guest-photo {
  width: 100%;
  max-width: 788px;
  aspect-ratio: 1;
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg-light);
}

.guest-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guest-name {
  font-family: var(--font-display);
  font-size: var(--text-card-title);
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
  color: var(--text);
  line-height: var(--line-tight);
}

.guest-desc {
  font-size: var(--text-body);
  line-height: var(--line-body);
  margin: 0;
  color: var(--text);
  text-align: center;
}

/* ========== ИСТОРИЯ ТРЮФЕЛЯ — как блок шефа: 2 фрейма 50/50, квадратное фото, те же паддинги/гэпы/шрифты ========== */
.section-truffle {
  padding: 0;
  background: var(--bg);
  width: 100%;
}

.truffle-wrap {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  margin: 0;
}

.truffle-image {
  flex: 0 0 50%;
  width: 50%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg);
}

.truffle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.truffle-content {
  flex: 0 0 50%;
  width: 50%;
  min-width: 0;
  padding: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  overflow-wrap: break-word;
  word-wrap: break-word;
  box-sizing: border-box;
}

.truffle-content .section-heading {
  font-size: clamp(36px, 4.5vw, 64px);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.truffle-text {
  font-size: var(--text-body);
  line-height: var(--line-body);
  margin: 0;
  color: var(--text);
  min-width: 0;
}

/* ========== ФОРМАТ УЧАСТИЯ — карточки 384×158 и 384, gap 64, обводка radius 92px ========== */
.format-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}

.format-lead {
  font-size: var(--text-body);
  line-height: var(--line-body);
  text-align: center;
  margin: 0;
  color: var(--text);
  max-width: 800px;
}

.format-cards {
  display: flex;
  flex-direction: row;
  gap: 64px;
  justify-content: center;
  flex-wrap: wrap;
}

.format-card {
  width: 384px;
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
}

.format-card--date {
  min-height: 200px;
}

.format-card--location {
  min-height: 158px;
}

.format-card-label {
  font-family: var(--font-display);
  font-size: var(--text-format-label);
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
  color: var(--text);
  line-height: var(--line-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.format-card-value {
  font-size: 16px;
  line-height: 1.2;
  margin: 0;
  color: var(--text);
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.format-cta {
  padding: 16px 24px;
  border: 1px solid var(--border-muted);
  border-radius: 92px;
  text-align: center;
}

.format-cta-text {
  font-size: var(--text-format-cta);
  margin: 0;
  color: var(--border-muted);
  line-height: var(--line-tight);
}

.section-dark .btn-white {
  margin: 0 auto;
}

/* ========== КОНТАКТЫ ========== */
.contacts-text {
  font-size: var(--text-body);
  text-align: center;
  margin: 0;
  color: var(--text);
}

.contacts-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  margin-top: 1rem;
}

.contacts-link {
  font-size: var(--text-body);
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s;
}

.contacts-link:hover {
  opacity: 0.85;
  text-decoration: underline;
}

/* ========== МОДАЛЬНОЕ ОКНО ЗАПИСИ ========== */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.booking-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.booking-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

.booking-modal__box {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: var(--bg);
  border: 1px solid var(--border-muted);
  border-radius: 6px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.booking-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  padding: 0;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.8;
}

.booking-modal__close:hover {
  opacity: 1;
}

.booking-modal__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.booking-modal__lead {
  font-size: var(--text-body);
  margin: 0 0 1.5rem;
  color: var(--border-muted);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking-form__label {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.booking-form__label-text {
  font-size: 0.875rem;
  color: var(--border-muted);
}

.booking-form__input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-muted);
  border-radius: 6px;
  box-sizing: border-box;
}

.booking-form__input::placeholder {
  color: var(--border-muted);
  opacity: 0.7;
}

.booking-form__input:focus {
  outline: none;
  border-color: var(--border);
}

.booking-form__submit {
  margin-top: 0.5rem;
}

.booking-modal__message {
  margin: 1rem 0 0;
  font-size: var(--text-body);
}

.booking-modal__message--success {
  color: #7cb87c;
}

.booking-modal__message--error {
  color: #c86c6c;
}

/* ========== АДАПТИВ ========== */
@media (max-width: 1200px) {
  :root {
    --section-padding-x: 24px;
  }

  .hero {
    height: auto;
    min-height: 100vh;
  }

  .hero-title {
    font-size: clamp(48px, 10vw, 128px);
  }

  .hero-subtitle {
    font-size: clamp(18px, 2.5vw, 32px);
  }

  .hero-content {
    width: 100%;
    padding: 0 24px;
  }

  .section-heading {
    font-size: clamp(40px, 8vw, 96px);
  }

  .concept-cards {
    flex-wrap: wrap;
    max-width: 100%;
  }

  .concept-card {
    width: 100%;
    max-width: 382px;
    min-height: 256px;
  }

  .concept-card-title {
    font-size: clamp(40px, 10vw, 96px);
  }

  .section-location,
  .section-atmosphere {
    height: auto;
    min-height: 80vh;
    padding: 80px 24px;
  }

  .chef-wrap,
  .menu-wrap,
  .truffle-wrap {
    flex-direction: column;
    gap: 48px;
    padding: 1rem;
  }

  .chef-image,
  .menu-image,
  .truffle-image {
    width: 100%;
    max-width: 960px;
    height: 60vw;
    max-height: 960px;
  }

  .chef-content,
  .menu-content,
  .truffle-content {
    width: 100%;
    max-width: 712px;
    padding: 0;
  }

  .menu-item {
    width: 100%;
  }

  .format-card {
    width: 100%;
    max-width: 384px;
  }

  .format-card-label {
    font-size: clamp(32px, 8vw, 64px);
  }

  .speaker-divider {
    width: 100%;
    max-width: 455px;
  }
}

@media (max-width: 768px) {
  .header-nav {
    flex-wrap: wrap;
    padding: 16px;
  }

  .header-nav.is-open {
    z-index: 1000;
  }

  .header-left {
    gap: 24px;
  }

  .burger {
    display: flex;
    position: relative;
    z-index: 1001;
  }

  .btn-nav-desk {
    display: none;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    background: rgba(25, 25, 25, 0.98);
    z-index: 1000;
    padding: 80px 24px 40px;
  }

  .header-nav.is-open .nav-links {
    display: flex;
  }

  .nav-links a {
    font-size: 1.25rem;
    padding: 8px 0;
  }

  .logo-img {
    width: 80px;
    height: auto;
  }
}
