/* ── Variables ─────────────────────────────────────────── */
    :root {
      --blue-900: #0D3567;
      --blue-700: #1A4A8C;
      --blue-500: #1A7FC4;
      --blue-400: #1E9FD8;
      --blue-300: #1BBFE6;
      --blue-200: #7FD4F5;
      --blue-100: #C8ECFA;
      --blue-50: #E8F6FD;
      --bg: #F5FBFE;
      --white: #FFFFFF;
      --text: #1A2A3A;
      --text-2: #4A6070;
      --text-3: #8A9EAE;
      --radius: 16px;
      --radius-sm: 10px;
      --shadow: 0 4px 24px rgba(26, 74, 140, 0.08);
      --shadow-md: 0 8px 40px rgba(26, 74, 140, 0.14);
      --shadow-lg: 0 16px 56px rgba(26, 74, 140, 0.18);
      --transition: 0.25s ease;
    }

    /* ── Reset ─────────────────────────────────────────────── */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    body {
      font-family: 'Manrope', sans-serif;
      color: var(--text);
      background: var(--bg);
      font-size: 16px;
      line-height: 1.6;
      overflow-x: hidden;
    }

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

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

    ul {
      list-style: none;
    }

    button {
      cursor: pointer;
      font-family: inherit;
      border: none;
      background: none;
    }

    input,
    textarea {
      font-family: inherit;
      font-size: 1rem;
    }

    /* ── Ripple ────────────────────────────────────────────── */
    .ripple-circle {
      position: absolute;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.38);
      transform: scale(0);
      animation: ripple 0.65s linear forwards;
      pointer-events: none;
    }

    @keyframes ripple {
      to {
        transform: scale(4);
        opacity: 0;
      }
    }

    /* ── Buttons ───────────────────────────────────────────── */
    .btn-primary {
      position: relative;
      overflow: hidden;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: var(--blue-500);
      color: #fff;
      padding: 14px 28px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.95rem;
      letter-spacing: 0.02em;
      box-shadow: 0 8px 24px rgba(0, 100, 200, 0.3);
      transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    }

    .btn-primary:hover {
      background: var(--blue-400);
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(0, 100, 200, 0.42);
    }

    .btn-primary:active {
      transform: translateY(0);
      box-shadow: 0 4px 16px rgba(0, 100, 200, 0.25);
    }

    .btn-primary.btn-sm {
      padding: 10px 20px;
      font-size: 0.875rem;
    }

    .btn-primary.btn-full {
      width: 100%;
    }

    .btn-primary.btn-hero {
      padding: 16px 36px;
      font-size: 1rem;
    }

    .btn-float {
      animation: btnFloat 3.5s ease-in-out infinite;
    }

    .btn-float:hover {
      animation: none;
    }

    @keyframes btnFloat {

      0%,
      100% {
        transform: translateY(0);
        box-shadow: 0 8px 24px rgba(0, 100, 200, 0.3);
      }

      50% {
        transform: translateY(-4px);
        box-shadow: 0 14px 36px rgba(0, 100, 200, 0.4);
      }
    }

    .btn-outline {
      position: relative;
      overflow: hidden;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 2px solid rgba(255, 255, 255, 0.55);
      color: #fff;
      padding: 14px 28px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.95rem;
      backdrop-filter: blur(6px);
      transition: background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
    }

    .btn-outline:hover {
      background: rgba(255, 255, 255, 0.15);
      border-color: rgba(255, 255, 255, 0.9);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(255, 255, 255, 0.12);
    }

    .btn-outline.btn-hero {
      padding: 16px 36px;
      font-size: 1rem;
    }

    /* ── Container ─────────────────────────────────────────── */
    .container {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ── Sections ──────────────────────────────────────────── */
    .section {
      position: relative;
      isolation: isolate;
      overflow: hidden;
      padding: 96px 0;
      background: #f5fbfe;
    }

    .section .container {
      position: relative;
      z-index: 1;
    }

    .section--light {
      background: #eef9ff;
    }

    .section--blue {
      background: #0f4c8d;
      color: #fff;
    }

    .section--blue .section-title,
    .section--blue .section-desc {
      color: #fff;
    }

    .section--blue .gallery-tab {
      background: rgba(255, 255, 255, 0.12);
      color: rgba(255, 255, 255, 0.9);
      border-color: rgba(255, 255, 255, 0.24);
    }

    .section--blue .gallery-tab.active {
      background: #fff;
      color: var(--blue-900);
      border-color: #fff;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    }

    .section-label {
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--blue-400);
      margin-bottom: 10px;
    }

    .section-label--light {
      color: var(--blue-200);
    }

    .section-title {
      font-size: clamp(1.9rem, 4vw, 2.8rem);
      font-weight: 800;
      line-height: 1.15;
      margin-bottom: 16px;
    }

    .section-title--light {
      color: #fff;
    }

    .section-desc {
      color: var(--text-2);
      font-size: 1.05rem;
      margin-top: 4px;
      margin-bottom: 0;
    }

    .section-head-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
      margin-bottom: 40px;
    }

    /* lazy-img используется только для динамически генерируемых элементов (галерея, видео) */
    .lazy-img {
      opacity: 0;
      transition: opacity 0.45s ease;
    }

    .lazy-img.is-loaded {
      opacity: 1;
    }

    /* lazy-bg для видео-карточек генерируемых через JS */
    .lazy-bg {
      background-color: rgba(26, 127, 196, 0.15);
    }

    .lazy-bg.is-loaded {
      transition: filter 0.45s ease, opacity 0.45s ease;
    }

    /* ── Nav ───────────────────────────────────────────────── */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 900;
      transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
      padding: 18px 0;
    }

    .nav--scrolled {
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(16px);
      box-shadow: 0 2px 20px rgba(26, 74, 140, 0.1);
      padding: 10px 0;
    }

    .nav-inner {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    /* Logo */
    .nav-logo-circle {
      width: 96px;
      height: 96px;
      border-radius: 50%;
      background: transparent;
      padding: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: none;
      transition: all var(--transition);
    }

    .nav-logo-circle:hover {
      transform: scale(1.05);
    }

    .nav--scrolled .nav-logo-circle {
      width: 56px;
      height: 56px;
      background: transparent;
      box-shadow: none;
      padding: 0;
    }

    .nav-logo-img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    /* Desktop links */
    .nav-links-desktop {
      display: flex;
      align-items: center;
      gap: 28px;
    }

    .nav-links-desktop a {
      font-size: 0.875rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.92);
      position: relative;
      padding-bottom: 2px;
      transition: color var(--transition);
    }

    .nav-links-desktop a::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 2px;
      background: #fff;
      border-radius: 2px;
      transition: width var(--transition);
    }

    .nav-links-desktop a:hover::after {
      width: 100%;
    }

    .nav--scrolled .nav-links-desktop a {
      color: var(--blue-900);
    }

    .nav--scrolled .nav-links-desktop a::after {
      background: var(--blue-500);
    }

    .nav-cta-desktop {
      display: flex;
    }

    /* Mobile menu overlay */
    .nav-menu-overlay {
      position: fixed;
      inset: 0;
      z-index: 800;
      background: #fff;
      display: flex;
      flex-direction: column;
      padding: 24px;
      opacity: 0;
      transform: translateX(100%);
      transition: opacity 0.32s ease, transform 0.32s ease;
      pointer-events: none;
    }

    .nav-menu-overlay.open {
      opacity: 1;
      transform: translateX(0);
      pointer-events: all;
    }

    .nav-menu-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 40px;
    }

    .nav-menu-logo {
      height: 108px;
      width: auto;
    }

    .nav-menu-close-btn {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--blue-50);
      color: var(--text-2);
      font-size: 1.1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background var(--transition);
    }

    .nav-menu-close-btn:hover {
      background: var(--blue-100);
    }

    .nav-menu-links {
      display: flex;
      flex-direction: column;
      gap: 4px;
      flex: 1;
    }

    .nav-menu-links a {
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--blue-900);
      padding: 14px 0;
      border-bottom: 1px solid var(--blue-50);
      display: block;
      transition: color var(--transition), padding-left var(--transition);
    }

    .nav-menu-links a:hover {
      color: var(--blue-400);
      padding-left: 8px;
    }

    .nav-menu-footer {
      margin-top: 32px;
    }

    /* Burger */
    .nav-burger {
      display: none;
      flex-direction: column;
      gap: 5px;
      padding: 4px;
    }

    .nav-burger span {
      display: block;
      width: 24px;
      height: 2px;
      background: rgba(255, 255, 255, 0.9);
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    .nav--scrolled .nav-burger span {
      background: var(--blue-900);
    }

    .nav-burger.active span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .nav-burger.active span:nth-child(2) {
      opacity: 0;
    }

    .nav-burger.active span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

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

      .nav-cta-desktop {
        display: none;
      }

      .nav-burger {
        display: flex;
      }
    }

    /* ── Hero ──────────────────────────────────────────────── */
    .hero {
      position: relative;
      min-height: 100svh;
      display: flex;
      align-items: center;
      overflow: hidden;
      padding-top: 80px;
    }

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

    .hero-bg-sea {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(105deg, rgba(5, 20, 45, 0.16) 0%, rgba(8, 31, 66, 0.10) 42%, rgba(10, 43, 87, 0.03) 100%),
        url('hotel4.jpg') center center / cover no-repeat;
    }

    .hero-bg-sea::before {
      content: '';
      position: absolute;
      inset: 0 38% 0 0;
      background:
        linear-gradient(90deg, rgba(5, 21, 48, 0.34) 0%, rgba(12, 67, 112, 0.18) 56%, rgba(18, 125, 178, 0) 100%);
      opacity: 1;
    }

    .hero-bg-sea::after {
      content: '';
      position: absolute;
      inset: auto -5% -4% -5%;
      height: 34%;
      /*background:
        radial-gradient(58% 100px at 20% 100%, rgba(89,214,255,0.22) 0 56%, transparent 58%),
        radial-gradient(48% 92px at 62% 100%, rgba(43,172,228,0.24) 0 56%, transparent 58%),
        radial-gradient(58% 110px at 90% 100%, rgba(15,106,182,0.20) 0 56%, transparent 58%),
        linear-gradient(180deg, rgba(24,151,214,0.24) 0%, rgba(114,228,255,0.38) 55%, rgba(221,250,255,0.15) 100%);
      */
      background-size: 32% 100%, 34% 100%, 32% 100%, auto;
      background-repeat: repeat-x;
      animation: heroWaveDrift 28s linear infinite;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(7, 29, 63, 0.14) 0%, rgba(13, 53, 103, 0.06) 50%, rgba(13, 53, 103, 0.01) 100%);
    }

    .hero-blob {
      display: none;
    }

    /* Two-column hero layout */
    .hero-layout {
      position: relative;
      z-index: 2;
      max-width: 1180px;
      margin: 0 auto;
      padding: 60px 24px 100px;
      display: grid;
      grid-template-columns: minmax(0, 560px) 1fr;
      gap: 40px;
      align-items: center;
      width: 100%;
    }

    .hero-content {
      color: #fff;
      min-width: 0;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      background: rgba(255, 255, 255, 0.14);
      border: 1px solid rgba(255, 255, 255, 0.25);
      border-radius: 50px;
      padding: 7px 16px;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 24px;
      color: rgba(255, 255, 255, 0.88);
    }

    .hero-title {
      font-size: clamp(4rem, 8vw, 7rem);
      font-weight: 700;
      line-height: 0.95;
      margin-bottom: 18px;
      display: flex;
      flex-direction: column;
      gap: 6px;
      font-family: 'Cormorant Garamond', Georgia, serif;
    }

    .hero-title-main {
      letter-spacing: -0.01em;
      font-style: italic;
    }

    .hero-title-sub {
      font-size: clamp(2.2rem, 4.5vw, 4.2rem);
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      opacity: 0.92;
      font-style: italic;
      font-family: 'Cormorant Garamond', Georgia, serif;
    }

    .hero-mobile-photo {
      display: none;
    }

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

    .hero-sub {
      font-size: clamp(1rem, 1.8vw, 1.15rem);
      opacity: 0.95;
      margin-bottom: 12px;
      font-weight: 500;
    }

    .hero-desc {
      font-size: 0.98rem;
      opacity: 0.88;
      margin-bottom: 36px;
      line-height: 1.8;
      max-width: 520px;
      padding: 18px 22px;
      border-radius: 20px;
      background: rgba(6, 28, 60, 0.18);
      border: 1px solid rgba(255, 255, 255, 0.18);
      backdrop-filter: none;
    }

    .hero-btns {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 44px;
    }

    /* Perk pills with glow */
    .hero-perks {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .hero-perk {
      display: flex;
      align-items: center;
      gap: 10px;
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 50px;
      padding: 9px 16px;
      font-size: 0.82rem;
      font-weight: 600;
      box-shadow: 0 8px 24px rgba(7, 29, 63, 0.14);
      transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
    }

    .hero-perk:hover {
      background: rgba(255, 255, 255, 0.2);
      box-shadow: 0 12px 30px rgba(7, 29, 63, 0.2);
      transform: translateY(-2px);
    }

    .hero-perk-icon {
      display: flex;
      align-items: center;
      opacity: 0.95;
    }

    .hero-perk-text {
      white-space: nowrap;
    }

    .hero-right {
      display: none;
    }

    .hero-wave-bottom {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 1;
      pointer-events: none;
    }

    .hero-wave-bottom svg {
      width: 100%;
      display: block;
    }

    @keyframes heroWaveDrift {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-140px);
      }
    }

    @media (max-width: 768px) {
      .hero {
        min-height: auto;
      }

      .hero-bg {
        inset: 0;
      }

      .hero-layout {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 100px 24px 90px;
        max-width: 100vw;
      }

      .hero-right {
        display: none;
      }

      .hero-bg-sea {
        background: linear-gradient(140deg, var(--blue-900) 0%, var(--blue-700) 100%);
      }

      .hero-bg-sea::before {
        inset: 0;
        background: linear-gradient(180deg, rgba(5, 21, 48, 0.18) 0%, rgba(12, 67, 112, 0.08) 100%);
      }

      .hero-bg-sea::after,
      .hero-wave-bottom {
        display: none;
      }

      .hero-content {
        text-align: center;
      }

      .hero-mobile-photo {
        display: block;
        width: min(280px, calc(100vw - 56px));
        aspect-ratio: 1;
        margin: 18px auto 20px;
        overflow: hidden;
        border-radius: 26px;
        border: 1px solid rgba(255, 255, 255, 0.34);
        box-shadow: 0 24px 60px rgba(1, 17, 42, 0.34);
      }

      .hero-sub,
      .hero-desc {
        width: min(320px, calc(100vw - 48px));
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        overflow-wrap: break-word;
      }

      .hero-btns {
        justify-content: center;
      }

      .hero-perks {
        justify-content: center;
      }

      .hero-desc {
        margin-left: auto;
        margin-right: auto;
      }
    }

    /* ── Rooms showcase ───────────────────────────────────── */
    .booking-placeholder {
      min-height: 360px;
      border: 2px dashed var(--blue-200);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.82);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      text-align: center;
      padding: 48px;
      box-shadow: var(--shadow);
      backdrop-filter: blur(8px);
    }

    .booking-placeholder-icon {
      font-size: 3rem;
    }

    .booking-placeholder-title {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--blue-700);
    }

    .booking-placeholder-note {
      font-size: 0.9rem;
      color: var(--text-3);
      max-width: 540px;
    }

    .rooms-showcase {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-auto-rows: 220px;
      gap: 18px;
      margin-top: 28px;
    }

    .rooms-main-card,
    .rooms-side-card {
      position: relative;
      overflow: hidden;
      border-radius: 28px;
      box-shadow: var(--shadow-md);
    }

    .rooms-main-card img,
    .rooms-side-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .rooms-main-card::after,
    .rooms-side-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(7, 29, 63, 0.55) 0%, rgba(7, 29, 63, 0.08) 55%, rgba(7, 29, 63, 0) 100%);
    }

    .rooms-main-card {
      grid-column: span 2;
      grid-row: span 2;
    }

    .rooms-side-stack {
      display: contents;
    }

    .rooms-main-card .rooms-card-copy,
    .rooms-side-card .rooms-card-copy {
      position: absolute;
      left: 24px;
      right: 24px;
      bottom: 22px;
      z-index: 1;
      color: #fff;
    }

    .rooms-card-copy strong {
      display: block;
      font-size: 1.2rem;
      font-weight: 800;
      margin-bottom: 6px;
    }

    .rooms-card-copy span {
      font-size: 0.92rem;
      opacity: 0.88;
    }

    .rooms-side-card {
      min-height: 0;
    }

    .rooms-note {
      margin-top: 18px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
      padding: 18px 22px;
      background: rgba(255, 255, 255, 0.72);
      border: 1px solid rgba(127, 212, 245, 0.55);
      border-radius: 20px;
      backdrop-filter: blur(8px);
    }

    .rooms-note p {
      color: var(--text-2);
    }

    @media (max-width: 900px) {
      .rooms-showcase {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 190px;
      }

      .rooms-main-card {
        grid-column: span 2;
        grid-row: span 1;
      }
    }

    @media (max-width: 640px) {
      .rooms-showcase {
        grid-template-columns: 1fr;
      }

      .rooms-main-card {
        grid-column: span 1;
      }
    }

    /* ── Gallery tabs ──────────────────────────────────────── */
    .gallery-tabs {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }

    .gallery-tab {
      padding: 9px 20px;
      border-radius: 50px;
      font-size: 0.875rem;
      font-weight: 600;
      background: #fff;
      color: var(--text-2);
      border: 2px solid var(--blue-100);
      transition: all var(--transition);
    }

    .gallery-tab:hover {
      border-color: var(--blue-300);
      color: var(--blue-500);
    }

    .gallery-tab.active {
      background: var(--blue-500);
      color: #fff;
      border-color: var(--blue-500);
      box-shadow: 0 4px 14px rgba(26, 127, 196, 0.35);
    }

    /* ── Gallery mosaic ────────────────────────────────────── */
    .gallery-mosaic {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-auto-rows: 200px;
      gap: 12px;
    }

    .gallery-item {
      border-radius: 14px;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      animation: fadeInUp 0.4s ease both;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }

    .gallery-item--large {
      grid-column: span 2;
      grid-row: span 2;
    }

    .gallery-item--wide {
      grid-column: span 2;
    }

    .gallery-item--normal {}

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .gallery-item-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(13, 53, 103, 0.75) 0%, transparent 55%);
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      padding: 14px 16px;
      opacity: 0;
      transition: opacity var(--transition);
    }

    .gallery-item:hover .gallery-item-overlay {
      opacity: 1;
    }

    .gallery-item:hover img {
      transform: scale(1.04);
    }

    .gallery-item:hover {
      transform: scale(1.015);
      transition: transform var(--transition);
    }

    .gallery-item-label {
      color: #fff;
      font-size: 0.875rem;
      font-weight: 600;
    }

    .gallery-zoom-icon {
      color: #fff;
      display: flex;
      align-items: center;
    }

    @media (max-width: 768px) {
      .gallery-mosaic {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
      }

      .gallery-item--large {
        grid-column: span 2;
        grid-row: span 1;
      }

      .gallery-item--wide {
        grid-column: span 2;
      }
    }

    /* ── Video carousel ────────────────────────────────────── */
    .video-carousel-wrap {
      position: relative;
      padding: 0 60px;
    }

    .video-track {
      display: flex;
      gap: 16px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      padding: 12px 4px 20px;
      scrollbar-width: none;
      -webkit-overflow-scrolling: touch;
    }

    .video-track::-webkit-scrollbar {
      display: none;
    }

    .video-card {
      flex: 0 0 auto;
      border-radius: var(--radius);
      cursor: pointer;
      position: relative;
      background-color: var(--blue-500);
      background-size: cover;
      background-position: center;
      overflow: hidden;
      scroll-snap-align: start;
      transition: transform var(--transition), box-shadow var(--transition);
    }

    .video-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(5, 20, 45, 0.78) 0%, rgba(5, 20, 45, 0.16) 55%, rgba(5, 20, 45, 0.04) 100%);
    }

    .video-card--vertical {
      width: 190px;
      aspect-ratio: 9/16;
    }

    .video-card--square {
      width: 250px;
      aspect-ratio: 1/1;
    }

    .video-card:hover {
      transform: scale(1.04);
      box-shadow: var(--shadow-lg);
    }

    .video-play-btn {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 54px;
      height: 54px;
      background: rgba(255, 255, 255, 0.22);
      backdrop-filter: blur(8px);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2px solid rgba(255, 255, 255, 0.45);
      transition: background var(--transition), transform var(--transition);
    }

    .video-card:hover .video-play-btn {
      background: rgba(255, 255, 255, 0.38);
      transform: translate(-50%, -50%) scale(1.1);
    }

    .video-card-label {
      position: absolute;
      bottom: 12px;
      left: 12px;
      right: 12px;
      color: #fff;
      font-size: 0.82rem;
      font-weight: 600;
      text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
    }

    .carousel-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 2;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: #fff;
      box-shadow: var(--shadow-md);
      color: var(--blue-700);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background var(--transition), color var(--transition), transform var(--transition);
    }

    .carousel-arrow:hover {
      background: var(--blue-500);
      color: #fff;
      transform: translateY(-50%) scale(1.08);
    }

    .carousel-prev {
      left: 8px;
    }

    .carousel-next {
      right: 8px;
    }

    @media (max-width: 600px) {
      .video-carousel-wrap {
        padding: 0 44px;
      }
    }

    /* ── About ─────────────────────────────────────────────── */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: center;
      margin-top: 48px;
    }

    .about-photo-wrap {
      position: relative;
      height: 420px;
    }

    .about-photo {
      position: absolute;
      border-radius: var(--radius);
      background-size: cover;
      background-position: center;
      box-shadow: var(--shadow-md);
    }

    .about-photo-1 {
      inset: 0 40px 0 0;
    }

    .about-photo-2 {
      width: 52%;
      aspect-ratio: 1;
      bottom: -24px;
      right: 0;
      border: 4px solid var(--bg);
    }

    .about-photo-badge {
      position: absolute;
      bottom: 20px;
      left: 20px;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(10px);
      border-radius: 50px;
      padding: 8px 16px;
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--blue-700);
      box-shadow: var(--shadow);
    }

    .about-text p {
      color: var(--text-2);
      margin-bottom: 16px;
      line-height: 1.8;
    }

    .about-stats {
      display: flex;
      gap: 24px;
      margin-top: 32px;
    }

    .about-stat {
      text-align: center;
    }

    .about-stat-num {
      display: block;
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--blue-500);
      line-height: 1.1;
      margin-bottom: 4px;
    }

    .about-stat span:last-child {
      font-size: 0.78rem;
      color: var(--text-3);
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    @media (max-width: 768px) {
      .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .about-photo-wrap {
        height: 280px;
      }
    }

    /* ── Services cards ────────────────────────────────────── */
    .services-cards {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-top: 48px;
    }

    .service-card {
      background: #fff;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: transform var(--transition), box-shadow var(--transition);
    }

    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
    }

    .service-card-top {
      height: 140px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .service-card-top-icon {
      font-size: 3rem;
      position: relative;
      z-index: 1;
      filter: drop-shadow(0 4px 10px rgba(26, 74, 140, 0.25));
    }

    .service-card-svg {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .service-card-body {
      padding: 14px 16px 18px;
    }

    .service-badge {
      display: inline-block;
      padding: 3px 12px;
      border-radius: 50px;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      margin-bottom: 8px;
    }

    .service-badge--free {
      background: #E0F7EC;
      color: #1A8A4A;
    }

    .service-badge--paid {
      background: var(--blue-50);
      color: var(--blue-700);
    }

    .service-card-name {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--text);
      line-height: 1.3;
    }

    @media (max-width: 900px) {
      .services-cards {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 480px) {
      .services-cards {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    /* ── Location ──────────────────────────────────────────── */
    .map-wrap {
      margin-top: 40px;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-md);
    }

    /* ── Ratings ───────────────────────────────────────────── */
    .ratings-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-top: 48px;
    }

    .rating-card {
      background: #fff;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      overflow: hidden;
      transition: transform var(--transition), box-shadow var(--transition);
    }

    .rating-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }

    .rating-link {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      padding: 24px 16px;
      text-align: center;
    }

    .rating-logo-wrap {
      width: 64px;
      height: 64px;
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, 0.92);
      box-shadow: inset 0 0 0 1px rgba(26, 74, 140, 0.08);
      overflow: hidden;
    }

    .rating-logo-wrap img {
      width: 38px;
      height: 38px;
      object-fit: contain;
      display: block;
    }

    .rating-logo-text {
      color: #fff;
      font-size: 1.4rem;
      font-weight: 800;
    }

    .rating-name {
      font-size: 0.875rem;
      font-weight: 700;
      color: var(--text);
    }

    .rating-score {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .rating-num {
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--blue-500);
    }

    .rating-stars {
      color: #f5a623;
      font-size: 0.7rem;
      letter-spacing: 2px;
    }

    .rating-reviews {
      font-size: 0.78rem;
      color: var(--text-3);
    }

    .rating-arrow {
      font-size: 1rem;
      color: var(--blue-200);
      transition: transform var(--transition);
    }

    .rating-card:hover .rating-arrow {
      transform: translateX(4px);
    }

    @media (max-width: 900px) {
      .ratings-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    /* ── Contacts ──────────────────────────────────────────── */
    .contacts-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      margin-top: 48px;
    }

    .contacts-info {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }

    .contact-icon {
      font-size: 1.4rem;
      width: 28px;
      flex-shrink: 0;
    }

    .contact-label {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--blue-200);
      margin-bottom: 3px;
    }

    .contact-value {
      font-size: 1.05rem;
      font-weight: 600;
      color: #fff;
      transition: color var(--transition);
    }

    a.contact-value:hover {
      color: var(--blue-200);
    }

    .messenger-row {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 8px;
    }

    .messenger-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 18px;
      border-radius: 50px;
      font-size: 0.875rem;
      font-weight: 600;
      transition: transform var(--transition), box-shadow var(--transition);
    }

    .messenger-btn svg,
    .nav-mess-btn svg,
    .fab-item svg {
      flex-shrink: 0;
      display: block;
    }

    .messenger-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    }

    .messenger-btn--wa {
      background: #25D366;
      color: #fff;
    }

    .messenger-btn--tg {
      background: #2CA5E0;
      color: #fff;
    }

    .messenger-btn--mx {
      background: rgba(255, 255, 255, 0.15);
      color: #fff;
      border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .messenger-icon-img,
    .nav-mess-icon-img {
      width: 20px;
      height: 20px;
      object-fit: contain;
      display: block;
    }

    .contacts-form-wrap {
      background: rgba(255, 255, 255, 0.09);
      backdrop-filter: blur(14px);
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: var(--radius);
      padding: 32px;
    }

    .contacts-form-wrap .btn-primary[disabled] {
      opacity: 0.45;
      cursor: not-allowed;
      pointer-events: none;
      box-shadow: none;
      filter: grayscale(0.2);
    }

    .form-title {
      font-size: 1.2rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 24px;
    }

    .form-sent {
      text-align: center;
      padding: 40px 0;
    }

    .form-sent-icon {
      width: 64px;
      height: 64px;
      background: rgba(255, 255, 255, 0.18);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      color: #fff;
      margin: 0 auto 16px;
    }

    .form-sent h3 {
      font-size: 1.3rem;
      color: #fff;
      margin-bottom: 8px;
    }

    .form-sent p {
      color: var(--blue-200);
    }

    @media (max-width: 768px) {
      .contacts-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }
    }

    /* ── Forms ─────────────────────────────────────────────── */
    .form-group {
      margin-bottom: 16px;
    }

    .form-group label {
      display: block;
      font-size: 0.78rem;
      font-weight: 700;
      margin-bottom: 6px;
      color: var(--blue-200);
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 12px 16px;
      border-radius: var(--radius-sm);
      border: 1.5px solid rgba(255, 255, 255, 0.18);
      background: rgba(255, 255, 255, 0.08);
      color: #fff;
      transition: border-color var(--transition), background var(--transition);
      resize: none;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: rgba(255, 255, 255, 0.38);
    }

    .form-group input:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--blue-300);
      background: rgba(255, 255, 255, 0.14);
    }

    .form-group input.err,
    .form-group textarea.err {
      border-color: #ff7070;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .form-check {
      margin: 12px 0 20px;
    }

    .form-check label {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.7);
      cursor: pointer;
    }

    .form-check input[type="checkbox"] {
      margin-top: 2px;
      accent-color: var(--blue-300);
    }

    .form-check-label {
      display: inline-flex;
      align-items: flex-start;
      gap: 10px;
      line-height: 1.5;
    }

    .form-inline-link {
      color: var(--blue-300);
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .form-inline-link:hover {
      color: #fff;
    }

    .form-error {
      display: block;
      font-size: 0.78rem;
      color: #ff9090;
      margin-top: 4px;
    }

    /* Modal forms */
    .modal-box .form-group label {
      color: var(--text-2);
      text-transform: none;
      letter-spacing: 0;
      font-size: 0.85rem;
      font-weight: 600;
    }

    .modal-box .form-group input,
    .modal-box .form-group textarea {
      background: var(--bg);
      border-color: var(--blue-100);
      color: var(--text);
    }

    .modal-box .form-group input::placeholder,
    .modal-box .form-group textarea::placeholder {
      color: var(--text-3);
    }

    .modal-box .form-group input:focus,
    .modal-box .form-group textarea:focus {
      border-color: var(--blue-400);
      background: #fff;
    }

    .modal-box .form-check label {
      color: var(--text-2);
    }

    .modal-box .btn-primary[disabled] {
      opacity: 0.45;
      cursor: not-allowed;
      pointer-events: none;
      box-shadow: none;
      filter: grayscale(0.2);
    }

    .modal-box .form-error {
      color: #e53e3e;
    }

    .policy-copy {
      display: grid;
      gap: 14px;
      margin-top: 16px;
      color: var(--text-2);
      line-height: 1.65;
      font-size: 0.98rem;
    }

    /* ── Footer ────────────────────────────────────────────── */
    .footer {
      background: var(--blue-900);
      color: rgba(255, 255, 255, 0.75);
      padding: 64px 0 32px;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }

    .footer-logo {
      height: 108px;
      width: auto;
      margin-bottom: 14px;
    }

    .footer-tagline {
      font-size: 0.875rem;
      margin-bottom: 20px;
      opacity: 0.65;
    }

    .footer-nav-title {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--blue-300);
      margin-bottom: 16px;
    }

    .footer-nav ul {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-nav a,
    .footer-contact-link {
      font-size: 0.9rem;
      transition: color var(--transition);
      display: block;
      margin-bottom: 8px;
    }

    .footer-nav a:hover,
    .footer-contact-link:hover {
      color: #fff;
    }

    .footer-contact-link {
      font-weight: 600;
    }

    .footer-address {
      font-size: 0.82rem;
      opacity: 0.55;
      margin-top: 4px;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding-top: 24px;
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      align-items: center;
      justify-content: space-between;
      font-size: 0.78rem;
      opacity: 0.45;
    }

    .footer-links:hover {
      opacity: 1;
      color: #fff;
    }

    @media (max-width: 768px) {
      .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    /* ── Modals ────────────────────────────────────────────── */
    .modal-overlay {
      position: fixed;
      inset: 0;
      z-index: 1000;
      background: rgba(7, 29, 63, 0.72);
      backdrop-filter: blur(6px);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      animation: fadeIn 0.22s ease;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    .modal-box {
      background: #fff;
      border-radius: var(--radius);
      padding: 40px;
      width: 100%;
      max-width: 520px;
      position: relative;
      box-shadow: 0 24px 80px rgba(7, 29, 63, 0.3);
      animation: slideUp 0.28s ease;
      max-height: 90svh;
      overflow-y: auto;
    }

    .modal-box--policy {
      max-width: 720px;
    }

    @keyframes slideUp {
      from {
        opacity: 0;
        transform: translateY(28px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .modal-close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--blue-50);
      color: var(--text-2);
      font-size: 0.9rem;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background var(--transition);
    }

    .modal-close:hover {
      background: var(--blue-100);
    }

    .modal-title {
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--blue-900);
      margin-bottom: 6px;
    }

    .modal-subtitle {
      color: var(--text-3);
      font-size: 0.9rem;
      margin-bottom: 28px;
    }

    .modal-success {
      text-align: center;
      padding: 20px 0;
    }

    .modal-success-icon {
      width: 72px;
      height: 72px;
      background: var(--blue-50);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      color: var(--blue-500);
      margin: 0 auto 20px;
    }

    .modal-success h3 {
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--blue-900);
      margin-bottom: 8px;
    }

    .modal-success p {
      color: var(--text-3);
      margin-bottom: 24px;
    }

    /* Lightbox */
    .lb-overlay {
      background: rgba(4, 15, 32, 0.96);
    }

    .lb-close {
      position: fixed;
      top: 20px;
      right: 20px;
      z-index: 10;
      color: rgba(255, 255, 255, 0.8);
      background: rgba(255, 255, 255, 0.1);
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
    }

    .lb-arrow {
      position: fixed;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      width: 54px;
      height: 54px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
      font-size: 2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background var(--transition);
    }

    .lb-arrow:hover {
      background: rgba(255, 255, 255, 0.22);
    }

    .lb-prev {
      left: 20px;
    }

    .lb-next {
      right: 20px;
    }

    .lb-img-wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
    }

    .lb-img {
      width: min(720px, 85vw);
      aspect-ratio: 4/3;
      border-radius: var(--radius);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background: #091a33;
    }

    .lb-img img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }

    .lb-label {
      color: #fff;
      font-size: 1.1rem;
      font-weight: 600;
    }

    .lb-counter {
      color: rgba(255, 255, 255, 0.5);
      font-size: 0.85rem;
    }

    /* Video modal */
    .video-modal-box {
      background: #000;
      border-radius: var(--radius);
      width: min(700px, 90vw);
      position: relative;
      overflow: hidden;
    }

    .video-player-wrap {
      aspect-ratio: 16/9;
    }

    .video-player-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      background-size: cover;
      background-position: center;
      position: relative;
      isolation: isolate;
    }

    .video-player-placeholder::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: -1;
      background: linear-gradient(to top, rgba(5, 20, 45, 0.8) 0%, rgba(5, 20, 45, 0.2) 55%, rgba(5, 20, 45, 0.12) 100%);
    }

    .video-play-icon {
      font-size: 3rem;
      color: rgba(255, 255, 255, 0.8);
    }

    .video-player-label {
      color: rgba(255, 255, 255, 0.7);
      font-size: 1rem;
      font-weight: 600;
    }

    .video-modal-box .modal-close {
      background: rgba(255, 255, 255, 0.14);
      color: #fff;
    }

    /* ── FAB ───────────────────────────────────────────────── */
    .fab-wrap {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 500;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
      transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .fab-wrap--hidden {
      opacity: 0;
      pointer-events: none;
      transform: translateY(16px);
    }

    .fab-main {
      position: relative;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: #25D366;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
      transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
      z-index: 2;
    }

    .fab-main:hover {
      transform: scale(1.08);
      box-shadow: 0 10px 32px rgba(37, 211, 102, 0.6);
    }

    .fab-main.open {
      background: var(--blue-700);
      box-shadow: 0 6px 24px rgba(26, 74, 140, 0.45);
    }

    .fab-pulse {
      position: absolute;
      inset: -6px;
      border-radius: 50%;
      background: rgba(37, 211, 102, 0.3);
      animation: fabPulse 2s ease-in-out infinite;
    }

    .fab-main.open .fab-pulse {
      display: none;
    }

    @keyframes fabPulse {

      0%,
      100% {
        transform: scale(1);
        opacity: 0.7;
      }

      50% {
        transform: scale(1.3);
        opacity: 0;
      }
    }

    .fab-item {
      position: absolute;
      bottom: 0;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
      transition: transform 0.3s ease, opacity 0.3s ease, box-shadow var(--transition);
    }

    .fab-item img {
      width: 22px;
      height: 22px;
      object-fit: contain;
      display: block;
    }

    .fab-item:hover {
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
      filter: brightness(1.1);
    }

    .fab-item-label {
      position: absolute;
      right: 56px;
      white-space: nowrap;
      background: rgba(20, 30, 50, 0.85);
      color: #fff;
      backdrop-filter: blur(6px);
      font-size: 0.78rem;
      font-weight: 600;
      padding: 5px 12px;
      border-radius: 20px;
      pointer-events: none;
    }

    .nav-menu-contacts {
      padding: 16px 0;
      border-top: 1px solid var(--blue-50);
      border-bottom: 1px solid var(--blue-50);
      margin-bottom: 16px;
    }

    .nav-menu-phone {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--blue-700);
      margin-bottom: 14px;
    }

    .nav-menu-messengers {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .nav-mess-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 18px;
      border-radius: 50px;
      font-size: 0.875rem;
      font-weight: 700;
    }

    .nav-mess-btn--wa {
      background: #25D366;
      color: #fff;
    }

    .nav-mess-btn--tg {
      background: #2CA5E0;
      color: #fff;
    }

    .nav-mess-btn--mx {
      background: var(--blue-50);
      color: var(--blue-700);
    }

    @media (max-width: 600px) {
      .section {
        padding: 64px 0;
      }

      .section-head-row {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    /* ── Anim blocks ─────────────────────────────────────────── */
    .anim-block {
      opacity: 1;
      transform: none;
      transition: none;
    }

    .anim-block.anim-visible {
      opacity: 1;
      transform: none;
    }

    .blur-blob {
      display: none;
    }

    /* ── Service card with photo top ─────────────────────── */
    .service-card-top {
      height: 140px;
      position: relative;
      overflow: hidden;
      background: var(--blue-100);
    }
    .service-card-top img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      inset: 0;
      transition: transform 0.5s ease;
      display: block;
    }
    .service-card:hover .service-card-top img { transform: scale(1.08); }
    .service-card-top-shade {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(13,53,103,0.35) 0%, transparent 60%);
      pointer-events: none;
      z-index: 1;
    }

    /* ── Video track inside container ───────────────────── */
    .video-carousel-wrap {
      position: relative;
      padding: 0 56px;
      margin-top: 32px;
    }
    .video-track {
      display: flex;
      gap: 16px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      padding: 12px 4px 20px;
      scrollbar-width: none;
      -webkit-overflow-scrolling: touch;
    }
    .video-track::-webkit-scrollbar { display: none; }
    .video-card {
      flex: 0 0 auto;
      border-radius: var(--radius);
      cursor: pointer;
      position: relative;
      background-color: var(--blue-500);
      background-size: cover;
      background-position: center;
      overflow: hidden;
      scroll-snap-align: start;
      transition: transform var(--transition), box-shadow var(--transition);
    }
    .video-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(5,20,45,0.78) 0%, rgba(5,20,45,0.12) 60%, rgba(5,20,45,0) 100%);
    }
    .video-card--vertical { width: 200px; aspect-ratio: 9/16; }
    .video-card--square   { width: 260px; aspect-ratio: 1/1;  }
    .video-card:hover { transform: scale(1.04); box-shadow: var(--shadow-lg); }

    /* zoom icon variant */
    .video-zoom-btn {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%,-50%);
      width: 54px; height: 54px;
      background: rgba(255,255,255,0.22);
      backdrop-filter: blur(8px);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      border: 2px solid rgba(255,255,255,0.45);
      transition: background var(--transition), transform var(--transition);
      pointer-events: none;
    }
    .video-card:hover .video-zoom-btn,
    .video-card:hover .video-play-btn {
      background: rgba(255,255,255,0.38);
      transform: translate(-50%,-50%) scale(1.1);
    }

    /* ── Video modal with real <video> ──────────────────── */
    .video-modal-box {
      background: #000;
      border-radius: var(--radius);
      width: min(760px, 92vw);
      position: relative;
      overflow: hidden;
    }
    .video-player-wrap { aspect-ratio: 16/9; position: relative; }
    #video-player-placeholder {
      width: 100%; height: 100%;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center; gap: 12px;
      background-size: cover; background-position: center;
    }
    #real-video-player {
      width: 100%; height: 100%;
      object-fit: contain;
      display: block;
    }

    /* ── Section wave wrappers ──────────────────────────── */
    .section-wave { line-height: 0; margin-top: -1px; display: block; }
    .section-wave svg { display: block; width: 100%; }

    /* ── Rooms image centering ──────────────────────────── */
    .rooms-main-card img,
    .rooms-side-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      display: block;
    }

    [hidden] {
      display: none !important;
    }

    body.body-lock {
      overflow: hidden;
      touch-action: none;
      overscroll-behavior: none;
    }

    body.menu-open .nav {
      opacity: 0;
      pointer-events: none;
    }

    body.menu-open .fab-wrap,
    body.modal-open .fab-wrap {
      opacity: 0;
      pointer-events: none;
      transform: translateY(16px);
    }

    .hero-badge-icon {
      margin-right: 6px;
      flex-shrink: 0;
    }

    .hero-bg-sea {
      background:
        linear-gradient(105deg, rgba(5, 20, 45, 0.16) 0%, rgba(8, 31, 66, 0.10) 42%, rgba(10, 43, 87, 0.03) 100%),
        url('hotel4.jpg') center center / cover no-repeat;
    }

    .section-shell {
      position: relative;
      overflow: hidden;
    }

    .section-shell--transparent {
      background: transparent;
    }

    .section--services {
      background: #0f4c8d;
      color: #fff;
    }

    .section--services .section-label,
    .section--services .section-desc,
    .section--services .section-title {
      color: #fff;
    }

    .section-title--compact {
      margin-bottom: 0;
    }

    .rooms-content-wrap {
      position: relative;
      z-index: 1;
    }

    .blur-blob--rooms {
      width: 350px;
      height: 350px;
      background: rgba(27, 191, 230, 0.08);
      top: -80px;
      right: -80px;
    }

    .blur-blob--gallery {
      width: 400px;
      height: 400px;
      background: rgba(26, 74, 140, 0.06);
      top: 100px;
      left: -120px;
    }

    .blur-blob--video {
      width: 320px;
      height: 320px;
      background: rgba(27, 191, 230, 0.09);
      bottom: -60px;
      right: -60px;
    }

    .blur-blob--about {
      width: 360px;
      height: 360px;
      background: rgba(27, 191, 230, 0.07);
      top: 0;
      right: -100px;
    }

    .blur-blob--services {
      width: 300px;
      height: 300px;
      background: rgba(26, 74, 140, 0.06);
      bottom: 0;
      left: -80px;
    }

    .blur-blob--ratings {
      width: 280px;
      height: 280px;
      background: rgba(27, 191, 230, 0.08);
      top: 0;
      right: 0;
    }

    .about-photo--primary {
      background-image: url('images/11.webp');
    }

    .about-photo--secondary {
      background-image: url('images/1.webp');
    }

    .map-embed {
      border: 0;
      border-radius: 16px;
      display: block;
    }

    .gallery-item {
      width: 100%;
      border: 0;
      padding: 0;
      background: none;
      appearance: none;
      text-align: left;
      color: inherit;
      font: inherit;
    }

    .gallery-item:nth-child(1) { animation-delay: 0s; }
    .gallery-item:nth-child(2) { animation-delay: 0.05s; }
    .gallery-item:nth-child(3) { animation-delay: 0.1s; }
    .gallery-item:nth-child(4) { animation-delay: 0.15s; }
    .gallery-item:nth-child(5) { animation-delay: 0.2s; }
    .gallery-item:nth-child(6) { animation-delay: 0.25s; }
    .gallery-item:nth-child(7) { animation-delay: 0.3s; }
    .gallery-item:nth-child(8) { animation-delay: 0.35s; }

    .video-card {
      border: 0;
      padding: 0;
      appearance: none;
      color: inherit;
      font: inherit;
    }

    .video-card-media {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      z-index: 0;
    }

    .video-card::before {
      z-index: 1;
    }

    .video-play-btn,
    .video-zoom-btn,
    .video-card-label {
      z-index: 2;
    }

    .fab-item--wa {
      background: #25D366;
    }

    .fab-item--mx {
      background: #fff;
    }

    .fab-item--call {
      background: #0D3567;
    }

    .section-wave {
      line-height: 0;
      margin-top: -1px;
      display: block;
      background: var(--wave-bg, transparent);
    }

    .section-wave svg {
      display: block;
      width: 100%;
      height: 72px;
    }

    .section-wave path {
      fill: var(--wave-fill, transparent);
    }

    .section-wave--light-to-base {
      --wave-bg: #eef9ff;
      --wave-fill: #f5fbfe;
    }

    .section-wave--base-to-blue {
      --wave-bg: #f5fbfe;
      --wave-fill: #0f4c8d;
    }

    .section-wave--blue-to-light {
      --wave-bg: #0f4c8d;
      --wave-fill: #eef9ff;
    }

    .section-wave--light-to-blue {
      --wave-bg: #eef9ff;
      --wave-fill: #0f4c8d;
    }

    .section-wave--blue-to-base {
      --wave-bg: #0f4c8d;
      --wave-fill: #f5fbfe;
    }

    .section-wave--base-to-tint {
      --wave-bg: #f5fbfe;
      --wave-fill: #e8f6fd;
    }

    .section-wave--tint-to-blue {
      --wave-bg: #e8f6fd;
      --wave-fill: #0f4c8d;
    }

    .nav-menu-overlay {
      z-index: 1100;
      min-height: 100dvh;
      overflow-y: auto;
      overscroll-behavior: contain;
      padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px));
    }

    .nav-menu-top {
      position: sticky;
      top: 0;
      z-index: 2;
      background: #fff;
      padding-bottom: 10px;
    }

    .nav-menu-logo {
      max-width: calc(100% - 72px);
      object-fit: contain;
    }

    .nav-menu-footer {
      margin-top: auto;
    }

    @media (max-width: 900px) {
      .nav {
        padding: 12px 0;
      }

      .nav-logo-circle {
        width: 72px;
        height: 72px;
      }

      .nav-menu-logo {
        height: 72px;
      }
    }

    @media (max-width: 600px) {
      .nav-inner {
        padding: 0 16px;
      }

      .nav-menu-overlay {
        padding: 16px 16px calc(20px + env(safe-area-inset-bottom, 0px));
      }

      .nav-menu-top {
        margin-bottom: 16px;
      }

      .nav-menu-logo {
        height: 64px;
      }

      .nav-menu-links a {
        font-size: 1.15rem;
        padding: 12px 0;
      }

      .nav-menu-contacts {
        padding: 12px 0;
        margin-bottom: 10px;
      }

      .nav-menu-phone {
        font-size: 1rem;
      }

      .nav-menu-messengers {
        gap: 8px;
      }

      .nav-mess-btn {
        padding: 10px 14px;
      }

      .nav-menu-footer {
        position: sticky;
        bottom: calc(-16px);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 24%, #fff 100%);
        padding-top: 14px;
        padding-bottom: max(8px, env(safe-area-inset-bottom, 0px));
      }

      .video-carousel-wrap {
        padding: 0 20px 0 0;
      }

      .carousel-arrow {
        display: none;
      }
    }
