    :root {
      --bg: #f4efea;
      --bg-soft: #f8f4ef;
      --surface: #ffffff;
      --text: #12395b;
      --muted: #4a5661;
      --accent: #1ab8e7;
      --accent-dark: #0f8fbc;
      --gold: #d6a85a;
      --line: #e7ddd2;
      --shadow: 0 10px 30px rgba(20, 40, 60, 0.08);
      --container: 1400px;
      --header-h: 78px;
      --topbar-h: 34px;
    }

    * { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 0 0, rgba(214,168,90,0.06) 0 1px, transparent 1px) 0 0/140px 140px,
        radial-gradient(circle at 100% 100%, rgba(214,168,90,0.04) 0 1px, transparent 1px) 0 0/180px 180px,
        var(--bg);
      min-width: 320px;
    }

    img { max-width: 100%; display: block; }

    a { color: inherit; text-decoration: none; }

    button, input, textarea, select { font: inherit; }

    .container {
      width: min(calc(100% - 32px), var(--container));
      margin: 0 auto;
    }

    .topbar {
      height: var(--topbar-h);
      border-bottom: 1px solid rgba(214,168,90,0.18);
      background: rgba(255,255,255,0.35);
      backdrop-filter: blur(6px);
    }

    .topbar__row,
    .header__row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 100%;
      gap: 16px;
    }

    .topbar__phone {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 16px;
      font-weight: 500;
      color: #2691c1;
      text-decoration: none;
    }

    .topbar__phone-icon {
      display: block;
      width: 18px;
      height: 18px;
      object-fit: contain;
      flex: 0 0 18px;
    }
    
    .topbar__socials {
      display: flex;
      align-items: center;
      gap: 16px;
      font-size: 13px;
      color: #2691c1;
    }

    .topbar__social {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 26px;
      height: 26px;
      flex: 0 0 26px;
    }

    .topbar__social-icon {
      display: block;
      width: 26px;
      height: 26px;
      object-fit: contain;
    }

    .header {
      position: sticky;
      top: 0;
      z-index: 30;
      height: var(--header-h);
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(10px);
      box-shadow: 0 1px 0 rgba(20,40,60,0.05);
    }

    .logo {
      display: flex;
      align-items: center;
      min-width: 200px;
    }

    .logo__img {
      display: block;
      height: 72px;
      width: auto;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 24px;
      font-size: 16px;
      white-space: nowrap;
    }

    .nav a {
      position: relative;
      color: #465f77;
    }

    .nav a:hover,
    .nav a.is-active {
      color: var(--text);
    }

    .nav a.is-active::after,
    .nav a:hover::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -8px;
      height: 2px;
      background: var(--gold);
      border-radius: 2px;
    }

    .burger {
      display: none;
      width: 46px;
      height: 46px;
      border: 0;
      border-radius: 14px;
      background: transparent;
      cursor: pointer;
      padding: 0;
    }

    .burger span,
    .burger::before,
    .burger::after {
      content: "";
      display: block;
      width: 22px;
      height: 2px;
      background: var(--text);
      margin: 5px auto;
      transition: 0.25s ease;
      border-radius: 2px;
    }

    .hero {
      min-height: 78vh;
      position: relative;
      overflow: hidden;
    }

    .hero__video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      z-index: 0;
      pointer-events: none;
    }

    .hero__bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      z-index: 0;
    }

    .hero__inner {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1.05fr 1fr;
      align-items: center;
      min-height: inherit;
      padding: 56px 0 68px;
    }

    .hero__content {
      max-width: 520px;
      color: white;
      padding-left: 8px;
    }

    .eyebrow {
      display: inline-block;
      text-transform: uppercase;
      letter-spacing: 1.4px;
      font-size: 18px;
      color: #f0c56f;
      font-weight: 700;
      margin-bottom: 18px;
    }

    .hero h1 {
      margin: 0 0 22px;
      font-size: clamp(42px, 5.4vw, 74px);
      line-height: 0.98;
      font-weight: 700;
      letter-spacing: -0.02em;
    }

    .hero__actions {
      display: flex;
      gap: 14px;
      align-items: center;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 48px;
      padding: 0 24px;
      margin-top: 64px;
      border: 0;
      border-radius: 999px;
      background: var(--accent);
      color: white;
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 0.03em;
      text-transform: uppercase;
      cursor: pointer;
      box-shadow: 0 8px 20px rgba(26,184,231,0.28);
      transition: background 0.2s ease, transform 0.2s ease;
    }

    .btn:hover {
      background: var(--accent-dark);
      transform: translateY(-1px);
    }

    .btn--ghost {
      width: 48px;
      min-width: 48px;
      padding: 0;
      border-radius: 50%;
      position: relative;
    }

    .btn--ghost::before {
      content: "▶";
      font-size: 16px;
      margin-left: 2px;
    }

    .section {
      padding: 56px 0;
      position: relative;
    }

    .section--flush {
      padding-top: 0;
      padding-bottom: 0;
    }

    .about-card,
    .split-card,
    .yacht-card,
    .reviews-card {
      background: rgba(255,255,255,0.58);
      border: 1px solid rgba(231,221,210,0.78);
      border-radius: 26px;
    }

    .about-card {
      display: grid;
      grid-template-columns: 1.03fr 1fr;
      gap: 34px;
      padding: 22px;
      align-items: stretch;
    }

    .about-card__content {
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .about-card__actions {
      margin-top: auto;
      padding-top: 22px;
    }
    
    .visual {
      height: 100%;
      min-height: 0;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: var(--shadow);
      position: relative;
    }

    .visual__img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
    }

    h2 {
      margin: 0 0 16px;
      font-size: clamp(24px, 2.6vw, 40px);
      line-height: 1.02;
      letter-spacing: -0.02em;
    }

    .lead {
      color: var(--muted);
      font-size: 16px;
      line-height: 1.4;
    }

    .services__head {
      text-align: center;
      margin-bottom: 30px;
    }

    .cards-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .service-card {
      background: var(--surface);
      border: 1px solid rgba(231,221,210,0.85);
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(20,40,60,0.05);
    }

    .service-card__img {
      aspect-ratio: 1.06 / 0.86;
      position: relative;
      overflow: hidden;
    }

    .service-card__photo {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      object-position: center;
    }
    
    .service-card__body {
      padding: 18px 18px 20px;
    }

    .service-card h3 {
      margin: 0 0 10px;
      font-size: 28px;
      line-height: 1.04;
    }

    .service-card p {
      margin: 0;
      color: var(--muted);
      line-height: 1.5;
      font-size: 16px;
    }

    .events-section {
      padding-top: 68px;
    }

    .events__head {
      text-align: center;
      max-width: 900px;
      margin: 0 auto 34px;
    }

    .events__lead {
      margin: 0 auto;
      max-width: 760px;
    }

    .events-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      align-items: stretch;
    }

    .event-card {
      display: flex;
      flex-direction: column;
      min-height: 100%;
      background: rgba(255,255,255,0.78);
      border: 1px solid rgba(231,221,210,0.9);
      border-radius: 22px;
      overflow: hidden;
      box-shadow: 0 10px 24px rgba(20,40,60,0.06);
      transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    }

    .event-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 34px rgba(20,40,60,0.10);
      border-color: rgba(214,168,90,0.42);
    }

    .event-card__img {
      position: relative;
      aspect-ratio: 1.08 / 0.78;
      overflow: hidden;
      background: #ffffff;
    }

    .event-card__photo {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      object-position: center;
    }

    .event-card__date-badge {
      position: absolute;
      top: 16px;
      left: 16px;
      width: 74px;
      height: 74px;
      border-radius: 18px;
      background: linear-gradient(135deg, #e9c47d 0%, #cc9d43 100%);
      color: #ffffff;
      box-shadow: 0 10px 24px rgba(116, 66, 28, 0.22);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      line-height: 1;
    }

    .event-card__day {
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 4px;
    }

    .event-card__month {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .event-card__body {
      display: flex;
      flex-direction: column;
      flex: 1 1 auto;
      padding: 20px 20px 22px;
    }

    .event-card__meta {
      margin-bottom: 10px;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.03em;
      color: #0f8fbc;
      text-transform: uppercase;
    }

    .event-card__facts {
      display: grid;
      gap: 6px;
      margin: 0 0 14px;
    }

    .event-card__fact {
      font-size: 14px;
      line-height: 1.45;
      font-weight: 600;
      color: #12395b;
    }

    .event-register-btn {
      cursor: pointer;
    }



    .event-card h3 {
      margin: 0 0 12px;
      font-size: 26px;
      line-height: 1.08;
      color: #12395b;
    }

    .event-card p {
      margin: 0;
      color: var(--muted);
      line-height: 1.55;
      font-size: 16px;
    }

    .event-card__actions {
      margin-top: auto;
      padding-top: 22px;
    }

    .event-card .btn {
      width: 100%;
      margin-top: 0;
      min-height: 50px;
    }

    .events-alert {
      max-width: 760px;
      margin: 20px auto 0;
    }

    body.modal-open {
      overflow: hidden;
    }

    .event-modal {
      position: fixed;
      inset: 0;
      z-index: 120;
      display: none;
    }

    .event-modal.is-open {
      display: block;
    }

    .event-modal__backdrop {
      position: absolute;
      inset: 0;
      background: rgba(8, 20, 30, 0.55);
      backdrop-filter: blur(6px);
    }

    .event-modal__dialog {
      position: relative;
      width: min(92vw, 760px);
      max-height: calc(100vh - 40px);
      overflow-y: auto;
      margin: 20px auto;
      padding: 28px;
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.96);
      border: 1px solid rgba(231, 221, 210, 0.95);
      box-shadow: 0 20px 50px rgba(20, 40, 60, 0.22);
    }

    .event-modal__close {
      position: absolute;
      top: 12px;
      right: 12px;
      width: 42px;
      height: 42px;
      border: 0;
      border-radius: 50%;
      background: rgba(18, 57, 91, 0.08);
      color: #12395b;
      font-size: 28px;
      line-height: 1;
      cursor: pointer;
    }

    .event-modal__header {
      padding-right: 40px;
      margin-bottom: 18px;
    }

    .event-modal__header h2 {
      margin: 6px 0 0;
      color: #12395b;
    }

    .event-modal__info {
      display: grid;
      gap: 10px;
      margin-bottom: 22px;
      padding: 16px 18px;
      border-radius: 18px;
      background: rgba(15, 143, 188, 0.06);
      border: 1px solid rgba(15, 143, 188, 0.12);
      color: #35556f;
      line-height: 1.5;
    }

    .event-modal__info strong {
      color: #12395b;
    }

    .event-modal__note[hidden] {
      display: none !important;
    }

    .fareast-form--event .btn {
      margin-top: 0;
    }

    .weather-section {
      overflow: clip;
    }

    .weather-section__intro {
      text-align: center;
      max-width: 920px;
      margin: 0 auto 26px;
    }

    .weather-section__lead {
      max-width: 760px;
      margin: 0 auto;
    }

    .weather-embed {
      position: relative;
      width: 100vw;
      left: 50%;
      right: 50%;
      margin-left: -50vw;
      margin-right: -50vw;
      height: clamp(500px, 72vh, 920px);
      background: rgba(255,255,255,0.35);
      border-top: 1px solid rgba(214,168,90,0.22);
      border-bottom: 1px solid rgba(214,168,90,0.22);
      box-shadow: 0 18px 34px rgba(20,40,60,0.06);
    }

    .weather-embed iframe {
      display: block;
      width: 100%;
      height: 100%;
      border: 0;
    }

    .split-card {
      display: grid;
      grid-template-columns: 1fr 1fr;
      overflow: hidden;
      margin-bottom: 0;
    }

    .split-card__img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
    }

    .split-card--full,
    .stats-panel--full {
      width: 100%;
      border-radius: 0;
      border-left: 0;
      border-right: 0;
      margin: 0;
    }

    .split-card__media {
      min-height: 430px;
      position: relative;
      overflow: hidden;
    }

    .split-card__content {
      padding: 56px 54px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      background: rgba(255,255,255,0.72);
    }
    
    .split-card__content h2 {
      font-size: clamp(24px, 2.6vw, 40px);
      line-height: 1.02;
    }

    .split-card__content .lead {
      font-size: 18px;
      line-height: 1.6;
    }
    
    .stats-panel {
      display: grid;
      grid-template-columns: 1fr 1fr;
      overflow: hidden;
      background: var(--surface);
      border-radius: 0;
      box-shadow: none;
    }

    .stats-panel--full {
      width: 100%;
      border-radius: 0;
      border-left: 0;
      border-right: 0;
      margin: 0;
      box-shadow: none;
    }

    .stats-panel__content,
    .stats-panel__media {
      min-height: 370px;
    }

    .stats-panel__content {
      padding: 54px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      text-align: right;
    }

    .stats-panel__content h2 {
      font-size: clamp(24px, 2.6vw, 40px);
      line-height: 1.02;
    }

    .stats-panel__content .lead {
      font-size: 18px;
      line-height: 1.6;
    }
    
    .stats-panel__media {
      position: relative;
      overflow: hidden;
      min-height: 370px;
    }

    .stats-panel__img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      object-position: center;
    }
        
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-top: 26px;
      text-align: center;
    }

    .stat {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      gap: 10px;
    }

    .stat__icon {
      width: 54px;
      height: 54px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .stat__img {
      display: block;
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
    }

    .stat__value {
      font-size: 46px;
      line-height: 1;
      font-weight: 700;
      color: #114f87;
    }

    .stat__label {
      font-size: 12px;
      line-height: 1.3;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #9c8c7b;
    }

    .yacht-card {
      display: grid;
      grid-template-columns: 1.35fr 1fr;
      gap: 34px;
      padding: 22px;
      align-items: stretch;
    }

    .yacht-card__content {
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .yacht-card__actions {
      margin-top: auto;
      padding-top: 22px;
    }

    .visual--yacht {
      position: relative;
      height: 100%;
      min-height: 0;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: var(--shadow);
      align-self: stretch;
      background: #ffffff;
    }

    .visual--yacht .visual__img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center;
      display: block;
    }

    .badge {
      position: absolute;
      top: 42px;
      right: 38px;
      width: 112px;
      height: 112px;
      border-radius: 50%;
      background: linear-gradient(135deg, #e9c47d 0%, #cc9d43 100%);
      display: grid;
      place-items: center;
      text-align: center;
      color: white;
      font-weight: 700;
      box-shadow: var(--shadow);
    }

    .badge span { font-size: 18px; }
    .badge small {
      display: block;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .reviews {
      color: white;
      position: relative;
      overflow: hidden;
    }

    .reviews > .container {
      position: relative;
      z-index: 2;
    }

    .reviews__bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      z-index: 0;
    }

    .reviews__overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(20, 95, 135, 0.62), rgba(10, 55, 85, 0.72));
      z-index: 1;
    }

    .reviews-card {
      position: relative;
      overflow: hidden;
      display: grid;
      grid-template-columns: 1fr 1fr;
      background: rgba(255,255,255,0.88);
      color: var(--text);
    }

    .reviews__head {
      text-align: center;
      margin-bottom: 30px;
    }

    .reviews-card__media {
      min-height: 500px;
      position: relative;
      overflow: hidden;
      background: #ffffff;
      z-index: 2;
    }

    .reviews-card__img {
      position: absolute;
      top: 0;
      left: 50%;
      width: calc(100% + 220px);
      max-width: none;
      height: 100%;
      display: block;
      object-fit: cover;
      object-position: center;
      transform: translateX(-50%) scale(1.05);
      transform-origin: center center;
      will-change: transform;
      z-index: 2;
    }
    
    .reviews-card__content {
      padding: 46px 42px;
      background: rgba(248,244,239,0.97);
      z-index: 2;
    }

    .reviews-list {
      display: flex;
      flex-direction: column;
      gap: 18px;
      width: 100%;
    }

    .review-item {
      width: 100%;
      background: rgba(255, 255, 255, 0.88);
      border: 1px solid rgba(210, 230, 240, 0.7);
      border-radius: 22px;
      padding: 26px 22px 22px;
      box-shadow: 0 10px 24px rgba(20, 40, 60, 0.10);
      color: #12395b;
    }

    .review-item__name {
      font-size: 18px;
      font-weight: 500;
      margin-bottom: 6px;
      color: #12395b;
    }

    .review-item__meta {
      font-size: 16px;
      color: #5f7488;
      margin-bottom: 8px;
    }

    .review-item__stars {
      font-size: 20px;
      letter-spacing: 2px;
      color: #d6a85a;
      margin-bottom: 10px;
    }

    .review-item__text {
      font-size: 17px;
      line-height: 1.55;
      color: #3f566b;
      margin-bottom: 14px;
    }

    .review-item__footer {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .review-item__tag {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 40px;
      padding: 0 18px;
      border-radius: 999px;
      background: rgba(26, 184, 231, 0.10);
      border: 1px solid rgba(26, 184, 231, 0.22);
      color: #0f6f93;
      font-size: 14px;
    }

    .review-item__date {
      font-size: 16px;
      font-weight: 600;
      color: #12395b;
    }
    
    .advantages {
      padding: 20px 0 22px;
      background: #f8f4ef;
    }

    .advantages-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 26px;
      align-items: start;
    }

    .advantage-item {
      display: grid;
      grid-template-columns: 52px 1fr;
      gap: 16px;
      align-items: start;
    }

    .advantage-item__icon {
      width: 52px;
      height: 52px;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      padding-top: 2px;
    }

    .advantage-item__img {
      width: 52px;
      height: 52px;
      object-fit: contain;
      display: block;
    }

    .advantage-item__content h3 {
      margin: 0 0 6px;
      font-size: 16px;
      line-height: 1.18;
      font-weight: 700;
      color: #0f4f87;
    }

    .advantage-item__content p {
      margin: 0;
      font-size: 14px;
      line-height: 1.45;
      color: #17395a;
    }

    .form-shell {
      border-radius: 18px;
      background: rgba(255,255,255,0.46);
      border: 1px solid rgba(231,221,210,0.92);
      padding: 10px 0 0;
    }

    .hidden-field {
      display: none;
    }

    .fareast-form {
      display: grid;
      gap: 18px;
      margin-top: 18px;
      padding: 0 10px 10px;
    }

    .field label {
      display: block;
      margin-bottom: 7px;
      font-weight: 700;
      font-size: 15px;
      color: var(--text);
    }

    .field input,
    .field select,
    .field textarea {
      width: 100%;
      padding: 13px 14px;
      border: 1px solid #d7cdbf;
      border-radius: 14px;
      background: #f9f5f1;
      color: #1f1f1f;
      font-size: 16px;
      outline: none;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .field select:invalid {
      color: #7f8a94;
    }

    .field input:focus,
    .field select:focus,
    .field textarea:focus {
      border-color: #88aeca;
      box-shadow: 0 0 0 3px rgba(26, 184, 231, 0.10);
    }

    .field textarea {
      min-height: 170px;
      resize: none;
    }

    .turnstile-wrap {
      margin-top: 4px;
    }

    .form-legal {
      margin-top: 2px;
      color: #6a6a6a;
      font-size: 13px;
      line-height: 1.55;
    }

    .form-legal a {
      color: #0f8fbc;
      text-decoration: none;
      border-bottom: 1px solid rgba(15, 143, 188, 0.35);
      transition: color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
    }

    .form-legal a:hover {
      color: #0b7aa1;
      border-bottom-color: rgba(11, 122, 161, 0.55);
      opacity: 1;
    }

    .actions {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }

.actions .btn {
  margin-top: 0;
  width: auto;
  flex: 0 0 auto;
}

.actions .note {
  margin: 0;
  flex: 0 1 auto;
}

    .note {
      color: #6a6a6a;
      font-size: 14px;
      line-height: 1.5;
    }

    .form-alert {
      padding: 14px 16px;
      border-radius: 12px;
      margin-bottom: 18px;
      font-size: 15px;
      line-height: 1.45;
    }

    .form-alert--success {
      background: #eaf7ee;
      color: #17653a;
      border: 1px solid #b9dfc5;
    }

    .form-alert--error {
      background: #fff1f1;
      color: #962323;
      border: 1px solid #efb5b5;
      word-break: break-word;
    }

    .debug-box {
      margin-top: 18px;
      padding: 16px;
      background: #111111;
      color: #eaeaea;
      border-radius: 10px;
      overflow-x: auto;
      white-space: pre-wrap;
      font-family: Consolas, Monaco, monospace;
      font-size: 13px;
      line-height: 1.5;
    }

    .site-footer {
      position: relative;
      width: 100%;
      color: #f3f6f8;
      overflow: hidden;
    }

    .site-footer__bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      z-index: 0;
    }

    .site-footer__overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(10, 36, 66, 0.55), rgba(8, 28, 52, 0.65));
      z-index: 1;
    }

    .site-footer__inner {
      display: grid;
      grid-template-columns: max-content 1px auto;
      column-gap: 48px;
      align-items: start;
      padding: 34px 0 38px;
      position: relative;
      z-index: 2;
    }

    .site-footer__left {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .site-footer__title {
      margin: 0 0 8px;
      font-size: clamp(34px, 4vw, 56px);
      line-height: 1;
      font-weight: 700;
      letter-spacing: -0.03em;
      color: #ffffff;
    }

    .site-footer__subtitle {
      margin: 0;
      font-size: 18px;
      line-height: 1.35;
      color: rgba(243, 246, 248, 0.82);
    }

    .site-footer__socials {
      display: flex;
      gap: 16px;
      margin-top: 28px;
    }

    .site-footer__social {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      flex: 0 0 42px;
      border-radius: 50%;
      background: transparent;
      transition: transform 0.2s ease;
    }

    .site-footer__social:hover {
      transform: translateY(-2px);
      background: rgba(255, 255, 255, 0.14);
    }

    .site-footer__social-icon {
      width: 24px;
      height: 24px;
      object-fit: contain;
      display: block;
    }

    .site-footer__divider {
      width: 1px;
      height: 170px;
      background: linear-gradient(
        180deg,
        rgba(255,255,255,0.00),
        rgba(255,255,255,0.22),
        rgba(255,255,255,0.00)
      );
      justify-self: center;
    }

    .site-footer__right {
      display: grid;
      grid-template-columns: max-content 1px max-content;
      align-items: start;
      justify-content: start;
      column-gap: 56px;
      row-gap: 0;
      width: max-content;
      max-width: 100%;
      justify-self: start;
    }

    .site-footer__contacts {
      display: grid;
      gap: 18px;
      width: max-content;
      max-width: 340px;
    }

    .site-footer__contact-row {
      display: flex;
      align-items: center;
      gap: 14px;
      min-height: 28px;
    }

    .site-footer__contact-icon-img {
      width: 20px;
      height: 20px;
      flex: 0 0 20px;
      object-fit: contain;
      display: block;
    }

    .site-footer__contact-link,
    .site-footer__contact-text {
      font-size: 20px;
      line-height: 1.35;
      color: #f3f6f8;
    }

    .site-footer__contact-link:hover {
      color: #8ee8ff;
    }

    .site-footer__bottom {
      border-top: 1px solid rgba(255,255,255,0.10);
      position: relative;
      z-index: 2;
    }

    .site-footer__bottom-inner {
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 64px;
      text-align: center;
    }

    .site-footer__bottom-inner span {
      font-size: 16px;
      line-height: 1.35;
      color: rgba(243, 246, 248, 0.76);
    }

    .site-footer__service {
      padding: 0;
      background: none;
      border: 0;
      box-shadow: none;
      width: max-content;
      max-width: 340px;
      font-size: 16px;
      line-height: 1.5;
      font-weight: 400;
      color: #fff;
    }

    .site-footer__service-title {
      margin: 0 0 16px;
      font-size: 20px;
      font-weight: 700;
      line-height: 1.25;
      color: #ffffff;
    }

    .site-footer__service-list {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 14px;
      font-size: 20px;
      line-height: 1.35;
      color: #f3f6f8;
    }

    .site-footer__service-list li {
      position: relative;
      padding-left: 18px;
      font-size: inherit;
      line-height: inherit;
      font-weight: inherit;
      color: inherit;
    }

    .site-footer__service-list li::before {
      content: "";
      position: absolute;
      top: 0.62em;
      left: 0;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.92);
    }



    .to-top {
      position: fixed;
      right: 22px;
      bottom: 22px;
      width: 58px;
      height: 58px;
      border: 0;
      border-radius: 50%;
      background: linear-gradient(135deg, #e6a15c 0%, #d78349 100%);
      color: white;
      font-size: 28px;
      line-height: 1;
      display: grid;
      place-items: center;
      cursor: pointer;
      box-shadow: 0 10px 24px rgba(116, 66, 28, 0.28);
      opacity: 0;
      visibility: hidden;
      transform: translateY(16px);
      transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
      z-index: 60;
    }

    .to-top span {
      display: inline-block;
      transform: translateY(6px);
    }

    .to-top.is-visible {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .to-top:hover {
      transform: translateY(-2px);
    }

    #about,
    #events,
    #services,
    #yacht,
    #reviews,
    #request,
    #contacts {
      scroll-margin-top: calc(var(--header-h) + var(--topbar-h) + 18px);
    }

    @media (max-width: 1120px) {
      .nav { gap: 16px; font-size: 13px; }
      .hero h1 { font-size: clamp(40px, 6vw, 62px); }
      .service-card h3 { font-size: 22px; }
      .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 28px;
      }

      .site-footer__inner {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 42px 0 28px;
      }

      .site-footer__divider {
        display: none;
      }

      .site-footer__right {
        display: grid;
        grid-template-columns: 1fr;
        align-items: start;
        gap: 24px;
      }

      .site-footer__service-title {
        font-size: 18px;
      }

      .site-footer__service-list li {
        font-size: 18px;
      }
      
      .site-footer__contact-link,
      .site-footer__contact-text {
        font-size: 18px;
      }
      
    }

    @media (max-width: 960px) {
      :root { --header-h: 72px; }

      .burger { display: inline-block; }

      .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: grid;
        gap: 0;
        background: rgba(255,255,255,0.98);
        border-top: 1px solid rgba(20,40,60,0.06);
        box-shadow: 0 16px 30px rgba(20,40,60,0.08);
        transform-origin: top;
        transform: scaleY(0);
        opacity: 0;
        pointer-events: none;
        transition: 0.24s ease;
      }

      .nav.is-open {
        transform: scaleY(1);
        opacity: 1;
        pointer-events: auto;
      }

      .nav a {
        padding: 16px 24px;
        border-bottom: 1px solid rgba(20,40,60,0.05);
      }

      .nav a::after,
      .nav a.is-active::after,
      .nav a:hover::after {
        display: none;
      }

      .hero__inner,
      .about-card,
      .split-card,
      .stats-panel,
      .yacht-card,
      .reviews-card {
        grid-template-columns: 1fr;
      }

      .cards-3,
      .stats-grid {
        grid-template-columns: 1fr 1fr;
      }

      .events-grid {
        grid-template-columns: 1fr 1fr;
      }

      .event-card h3 {
        font-size: 22px;
      }
      
      .reviews-card__media {
        height: auto;
        min-height: 0;
        aspect-ratio: 4 / 3;
      }
      
      .reviews-card__img {
        width: calc(100% + 120px);
      }
      
      .split-card__content,
      .stats-panel__content,
      .reviews-card__content,
      .about-card,
      .yacht-card {
        padding: 28px;
      }

      .hero {
        min-height: 760px;
      }

      .hero__content {
        max-width: 100%;
        padding-right: 12px;
      }

      .hero__inner {
        padding-top: 44px;
      }

      .visual,
      .split-card__media,
      .stats-panel__media,
      .reviews-card__media {
        min-height: 300px;
      }
      
      .event-card__fact {
        font-size: 13px;
      }

      .event-modal__dialog {
        width: min(94vw, 700px);
        margin: 16px auto;
        padding: 24px;
      }

      .event-modal__info {
        padding: 14px 16px;
      }
      
    }

    @media (max-width: 640px) {
      .to-top {
        right: 14px;
        bottom: 14px;
        width: 52px;
        height: 52px;
        font-size: 24px;
      }

      .topbar { height: auto; }

      .topbar__row {
        flex-direction: column;
        align-items: flex-start;
        padding: 8px 0;
        height: auto;
      }

      .hero { min-height: 620px; }
      .hero h1 { font-size: clamp(34px, 11vw, 52px); }

      .cards-3,
      .stats-grid {
        grid-template-columns: 1fr;
      }

      .events-grid {
        grid-template-columns: 1fr;
      }

      .event-card__body {
        padding: 18px 18px 20px;
      }

      .event-card .btn {
        width: 100%;
      }
      
     .reviews-card__media {
        height: auto;
        min-height: 0;
        aspect-ratio: 4 / 3;
      }
      
      .reviews-card__img {
        width: calc(100% + 30px);
      }
      
      .weather-section__intro {
        margin-bottom: 18px;
      }

      .weather-embed {
        height: clamp(420px, 62vh, 640px);
      }
      
      .btn { width: 50%; }
      .btn--ghost { width: 48px; }
      .service-card__img { aspect-ratio: 1.1 / 0.85; }
      .section { padding: 42px 0; }
      .section--flush { padding-top: 0; padding-bottom: 0; }
      .container { width: min(calc(100% - 20px), var(--container)); }
      
      .advantages {
        padding: 28px 0 30px;
      }

      .advantages-grid {
        grid-template-columns: 1fr;
        gap: 22px;
      }

      .advantage-item {
        grid-template-columns: 46px 1fr;
        gap: 14px;
      }

      .advantage-item__icon,
      .advantage-item__img {
        width: 46px;
        height: 46px;
      }

      .advantage-item__content h3 {
        font-size: 19px;
      }

      .advantage-item__content p {
        font-size: 15px;
      }

      .site-footer__title {
        font-size: 34px;
      }

      .site-footer__subtitle {
        font-size: 16px;
      }

      .site-footer__socials {
        gap: 12px;
        margin-top: 22px;
      }

      .site-footer__social {
        width: 38px;
        height: 38px;
        flex: 0 0 38px;
      }

      .site-footer__social-icon {
        width: 22px;
        height: 22px;
      }

      .site-footer__contact-link,
      .site-footer__contact-text {
        font-size: 17px;
      }

      .site-footer__bottom-inner {
        min-height: 56px;
      }

      .site-footer__bottom-inner span {
        font-size: 14px;
      }
      
      .site-footer__service-title {
        margin-bottom: 14px;
        font-size: 17px;
      }

      .site-footer__service-list {
        gap: 12px;
      }

      .site-footer__service-list li {
        font-size: 17px;
        padding-left: 16px;
      }

      .form-legal {
        font-size: 12px;
        line-height: 1.5;
      }
      
      .event-card__facts {
        gap: 5px;
      }

      .event-card__fact {
        font-size: 13px;
      }

      .event-modal__dialog {
        width: calc(100vw - 20px);
        max-height: calc(100vh - 20px);
        margin: 10px auto;
        padding: 18px;
        border-radius: 20px;
      }

      .event-modal__header {
        margin-bottom: 16px;
        padding-right: 34px;
      }

      .event-modal__header h2 {
        font-size: 28px;
        line-height: 1.12;
      }

      .event-modal__close {
        top: 10px;
        right: 10px;
        width: 38px;
        height: 38px;
        font-size: 24px;
      }
      
    }