@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,500;0,600;1,500;1,600&family=Golos+Text:wght@400;500;600&display=swap');

.ny24 {
  --ny-deep: #071127;
  --ny-deep-2: #0b1a3a;
  --ny-card: rgba(17, 37, 72, 0.68);
  --ny-snow: #f7fbff;
  --ny-silver: #cfd8ea;
  --ny-muted: #9aa8c2;
  --ny-gold: #dfc176;
  --ny-gold-dark: #b88f46;
  --ny-border: rgba(223, 193, 118, 0.34);
  box-sizing: border-box;
  color: var(--ny-snow);
  font-family: 'Golos Text', Arial, sans-serif;
  line-height: 1.55;
}

.ny24 *,
.ny24 *::before,
.ny24 *::after {
  box-sizing: inherit;
}

.ny24 h1,
.ny24 h2,
.ny24 h3,
.ny24 p {
  margin-top: 0;
}

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

.ny24 img {
  display: block;
  max-width: 100%;
}

.ny24-container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.ny24-section {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}

.ny24-section-deep {
  background:
    radial-gradient(900px 440px at 12% 0%, rgba(35, 77, 139, 0.38), transparent 62%),
    radial-gradient(720px 420px at 94% 15%, rgba(24, 84, 124, 0.25), transparent 60%),
    linear-gradient(180deg, var(--ny-deep), #050c1c);
}

.ny24-section-gradient {
  background: linear-gradient(180deg, var(--ny-deep), var(--ny-deep-2) 52%, var(--ny-deep));
}

.ny24-heading {
  max-width: 820px;
  margin: 0 auto 54px;
  text-align: center;
}

.ny24-eyebrow {
  margin-bottom: 15px;
  color: var(--ny-gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .32em;
  text-transform: uppercase;
}

.ny24-title {
  margin-bottom: 0;
  background: linear-gradient(180deg, #fff 0%, #cfd8ea 55%, #8e9bb6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: 'Cormorant', Georgia, serif;
  font-size: clamp(42px, 6vw, 66px);
  font-weight: 600;
  line-height: 1.02;
}

.ny24-subtitle {
  max-width: 730px;
  margin: 0 auto;
  color: var(--ny-muted);
  font-size: 17px;
}

.ny24-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 22px 0;
  color: var(--ny-gold);
}

.ny24-ornament::before,
.ny24-ornament::after {
  width: min(120px, 20vw);
  height: 1px;
  content: '';
  background: linear-gradient(90deg, transparent, rgba(223, 193, 118, .55), transparent);
}

.ny24-grid {
  display: grid;
  gap: 20px;
}

.ny24-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ny24-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ny24-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ny24-card {
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(29, 52, 90, .72), rgba(10, 22, 47, .7));
  box-shadow: inset 0 1px rgba(255, 255, 255, .045);
  backdrop-filter: blur(10px);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.ny24-card:hover {
  z-index: 2;
  border-color: var(--ny-border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .34);
  transform: translateY(-5px);
}

.ny24-card h3 {
  margin: 0;
  color: var(--ny-snow);
  font-family: 'Cormorant', Georgia, serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.15;
}

.ny24-card-feature,
.ny24-card-holiday {
  min-height: 188px;
  padding: 28px 22px;
  border-color: var(--ny-border);
  text-align: center;
}

.ny24-emoji {
  display: block;
  margin-bottom: 14px;
  font-size: 43px;
}

.ny24-center {
  margin-top: 36px;
  text-align: center;
}

.ny24-accent {
  color: var(--ny-gold);
  font-size: 19px;
  font-weight: 600;
}

.ny24-btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  transition: filter .2s ease, transform .2s ease, background .2s ease;
}

.ny24-btn:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.ny24-btn-gold {
  background: var(--ny-gold);
  color: var(--ny-deep) !important;
}

.ny24-btn-outline {
  border-color: rgba(207, 216, 234, .42);
  background: rgba(4, 13, 31, .24);
  color: #fff !important;
}

/* Шапка и первый экран */
.ny24-hero-wrap {
  position: relative;
  background: var(--ny-deep);
}

.ny24-header {
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  padding: 19px 0;
  background: linear-gradient(180deg, rgba(3, 9, 23, .66), transparent);
}

.ny24-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.ny24-brand {
  flex: none;
  color: #fff !important;
  font-family: 'Cormorant', Georgia, serif;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: .02em;
}

.ny24-brand span,
.ny24-brand b {
  color: var(--ny-gold);
}

.ny24-brand b {
  font-weight: 500;
}

.ny24-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.ny24-nav a {
  color: rgba(226, 232, 244, .78);
  font-size: 13px;
  transition: color .2s ease;
}

.ny24-nav a:hover {
  color: var(--ny-gold);
}

.ny24-header .ny24-btn {
  min-height: 44px;
  padding: 9px 23px;
}

.ny24-hero {
  position: relative;
  height: clamp(620px, 63.35vw, 1200px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ny-deep);
}

.ny24-hero-media {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ny-deep);
}

.ny24-hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.ny24-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 12, 30, .8) 0%, rgba(4, 12, 30, .36) 49%, rgba(4, 12, 30, .06) 100%),
    linear-gradient(0deg, rgba(5, 14, 32, .92), rgba(5, 14, 32, .05) 55%);
}

.ny24-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 92px;
}

.ny24-hero-content h1 {
  max-width: 710px;
  margin: 18px 0 20px;
  font-family: 'Cormorant', Georgia, serif;
  font-weight: 600;
  line-height: .95;
}

.ny24-hero-content h1 span {
  display: block;
  color: var(--ny-silver);
  font-size: clamp(32px, 4vw, 45px);
}

.ny24-hero-content h1 strong {
  display: block;
  max-width: 710px;
  margin-top: 4px;
  background: linear-gradient(180deg, #fff, #c7d1e4 52%, #8f9dbd);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(64px, 8vw, 94px);
  font-style: italic;
  font-weight: 600;
}

.ny24-hero-lead {
  margin-bottom: 13px;
  color: var(--ny-gold);
  font-family: 'Cormorant', Georgia, serif;
  font-size: 27px;
  font-style: italic;
}

.ny24-hero-text {
  max-width: 590px;
  margin-bottom: 0;
  color: rgba(226, 232, 244, .9);
  font-size: 18px;
}

.ny24-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

/* Двухколоночные блоки */
.ny24-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.ny24-split .ny24-ornament {
  justify-content: flex-start;
}

.ny24-split .ny24-subtitle {
  margin-left: 0;
}

.ny24-media-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--ny-border);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .25);
}

.ny24-media-card>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ny24-media-card::after {
  position: absolute;
  inset: 0;
  content: '';
  background: linear-gradient(0deg, rgba(4, 13, 31, .45), transparent 52%);
  pointer-events: none;
}

.ny24-quote {
  margin-bottom: 28px;
  color: rgba(231, 237, 247, .91);
  font-family: 'Cormorant', Georgia, serif;
  font-size: 26px;
  font-style: italic;
  line-height: 1.45;
}

.ny24-gem {
  position: absolute;
  z-index: 2;
  color: #d8eaff;
  text-shadow: 0 0 15px currentColor;
  animation: ny24-shimmer 2.8s ease-in-out infinite;
}

.ny24-gem-1 {
  top: 22%;
  left: 16%;
}

.ny24-gem-2 {
  top: 58%;
  left: 72%;
  animation-delay: .8s;
}

.ny24-gem-3 {
  top: 34%;
  left: 82%;
  animation-delay: 1.6s;
}

/* Программа */
.ny24-timeline {
  position: relative;
  max-width: 930px;
  margin: 0 auto;
}

.ny24-card-night {
  display: flex;
  min-height: 126px;
  align-items: center;
  gap: 18px;
  padding: 20px;
}

.ny24-round-icon {
  display: inline-flex;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(223, 193, 118, .42);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 28%, rgba(255, 236, 174, .18), rgba(223, 193, 118, .06) 58%, rgba(5, 16, 38, .12));
  color: var(--ny-gold);
  box-shadow: inset 0 0 18px rgba(223, 193, 118, .06), 0 8px 22px rgba(0, 0, 0, .18);
}

.ny24-icon {
  display: block;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  object-fit: contain;
}

.ny24-card-night time {
  display: block;
  margin-bottom: 2px;
  color: var(--ny-gold);
  font-size: 13px;
  font-weight: 600;
}

.ny24-card-night h3 {
  font-size: 21px;
  line-height: 1.25;
}

/* Меню */
.ny24-menu-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: start;
  gap: 28px;
}

.ny24-menu-photo {
  position: sticky;
  top: 28px;
  min-height: 560px;
}

.ny24-menu-cards {
  display: grid;
  gap: 16px;
}

.ny24-card-menu {
  padding: 24px 27px;
  border-color: var(--ny-border);
}

.ny24-card-menu h3 {
  margin-bottom: 13px;
  color: var(--ny-gold);
}

.ny24-node-menu-items {
  color: var(--ny-silver);
  line-height: 1.8;
}

/* Цены */
.ny24-prices {
  max-width: 970px;
  margin: 0 auto;
}

.ny24-card-price {
  padding: 34px 26px;
  text-align: center;
}

.ny24-card-price .ny24-round-icon {
  margin-bottom: 18px;
}

.ny24-card-price p {
  margin: 7px 0 20px;
  color: var(--ny-muted);
}

.ny24-card-price strong {
  display: block;
  color: var(--ny-gold);
  font-family: 'Cormorant', Georgia, serif;
  font-size: 38px;
  line-height: 1.05;
}

.ny24-card-price.ny24-featured {
  border-color: rgba(223, 193, 118, .7);
  box-shadow: 0 0 45px rgba(223, 193, 118, .08);
}

.ny24-price-note {
  max-width: 700px;
  margin: 34px auto 0;
  padding: 17px 24px;
  border: 1px solid var(--ny-border);
  border-radius: 18px;
  background: rgba(223, 193, 118, .08);
  color: var(--ny-silver);
  text-align: center;
}

/* Проживание и завтрак */
.ny24-card-stay {
  min-height: 220px;
  padding: 28px;
}

.ny24-card-stay .ny24-round-icon {
  margin-bottom: 20px;
}

.ny24-card-stay p {
  margin: 10px 0 0;
  color: var(--ny-muted);
}

.ny24-stay-note {
  border-color: var(--ny-border);
  background: rgba(223, 193, 118, .09);
}

.ny24-mini-grid {
  margin-top: 26px;
}

.ny24-card-breakfast {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  color: var(--ny-silver);
}

.ny24-card-breakfast .ny24-icon {
  width: 23px;
  height: 23px;
  flex-basis: 23px;
  color: var(--ny-gold);
}

/* Контакты и подвал */
.ny24-contact-card {
  display: grid;
  max-width: 930px;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin: 0 auto;
  padding: 42px;
  border: 1px solid var(--ny-border);
  border-radius: 28px;
  background: var(--ny-card);
}

.ny24-contact-card h3 {
  margin-bottom: 22px;
  font-family: 'Cormorant', Georgia, serif;
  font-size: 32px;
}

.ny24-contact-links {
  display: grid;
  gap: 14px;
}

.ny24-contact-links a {
  color: var(--ny-silver);
  font-size: 17px;
}

.ny24-contact-links a:hover {
  color: var(--ny-gold);
}

.ny24-contact-card .ny24-btn {
  margin-top: 18px;
}

.ny24-contact-hint {
  margin: 15px 0 0;
  color: var(--ny-muted);
  font-size: 13px;
}

.ny24-footer {
  padding: 36px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: #050c1c;
}

.ny24-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--ny-muted);
  font-size: 13px;
}

.ny24-footer-inner strong {
  color: var(--ny-snow);
  font-family: 'Cormorant', Georgia, serif;
  font-size: 22px;
}

/* Декоративный снег создаётся site.js и не мешает кликам. */
.ny24-snow {
  position: fixed;
  z-index: 50;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.ny24-snowflake {
  position: absolute;
  top: -8vh;
  color: #fff;
  text-shadow: 0 0 6px #fff;
  animation: ny24-snow-fall linear infinite;
}

@keyframes ny24-snow-fall {
  from {
    transform: translate3d(0, -8vh, 0) rotate(0);
  }

  to {
    transform: translate3d(34px, 116vh, 0) rotate(360deg);
  }
}

@keyframes ny24-shimmer {

  0%,
  100% {
    opacity: .35;
    transform: scale(.85);
  }

  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

@media (max-width: 1040px) {
  .ny24-nav {
    display: none;
  }

  .ny24-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ny24-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ny24-hero {
    height: 700px;
  }

  .ny24-menu-layout {
    grid-template-columns: 1fr;
  }

  .ny24-menu-photo {
    position: relative;
    top: auto;
    min-height: 380px;
  }
}

@media (max-width: 720px) {
  .ny24-container {
    width: min(100% - 30px, 1180px);
  }

  .ny24-section {
    padding: 70px 0;
  }

  .ny24-header {
    padding: 15px 0;
  }

  .ny24-header .ny24-btn {
    min-height: 40px;
    padding: 8px 16px;
    font-size: 13px;
  }

  .ny24-brand {
    font-size: 20px;
  }

  .ny24-hero {
    display: block;
    height: auto;
    min-height: 0;
  }

  .ny24-hero-media {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 1717 / 1100;
  }

  .ny24-hero-image {
    position: absolute;
    inset: 0;
  }

  .ny24-hero-overlay {
    right: 0;
    bottom: auto;
    left: 0;
    height: 65vw;
    background: linear-gradient(0deg, var(--ny-deep), rgba(4, 12, 30, .18) 45%, rgba(4, 12, 30, .28));
  }

  .ny24-hero-content {
    padding-top: 42px;
    padding-bottom: 64px;
  }

  .ny24-hero-content h1 strong {
    font-size: clamp(52px, 16vw, 74px);
  }

  .ny24-hero-content h1 span {
    font-size: 31px;
  }

  .ny24-eyebrow {
    font-size: 11px;
    letter-spacing: .22em;
  }

  .ny24-grid-2,
  .ny24-grid-3,
  .ny24-grid-4,
  .ny24-split,
  .ny24-contact-card {
    grid-template-columns: 1fr;
  }

  .ny24-split {
    gap: 38px;
  }

  .ny24-media-card,
  .ny24-menu-photo {
    min-height: 300px;
  }

  .ny24-contact-card {
    gap: 28px;
    padding: 27px;
  }

  .ny24-footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 430px) {
  .ny24-header .ny24-btn {
    display: none;
  }

  .ny24-actions {
    display: grid;
  }

  .ny24-actions .ny24-btn {
    width: 100%;
  }

  .ny24-card-feature,
  .ny24-card-holiday {
    min-height: 165px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .ny24 *,
  .ny24 *::before,
  .ny24 *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

/* Версия по ТЗ 2026-2027 */
.ny24[id] {
  scroll-margin-top: 86px;
}

.ny24-header {
  position: fixed;
  background: linear-gradient(180deg, rgba(3, 9, 23, .88), rgba(3, 9, 23, .45));
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(223, 193, 118, .1);
}

.ny24-brand {
  color: var(--ny-gold) !important;
}

.ny24-visual-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.ny24-visual-card {
  aspect-ratio: 1402 / 1122;
  overflow: hidden;
  border: 1px solid rgba(223, 193, 118, .48);
  border-radius: 23px;
  background: #061126;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .24);
  transition: transform .32s ease, border-color .32s ease, box-shadow .32s ease;
}

.ny24-visual-card:hover {
  z-index: 2;
  border-color: rgba(243, 202, 108, .9);
  box-shadow: 0 18px 44px rgba(223, 193, 118, .22);
  transform: translateY(-5px) scale(1.015);
}

.ny24-visual-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ny24-legend-media {
  aspect-ratio: 4 / 3;
}

.ny24-legend-media>img {
  object-position: center;
}

.ny24-menu-simple .ny24-heading {
  margin-bottom: 0;
}

.ny24-menu-simple .ny24-btn {
  margin-top: 8px;
}

.ny24-card-stay {
  display: block;
  color: inherit !important;
}

.ny24-card-stay strong {
  display: block;
  margin-top: 14px;
  color: var(--ny-gold);
  font-family: 'Cormorant', Georgia, serif;
  font-size: 28px;
  font-weight: 600;
}

.ny24-card-holiday {
  min-height: 265px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.ny24-card-holiday p {
  margin: 13px 0 0;
  color: var(--ny-muted);
  font-size: 14px;
  line-height: 1.55;
}

.ny24-card-holiday small {
  display: block;
  margin-top: 12px;
  color: var(--ny-gold);
  font-size: 12px;
  line-height: 1.4;
}

.ny24-line-icon {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid var(--ny-border);
  border-radius: 50%;
  border-color: rgba(223, 193, 118, .42);
  background: radial-gradient(circle at 35% 28%, rgba(255, 236, 174, .18), rgba(223, 193, 118, .05) 62%, transparent);
  color: var(--ny-gold);
  box-shadow: inset 0 0 18px rgba(223, 193, 118, .06), 0 8px 22px rgba(0, 0, 0, .18);
}

.ny24-breakfast-media {
  aspect-ratio: 3 / 2;
}

@media (max-width: 1040px) {
  .ny24-visual-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .ny24[id] {
    scroll-margin-top: 72px;
  }

  .ny24-visual-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .ny24-visual-card {
    border-radius: 18px;
  }

  .ny24-card-holiday {
    min-height: 230px;
  }
}