@import url("https://fonts.googleapis.com/css2?family=Figtree:wght@400;500;600;700&display=swap");

    :root {
      --site-font: 'Figtree', Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
      --site-primary: #102e46;
      --site-accent: #fd3612;
      --site-bg: #f4f8fa;
      --site-surface: #ffffff;
      --site-text: #102e46;
      --site-muted: #37566d;
      --line: #dce5ec;
      --sea: #42b7c8;
      --leaf: #2f8f6b;
      --sun: #f7c948;
      --body-weight: 400;
      --heading-weight: 700;
      --button-weight: 600;
      --card-radius: 8px;
      --button-radius: 8px;
      --image-radius: 8px;
      --max: 1180px;
      --shadow: 0 18px 48px rgba(16,46,70,0.12);
    }

    * { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

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

    body.nav-open {
      overflow: hidden;
    }

    img {
      max-width: 100%;
    }

    a {
      color: inherit;
    }

    button,
    input,
    select,
    textarea {
      font-family: inherit;
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    .skip-link {
      position: absolute;
      left: 16px;
      top: -48px;
      z-index: 200;
      background: var(--site-primary);
      color: #fff;
      padding: 10px 14px;
      border-radius: var(--button-radius);
      font-weight: var(--button-weight);
      text-decoration: none;
    }

    .skip-link:focus {
      top: 16px;
    }

    .site-header {
      position: relative;
      z-index: 100;
      background: #ffffff;
      border-bottom: 1px solid rgba(220,229,236,0.9);
    }

    .site-header.sticky {
      position: sticky;
      top: 0;
    }

    body.home-page .site-header,
    body.home-page .site-header.sticky {
      position: sticky;
      top: 0;
      left: 0;
      right: 0;
      background: rgba(255,255,255,0.98);
      border-bottom: 1px solid rgba(220,229,236,0.9);
    }

    .header-top {
      border-bottom: 1px solid rgba(220,229,236,0.7);
      background:
        linear-gradient(180deg, rgba(247,250,252,0.9), rgba(255,255,255,0.96));
    }

    .header-top-inner,
    .header-nav-inner {
      width: min(1520px, calc(100% - 40px));
      margin: 0 auto;
    }

    .header-top-inner {
      padding: 6px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
    }

    .header-nav-row {
      background: #ffffff;
      box-shadow: 0 10px 30px rgba(16,46,70,0.03);
      overflow: visible;
    }

    .site-header[data-nav-ready="false"] .header-nav-row {
      opacity: 0;
      pointer-events: none;
    }

    .header-nav-inner {
      display: flex;
      align-items: center;
      min-height: 50px;
      overflow: visible;
    }

    body.home-page .brand img {
      filter: none;
    }

    .nav-link-mobile {
      display: none;
      border: 0;
      background: transparent;
      color: inherit;
      font: inherit;
    }

    .nav-link-desktop {
      display: inline-flex;
      align-items: center;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
      color: var(--site-primary);
      text-decoration: none;
    }

    .brand img {
      width: 130px;
      height: auto;
      display: block;
    }

    .brand-fallback {
      display: none;
      font-size: 19px;
      line-height: 1.1;
      font-weight: 700;
    }

    .header-search-wrap {
      flex: 1 1 620px;
      min-width: 280px;
      max-width: 560px;
    }

    .site-search {
      position: relative;
      display: flex;
      align-items: center;
      min-height: 42px;
      border: 1px solid rgba(220,229,236,0.92);
      border-radius: 12px;
      background: #ffffff;
      box-shadow: 0 12px 34px rgba(16,46,70,0.06);
    }

    .site-search:focus-within {
      border-color: rgba(66,183,200,0.72);
      box-shadow: 0 16px 36px rgba(66,183,200,0.16);
    }

    .site-search-icon,
    .site-search-submit {
      flex: 0 0 auto;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .site-search-icon {
      width: 38px;
      color: var(--site-muted);
    }

    .site-search svg,
    .phone-chip svg,
    .utility-icon-btn svg,
    .menu-btn svg {
      width: 18px;
      height: 18px;
      stroke: currentColor;
      stroke-width: 1.9;
      stroke-linecap: round;
      stroke-linejoin: round;
      fill: none;
    }

    .site-search input {
      width: 100%;
      min-width: 0;
      border: 0;
      outline: 0;
      background: transparent;
      color: var(--site-primary);
      font-size: 15px;
      line-height: 1.25;
      font-weight: 500;
    }

    .site-search input::placeholder {
      color: #6e8193;
    }

    .site-search-submit {
      width: 38px;
      height: 38px;
      margin-right: 2px;
      border: 0;
      border-radius: 9px;
      background: transparent;
      color: var(--site-accent);
      cursor: pointer;
      transition: background 0.18s ease, color 0.18s ease;
    }

    .site-search-submit:hover {
      background: rgba(253,54,18,0.08);
      color: #d92f10;
    }

    .site-search-results {
      position: absolute;
      top: calc(100% + 10px);
      left: 0;
      right: 0;
      z-index: 140;
      display: grid;
      gap: 8px;
      padding: 12px;
      border: 1px solid rgba(220,229,236,0.96);
      border-radius: 18px;
      background: rgba(255,255,255,0.98);
      box-shadow: 0 22px 54px rgba(16,46,70,0.14);
    }

    .site-search-results[hidden] {
      display: none;
    }

    .search-result {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 14px;
      padding: 12px 14px;
      border: 1px solid transparent;
      border-radius: 14px;
      background: #ffffff;
      color: var(--site-primary);
      text-align: left;
      cursor: pointer;
      transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
    }

    .search-result:hover,
    .search-result:focus-visible {
      border-color: rgba(66,183,200,0.42);
      background: #f7fbfd;
      transform: translateY(-1px);
      outline: none;
    }

    .search-result-copy {
      min-width: 0;
      display: grid;
      gap: 3px;
    }

    .search-result-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 24px;
      padding: 0 10px;
      border-radius: 999px;
      background: rgba(16,46,70,0.08);
      color: var(--site-muted);
      font-size: 12px;
      line-height: 1;
      font-weight: 600;
      white-space: nowrap;
    }

    .search-result-title {
      font-size: 15px;
      line-height: 1.3;
      font-weight: 700;
    }

    .search-result-meta {
      color: var(--site-muted);
      font-size: 12px;
      line-height: 1.35;
    }

    .search-empty {
      padding: 14px 16px;
      border-radius: 14px;
      background: #f7fbfd;
      color: var(--site-muted);
      font-size: 14px;
      line-height: 1.5;
      font-weight: 500;
    }

    .header-actions {
      flex: 0 0 auto;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 7px;
    }

    .phone-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 42px;
      padding: 0 10px;
      border-radius: 12px;
      border: 1px solid rgba(220,229,236,0.92);
      background: #ffffff;
      color: var(--site-primary);
      text-decoration: none;
      box-shadow: 0 12px 30px rgba(16,46,70,0.05);
      transition: border-color 0.18s ease, transform 0.18s ease;
    }

    .phone-chip:hover {
      border-color: rgba(66,183,200,0.46);
      transform: translateY(-1px);
    }

    .phone-chip-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
      border-radius: 9px;
      background: #f4f8fa;
      color: var(--site-primary);
    }

    .phone-chip-copy {
      display: grid;
      gap: 2px;
      min-width: 0;
    }

    .phone-chip-label {
      color: var(--site-muted);
      font-size: 11px;
      line-height: 1.1;
      font-weight: 600;
    }

    .phone-chip strong {
      font-size: 15px;
      line-height: 1.1;
      font-weight: 700;
      white-space: nowrap;
    }

    .utility-icon-btn {
      width: 42px;
      height: 42px;
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(220,229,236,0.92);
      border-radius: 12px;
      background: #ffffff;
      color: var(--site-primary);
      box-shadow: 0 12px 30px rgba(16,46,70,0.05);
      cursor: pointer;
      transition: border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
    }

    .utility-icon-btn:hover {
      border-color: rgba(253,54,18,0.35);
      color: var(--site-accent);
      transform: translateY(-1px);
    }

    .utility-icon-btn.is-active {
      border-color: rgba(253,54,18,0.32);
      color: var(--site-accent);
      box-shadow: 0 14px 30px rgba(253,54,18,0.12);
    }

    .utility-icon-badge {
      position: absolute;
      top: -5px;
      right: -5px;
      min-width: 18px;
      height: 18px;
      padding: 0 5px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      background: var(--site-accent);
      color: #ffffff;
      font-size: 10px;
      line-height: 1;
      font-weight: 700;
      box-shadow: 0 8px 18px rgba(253,54,18,0.28);
      pointer-events: none;
    }

    .nav-links {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      flex-wrap: nowrap;
      gap: 18px;
      width: 100%;
      height: 50px;
      min-width: 0;
      overflow: visible;
      font-size: 14px;
      font-weight: 600;
    }

    .mobile-nav-head,
    .nav-overlay {
      display: none;
    }

    .drawer-search,
    .drawer-footer-actions {
      display: none;
    }

    .nav-item-wrap {
      position: relative;
      display: flex;
      align-items: center;
      flex: 0 0 auto;
      padding: 0;
    }

    .nav-branch-head {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .nav-links a {
      color: var(--site-primary);
      text-decoration: none;
    }

    .nav-links > a,
    .nav-link.has-children {
      display: inline-flex;
      align-items: center;
      min-height: 50px;
      color: var(--site-primary);
    }

    .nav-link-static {
      border: 0;
      background: transparent;
      font: inherit;
      padding: 0;
      color: var(--site-primary);
    }

    .nav-branch-head > .nav-link-mobile {
      display: none;
    }

    .nav-links a:hover {
      color: var(--site-accent);
    }

    .nav-link.has-children::after {
      content: "▾";
      margin-left: 5px;
      font-size: 9px;
      transition: transform 0.2s ease;
    }

    .mobile-nav-toggle {
      display: none;
      width: 34px;
      height: 34px;
      flex: 0 0 34px;
      border: 1px solid transparent;
      border-radius: var(--button-radius);
      background: transparent;
      color: var(--site-primary);
      font-size: 14px;
      cursor: pointer;
      transition: 0.18s;
    }

    .mobile-nav-toggle:hover {
      background: #f5f8fb;
      border-color: var(--line);
    }

    .mobile-nav-toggle span {
      display: inline-block;
      transition: transform 0.2s ease;
    }

    .nav-item-wrap.expanded .mobile-nav-toggle span {
      transform: rotate(180deg);
    }

    .mega-menu {
      position: absolute;
      top: calc(100% + 1px);
      left: 0;
      width: min(560px, calc(100vw - 40px));
      transform: translateY(6px);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: 0.18s;
      border: 1px solid var(--line);
      border-radius: 12px;
      background: var(--site-surface);
      box-shadow: 0 16px 30px rgba(16,46,70,0.12);
      padding: 6px;
      max-height: min(72vh, 620px);
      overflow-y: auto;
      overscroll-behavior: contain;
    }

    .mega-menu::before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: -18px;
      height: 18px;
    }

    .nav-item-wrap:hover .mega-menu,
    .nav-item-wrap.desktop-open .mega-menu,
    .nav-item-wrap:focus-within .mega-menu {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateY(0);
    }

    .mega-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 4px;
      align-items: start;
    }

    .mega-card {
      display: grid;
      grid-template-columns: 39px minmax(0, 1fr);
      gap: 6px;
      min-height: 40px;
      align-items: center;
      border: 1px solid rgba(220,229,236,0.72);
      border-radius: 10px;
      padding: 3px 4px;
      color: var(--site-primary);
      text-decoration: none;
      background: #ffffff;
    }

    .mega-card:hover {
      background: #f7fbfd;
      border-color: rgba(66,183,200,0.36);
    }

    .mega-card img {
      width: 39px;
      height: 26px;
      border-radius: 7px;
      object-fit: cover;
      background: #dce5ec;
    }

    .mega-copy {
      min-width: 0;
    }

    .mega-main {
      display: block;
      color: inherit;
      text-decoration: none;
    }

    .mega-main-static {
      cursor: default;
    }

    .mega-copy strong {
      display: block;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      color: var(--site-primary);
      font-size: 12px;
      line-height: 1.15;
      font-weight: 700;
    }

    .mega-copy span {
      display: block;
      margin-top: 1px;
      overflow: hidden;
      color: var(--site-muted);
      font-size: 10px;
      line-height: 1.2;
    }

    .mega-sub {
      margin-top: 3px;
      display: flex;
      flex-wrap: wrap;
      gap: 3px;
    }

    .mega-sub a {
      display: inline-flex;
      border: 1px solid var(--line);
      border-radius: var(--button-radius);
      padding: 2px 5px;
      color: var(--site-muted);
      font-size: 9px;
      line-height: 1.1;
      text-decoration: none;
    }

    .mega-sub span {
      display: inline-flex;
      border: 1px solid var(--line);
      border-radius: var(--button-radius);
      padding: 2px 5px;
      color: var(--site-muted);
      font-size: 9px;
      line-height: 1.1;
    }

    .mobile-parent-link {
      display: none;
    }

    .nav-links > .nav-cta {
      display: none;
    }

    .nav-cta,
    .btn-primary,
    .btn-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      border-radius: var(--button-radius);
      padding: 11px 16px;
      font-size: 14px;
      font-weight: var(--button-weight);
      line-height: 1.2;
      text-decoration: none;
      border: 1px solid transparent;
      cursor: pointer;
      transition: 0.18s;
    }

    .nav-cta,
    .btn-primary {
      background: var(--site-accent);
      color: #fff;
      box-shadow: 0 10px 22px rgba(253,54,18,0.18);
    }

    .header-cta {
      min-width: 154px;
      min-height: 40px;
      padding-inline: 14px;
      font-size: 13px;
    }

    .nav-cta:hover,
    .btn-primary:hover {
      transform: translateY(-1px);
      filter: brightness(0.96);
    }

    .btn-secondary {
      background: #fff;
      color: var(--site-primary);
      border-color: var(--line);
    }

    .btn-secondary:hover {
      background: #f8fafc;
      border-color: var(--site-primary);
    }

    .menu-btn {
      display: none;
      width: 40px;
      height: 40px;
      align-items: center;
      justify-content: center;
      border-radius: 12px;
      border: 1px solid var(--line);
      background: #fff;
      color: var(--site-primary);
      cursor: pointer;
    }

    .menu-close {
      width: 40px;
      height: 40px;
      border-radius: var(--button-radius);
      border: 1px solid var(--line);
      background: #fff;
      color: var(--site-primary);
      font-size: 22px;
      line-height: 1;
      cursor: pointer;
    }

    @media (max-width: 1320px) {
      .header-top-inner,
      .header-nav-inner {
        width: min(1520px, calc(100% - 28px));
      }

      .phone-chip {
        padding: 0 10px;
      }

      .phone-chip-label {
        display: none;
      }

      .phone-chip strong {
        font-size: 14px;
      }

      .header-cta {
        min-width: 144px;
      }
    }

    main {
      overflow-x: clip;
      overflow-y: visible;
      min-height: 54vh;
    }

    .page-section {
      max-width: none;
      margin: 0;
      padding: 72px 22px;
      background: var(--section-bg, transparent);
    }

    [data-ibe-shell-host] {
      display: block;
      width: 100%;
    }

    body.ibe-shell-page,
    [data-ibe-shell-host].ibe-shell-host--ibe-search {
      background: #fafafa;
    }

    [data-ibe-shell-host].ibe-shell-host--funnel {
      padding: 38px 22px 72px;
    }

    .section-inner {
      width: min(var(--section-width, var(--max)), 100%);
      margin: 0 auto;
    }

    .landgang-shell,
    .landgang-section-shell {
      --landgang-accent: #7ed0f5;
      --landgang-accent-hover: #68c5ed;
    }

    .landgang-shell {
      padding: 30px 22px 76px;
      background: #ffffff;
    }

    .landgang-wrap {
      width: min(var(--max), 100%);
      margin: 0 auto;
    }

    .landgang-head {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.95fr);
      gap: 24px;
      margin-bottom: 34px;
      padding: 28px;
      border: 1px solid rgba(16,46,70,0.08);
      border-radius: 8px;
      background:
        radial-gradient(circle at top right, rgba(66,183,200,0.14) 0%, rgba(66,183,200,0) 40%),
        linear-gradient(135deg, #ffffff 0%, #f7fbfd 60%, #eef7fb 100%);
      box-shadow: 0 18px 40px rgba(16,46,70,0.08);
      overflow: hidden;
    }

    .landgang-head::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 178px;
      height: 8px;
      background: var(--landgang-accent);
      border-radius: 0 0 8px 0;
    }

    .landgang-head-left {
      position: relative;
      z-index: 1;
      max-width: 690px;
      padding-top: 4px;
    }

    .landgang-head-right {
      position: relative;
      z-index: 1;
      min-width: 0;
      min-height: 360px;
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      grid-template-rows: 1fr 1fr;
      gap: 14px;
    }

    .landgang-hero-card {
      position: relative;
      overflow: hidden;
      min-height: 0;
      min-width: 0;
      border-radius: 8px;
    }

    .landgang-hero-card-main {
      grid-row: 1 / span 2;
      box-shadow: 0 18px 34px rgba(16,46,70,0.12);
    }

    .landgang-hero-card-mini {
      border: 1px solid rgba(16,46,70,0.08);
      box-shadow: 0 14px 28px rgba(16,46,70,0.08);
    }

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

    .landgang-hero-overlay {
      position: absolute;
      inset: auto 14px 14px 14px;
      min-width: 0;
      padding: 14px 14px 12px;
      border-radius: 8px;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(6px);
      box-shadow: 0 10px 24px rgba(16,46,70,0.10);
    }

    .landgang-hero-card-mini .landgang-hero-overlay {
      inset: auto 10px 10px 10px;
      padding: 10px 12px;
    }

    .landgang-hero-label {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 0 10px;
      margin-bottom: 8px;
      border-radius: 999px;
      background: var(--landgang-accent);
      color: #ffffff;
      font-size: 12px;
      line-height: 1;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.03em;
    }

    .landgang-hero-title {
      margin: 0 0 4px;
      color: var(--site-primary);
      font-size: 20px;
      line-height: 1.16;
      font-weight: 700;
      overflow-wrap: anywhere;
    }

    .landgang-hero-card-mini .landgang-hero-title {
      font-size: 16px;
      margin-bottom: 2px;
    }

    .landgang-hero-text {
      margin: 0;
      color: rgba(16,46,70,0.8);
      font-size: 14px;
      line-height: 1.5;
      overflow-wrap: anywhere;
    }

    .landgang-hero-card-mini .landgang-hero-text {
      font-size: 13px;
      line-height: 1.45;
    }

    .landgang-kicker {
      display: inline-flex;
      align-items: center;
      min-height: 36px;
      padding: 0 14px;
      margin-bottom: 16px;
      border: 1px solid rgba(16,46,70,0.08);
      border-radius: 999px;
      background: rgba(255,255,255,0.92);
      color: var(--site-primary);
      font-size: 13px;
      line-height: 1;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      box-shadow: 0 10px 22px rgba(16,46,70,0.05);
    }

    .landgang-title {
      margin: 0 0 10px;
      color: var(--site-primary);
      font-size: 54px;
      line-height: 1.04;
      font-weight: 700;
      letter-spacing: 0;
    }

    .landgang-title span {
      display: block;
    }

    .landgang-subhead {
      margin: 0 0 18px;
      color: var(--site-primary);
      font-size: 24px;
      line-height: 1.18;
      font-weight: 700;
    }

    .landgang-intro {
      max-width: 620px;
      margin: 0 0 22px;
      color: rgba(16,46,70,0.84);
      font-size: 17px;
      line-height: 1.72;
    }

    .landgang-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .landgang-tag {
      display: inline-flex;
      align-items: center;
      min-height: 40px;
      padding: 0 14px;
      border: 1px solid rgba(16,46,70,0.08);
      border-radius: 999px;
      background: #ffffff;
      color: var(--site-primary);
      font-size: 14px;
      line-height: 1.2;
      font-weight: 700;
      box-shadow: 0 10px 22px rgba(16,46,70,0.06);
      white-space: nowrap;
    }

    .landgang-search-wrap {
      margin: 0 0 32px;
    }

    .landgang-search-box {
      position: relative;
      max-width: 620px;
    }

    .landgang-search-input {
      width: 100%;
      min-height: 58px;
      padding: 0 56px 0 20px;
      border: 1px solid rgba(16,46,70,0.12);
      border-radius: 8px;
      background: #ffffff;
      color: var(--site-primary);
      font-size: 16px;
      font-weight: 500;
      box-shadow: 0 14px 30px rgba(16,46,70,0.07);
      transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
    }

    .landgang-search-input::placeholder {
      color: rgba(16,46,70,0.48);
    }

    .landgang-search-input:focus {
      outline: none;
      border-color: rgba(66,183,200,0.8);
      box-shadow: 0 0 0 4px rgba(66,183,200,0.14), 0 14px 30px rgba(16,46,70,0.09);
      background: #fcfeff;
    }

    .landgang-search-icon {
      position: absolute;
      top: 50%;
      right: 18px;
      transform: translateY(-50%);
      color: var(--site-primary);
      font-size: 22px;
      line-height: 1;
      opacity: 0.55;
      pointer-events: none;
    }

    .landgang-regions {
      display: grid;
      gap: 38px;
    }

    .landgang-region[hidden] {
      display: none !important;
    }

    .landgang-region-head {
      margin-bottom: 20px;
    }

    .landgang-region-title-row {
      margin: 0 0 14px;
      padding: 24px 18px;
      background: #fff8ee;
    }

    .landgang-region-title {
      display: inline-block;
      margin: 0;
      padding: 10px 14px;
      background: var(--landgang-accent);
      color: #ffffff;
      font-size: 28px;
      line-height: 1.14;
      font-weight: 700;
    }

    .landgang-region-text {
      max-width: 820px;
      margin: 0;
      color: rgba(16,46,70,0.82);
      font-size: 15px;
      line-height: 1.7;
    }

    .landgang-region-text strong {
      display: inline-block;
      margin-bottom: 2px;
      color: var(--site-primary);
      font-size: 1.12em;
      font-weight: 700;
    }

    .landgang-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
      align-items: stretch;
    }

    .landgang-card-link {
      display: block;
      min-width: 0;
      color: inherit;
      text-decoration: none;
    }

    .landgang-card-link[hidden] {
      display: none !important;
    }

    .landgang-card {
      display: flex;
      flex-direction: column;
      height: 100%;
      border: 1px solid rgba(16,46,70,0.08);
      border-radius: 8px;
      background: #ffffff;
      overflow: hidden;
      box-shadow: 0 14px 34px rgba(16,46,70,0.10);
      transition: transform 0.22s ease, box-shadow 0.22s ease;
    }

    .landgang-card-link:hover .landgang-card,
    .landgang-card-link:focus-visible .landgang-card {
      transform: translateY(-4px);
      box-shadow: 0 20px 40px rgba(16,46,70,0.14);
    }

    .landgang-card-media {
      position: relative;
      aspect-ratio: 16 / 9;
      overflow: hidden;
      background: #eef3f7;
    }

    .landgang-card-media.is-empty::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(66,183,200,0.18), rgba(16,46,70,0.06));
    }

    .landgang-card-media img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
    }

    .landgang-card-flag {
      position: absolute;
      top: 12px;
      left: 12px;
      min-width: 48px;
      height: 40px;
      padding: 0 10px;
      border-radius: 999px;
      background: rgba(255,255,255,0.94);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      line-height: 1;
      box-shadow: 0 8px 18px rgba(16,46,70,0.14);
    }

    .landgang-card-body {
      display: flex;
      flex: 1;
      flex-direction: column;
      padding: 18px 18px 16px;
    }

    .landgang-card-title {
      margin: 0 0 8px;
      color: var(--site-primary);
      font-size: 28px;
      line-height: 1.18;
      font-weight: 700;
      overflow-wrap: anywhere;
    }

    .landgang-card-text {
      flex: 1;
      margin: 0 0 18px;
      color: rgba(16,46,70,0.82);
      font-size: 15px;
      line-height: 1.68;
    }

    .landgang-card-button {
      display: flex;
      flex: 0 0 auto;
      align-items: center;
      justify-content: center;
      width: 100%;
      min-height: 46px;
      padding: 0 16px;
      border-radius: 8px;
      background: var(--landgang-accent);
      color: #ffffff;
      font-size: 15px;
      line-height: 1.2;
      font-weight: 700;
      transition: background 0.22s ease;
    }

    .landgang-card-link:hover .landgang-card-button,
    .landgang-card-link:focus-visible .landgang-card-button {
      background: var(--landgang-accent-hover);
    }

    .landgang-more-wrap[hidden] {
      display: none !important;
    }

    .landgang-more-wrap {
      display: flex;
      justify-content: center;
      margin-top: 26px;
    }

    .landgang-more-button {
      position: relative;
      appearance: none;
      border: 1px solid rgba(16,46,70,0.12);
      background: #ffffff;
      color: var(--site-primary);
      font-family: inherit;
      font-size: 15px;
      line-height: 1.2;
      font-weight: 700;
      padding: 12px 22px;
      border-radius: 999px;
      cursor: pointer;
      box-shadow: 0 12px 28px rgba(16,46,70,0.08);
      transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .landgang-more-button::after {
      content: "›";
      font-size: 20px;
      line-height: 1;
      transition: transform 0.22s ease;
    }

    .landgang-more-button:hover {
      background: #f8fcff;
      border-color: rgba(66,183,200,0.58);
      box-shadow: 0 16px 32px rgba(16,46,70,0.12);
      transform: translateY(-2px);
    }

    .landgang-more-button:hover::after {
      transform: translateX(4px);
    }

    .landgang-empty-state[hidden] {
      display: none !important;
    }

    .landgang-empty-state {
      padding: 22px 20px;
      border: 1px solid rgba(16,46,70,0.08);
      border-radius: 8px;
      background: #f7fbfd;
      color: rgba(16,46,70,0.78);
      font-size: 16px;
      line-height: 1.6;
    }

    .site-hero {
      max-width: none;
      padding: 0;
      color: #fff;
    }

    .site-hero.home-hero {
      margin-top: 0;
    }

    .hero-media {
      position: relative;
      isolation: isolate;
      background-color: #183b4f;
      background-image:
        linear-gradient(180deg, rgba(10,32,48,0.12), rgba(10,32,48,0.34) 48%, rgba(10,32,48,0.7)),
        var(--hero-image);
      background-size: cover;
      background-position: center;
      overflow: hidden;
    }

    .hero-media-slides {
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
    }

    .hero-media-slide {
      position: absolute;
      inset: 0;
      background-image: var(--hero-slide-image);
      background-size: cover;
      background-position: center;
      opacity: 0;
    }

    .hero-media.has-slideshow .hero-media-slide {
      animation: hero-slide-fade var(--hero-slide-duration, 18s) infinite;
      animation-delay: var(--hero-slide-delay, 0s);
    }

    .hero-media.has-slideshow .hero-media-slide.is-first {
      animation-name: hero-slide-fade-first;
    }

    .hero-media::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(13,40,60,0.18), rgba(13,40,60,0.08) 40%, rgba(13,40,60,0.28));
      z-index: 1;
    }

    .site-hero.hero-filter-off .hero-media {
      background-image: var(--hero-image);
    }

    .site-hero.hero-filter-off .hero-media::before {
      display: none;
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      width: min(1320px, calc(100% - 44px));
      min-height: var(--hero-desktop-height, min(820px, calc(100svh - 82px)));
      margin: 0 auto;
      padding: 58px 0 30px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 30px;
    }

    .site-hero.home-hero .hero-inner {
      width: min(1180px, calc(100% - 44px));
      min-height: var(--hero-desktop-height, clamp(520px, calc(100svh - 188px), 610px));
      padding: 34px 0 26px;
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      grid-template-rows: minmax(0, 1fr) auto;
      align-items: stretch;
      justify-items: center;
      row-gap: 12px;
    }

    .site-hero.standard-hero .hero-inner {
      justify-content: flex-end;
    }

    .site-hero.hero-align-left .hero-inner {
      justify-items: start;
    }

    .site-hero.hero-align-center .hero-inner {
      justify-items: center;
    }

    .hero-intro {
      max-width: 780px;
      margin: 0 auto;
      text-align: center;
    }

    .site-hero.home-hero .hero-intro {
      width: min(760px, 100%);
      max-width: none;
      margin: 0 auto;
      display: grid;
      justify-items: center;
      align-content: center;
      align-self: stretch;
      text-align: center;
      transform: none;
      padding: 0;
    }

    .site-hero.home-hero .eyebrow {
      justify-content: center;
      width: 100%;
      margin-bottom: 14px;
    }

    .site-hero.standard-hero .hero-intro {
      margin: 0;
      text-align: left;
    }

    .site-hero.hero-align-left .hero-intro {
      margin: 0;
      text-align: left;
      justify-items: start;
    }

    .site-hero.hero-align-center .hero-intro {
      margin: 0 auto;
      text-align: center;
      justify-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 12px;
      color: var(--site-accent);
      font-size: 12px;
      line-height: 1.2;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0;
    }

    .site-hero .eyebrow {
      color: #ffffff;
    }

    .site-hero.hero-align-left .eyebrow {
      justify-content: flex-start;
    }

    .site-hero.hero-align-center .eyebrow {
      justify-content: center;
    }

    .site-hero.hero-filter-off .eyebrow,
    .site-hero.hero-filter-off h1,
    .site-hero.hero-filter-off .hero-copy,
    .site-hero.hero-filter-off .hero-note,
    .site-hero.hero-filter-off .hero-ibe-contact {
      text-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
    }

    .hero-title-highlight {
      display: inline;
      padding: 0.03em 0.15em 0.05em;
      border-radius: 0.06em;
      background: var(--hero-highlight, #69cdfb);
      color: inherit;
      -webkit-box-decoration-break: clone;
      box-decoration-break: clone;
    }

    .eyebrow::before {
      content: "";
      width: 24px;
      height: 3px;
      border-radius: 8px;
      background: currentColor;
    }

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

    h1 {
      max-width: 790px;
      margin-bottom: 20px;
      font-size: 64px;
      line-height: 0.98;
      letter-spacing: 0;
      font-weight: var(--heading-weight);
    }

    .site-hero.home-hero h1 {
      max-width: 760px;
      margin: 0 auto 16px;
      font-size: 52px;
      line-height: 1.01;
      text-wrap: balance;
    }

    .site-hero.hero-align-left h1 {
      margin-left: 0;
      margin-right: 0;
    }

    .site-hero.hero-align-center h1 {
      margin-left: auto;
      margin-right: auto;
    }

    h2 {
      margin-bottom: 12px;
      font-size: 42px;
      line-height: 1.06;
      letter-spacing: 0;
      font-weight: var(--heading-weight);
    }

    h3 {
      margin-bottom: 10px;
      font-size: 23px;
      line-height: 1.15;
      letter-spacing: 0;
      font-weight: var(--heading-weight);
    }

    .hero-copy,
    .section-text {
      max-width: 700px;
      color: var(--site-muted);
      font-size: 15px;
      line-height: 1.65;
    }

    .site-hero .hero-copy {
      color: rgba(255,255,255,0.9);
      font-size: 15px;
    }

    .hero-copy p,
    .hero-copy ul,
    .hero-copy ol,
    .hero-copy blockquote,
    .hero-copy h2,
    .hero-copy h3 {
      margin-top: 0;
      color: inherit;
    }

    .hero-copy p:last-child,
    .hero-copy ul:last-child,
    .hero-copy ol:last-child,
    .hero-copy blockquote:last-child {
      margin-bottom: 0;
    }

    .site-hero.home-hero .hero-copy {
      max-width: 640px;
      margin-bottom: 0;
      margin-left: auto;
      margin-right: auto;
      font-size: 15px;
      line-height: 1.55;
      text-wrap: balance;
      text-align: center;
    }

    .site-hero.hero-align-left .hero-copy {
      margin-left: 0;
      margin-right: 0;
      text-align: left;
    }

    .site-hero.hero-align-center .hero-copy {
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }

    .site-hero.home-hero .hero-ibe {
      justify-self: center;
      align-self: end;
      width: min(980px, 100%);
      max-width: 100%;
      justify-items: stretch;
    }

    .site-hero.home-hero .hero-ibe-panel {
      width: 100%;
      justify-self: stretch;
    }

    .site-hero.home-hero .hero-ibe-tabs,
    .site-hero.home-hero .hero-ibe-contact {
      justify-self: center;
    }

    .site-hero.hero-align-left .hero-ibe {
      margin: 0;
    }

    .site-hero.hero-align-center .hero-ibe {
      margin: 0 auto;
    }

    .hero-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 26px;
    }

    .site-hero.hero-align-left .hero-actions {
      justify-content: flex-start;
    }

    .site-hero.hero-align-center .hero-actions {
      justify-content: center;
    }

    .site-hero .btn-primary {
      background: var(--site-accent, #fd3612);
      color: #ffffff;
      box-shadow: 0 12px 24px rgba(253,54,18,0.24);
    }

    .site-hero .btn-secondary {
      background: rgba(255,255,255,0.92);
      border-color: rgba(255,255,255,0.7);
    }

    .site-hero.standard-hero .eyebrow,
    .site-hero.standard-hero .hero-copy,
    .site-hero.standard-hero .hero-actions .btn-primary,
    .site-hero.standard-hero .hero-actions .btn-secondary {
      font-size: 15px;
      line-height: 1.45;
      font-weight: 600;
    }

    .hero-ibe {
      width: min(1040px, 100%);
      margin: 0 auto;
      display: grid;
      gap: 10px;
    }

    .hero-ibe-tabs {
      display: inline-grid;
      grid-template-columns: repeat(2, minmax(0, auto));
      align-items: center;
      gap: 4px;
      margin: 0;
      padding: 4px;
      border-radius: 14px;
      border: 1px solid rgba(214,223,231,0.72);
      background: rgba(255,255,255,0.76);
      box-shadow: 0 10px 22px rgba(10,32,48,0.1);
    }

    .hero-ibe-tabs.is-single {
      display: inline-flex;
      grid-template-columns: none;
      justify-content: center;
    }

    .site-hero.hero-align-left .hero-ibe-tabs,
    .site-hero.hero-align-left .hero-ibe-contact,
    .site-hero.home-hero .hero-ibe-tabs,
    .site-hero.home-hero .hero-ibe-contact {
      justify-self: start;
    }

    .site-hero.hero-align-center .hero-ibe-tabs,
    .site-hero.hero-align-center .hero-ibe-contact {
      justify-self: center;
    }

    .site-hero.hero-align-left .hero-ibe-tabs {
      margin: 0;
    }

    .site-hero.hero-align-center .hero-ibe-tabs {
      margin: 0 auto;
    }

    .hero-ibe-tab {
      border: 0;
      border-radius: 10px;
      background: rgba(255,255,255,0.42);
      color: var(--site-primary);
      min-height: 34px;
      padding: 0 14px;
      font-size: 12px;
      line-height: 1.1;
      font-weight: 700;
      cursor: pointer;
      transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
    }

    .hero-ibe-tab.active {
      background: rgba(255,255,255,0.96);
      color: var(--site-primary);
      box-shadow: 0 6px 14px rgba(10,32,48,0.08);
    }

    .hero-ibe-panel {
      display: none;
    }

    .hero-ibe-panel.active {
      display: block;
    }

    .hero-ibe-desktop {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 192px;
      gap: 0;
      align-items: stretch;
      border: 1px solid rgba(214,223,231,0.96);
      border-radius: 14px;
      overflow: hidden;
      background: rgba(255,255,255,0.98);
      box-shadow: 0 16px 30px rgba(10,32,48,0.14);
    }

    .hero-ibe-form {
      display: grid;
      grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.96fr) minmax(0, 1.08fr) minmax(0, 0.78fr);
      border: 0;
      border-radius: 0;
      overflow: visible;
      background: transparent;
      box-shadow: none;
    }

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

    .hero-ibe-field {
      position: relative;
      min-width: 0;
      background: transparent;
      border-right: 1px solid rgba(214,223,231,0.96);
    }

    .hero-ibe-form .hero-ibe-field:last-child {
      border-right: 0;
    }

    .hero-ibe-trigger {
      position: relative;
      width: 100%;
      min-height: 62px;
      padding: 10px 36px 10px 16px;
      display: grid;
      gap: 2px;
      align-content: center;
      border: 0;
      border-radius: 0;
      background: rgba(255,255,255,0.98);
      color: inherit;
      text-align: left;
      cursor: pointer;
      box-shadow: none;
      transition: background 0.18s ease, box-shadow 0.18s ease;
    }

    .hero-ibe-trigger::after {
      content: "▾";
      position: absolute;
      right: 14px;
      top: 50%;
      transform: translateY(-50%);
      color: #6b8797;
      font-size: 13px;
      line-height: 1;
      transition: transform 0.18s ease;
    }

    .hero-ibe-trigger[aria-expanded="true"] {
      z-index: 1;
      background: #f7fbfd;
      box-shadow: inset 0 0 0 1px rgba(117,143,163,0.22);
    }

    .hero-ibe-trigger[aria-expanded="true"]::after {
      transform: translateY(-50%) rotate(180deg);
    }

    .hero-ibe-field-label {
      color: #6a8394;
      font-size: 9px;
      line-height: 1.2;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .hero-ibe-field-value {
      color: var(--site-primary);
      font-size: 13px;
      line-height: 1.25;
      font-weight: 600;
      min-width: 0;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .hero-ibe-submit {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      min-width: 0;
      min-height: 62px;
      padding: 0 16px;
      border: 0;
      border-radius: 0;
      background: var(--site-accent, #fd3612);
      color: #ffffff;
      font-size: 14px;
      line-height: 1.2;
      font-weight: 700;
      font-family: inherit;
      text-decoration: none;
      cursor: pointer;
      box-shadow: none;
      transition: filter 0.18s ease, transform 0.18s ease;
    }

    .hero-ibe-submit:hover {
      filter: brightness(0.98);
      transform: translateY(-1px);
    }

    .package-hero-feedback {
      margin: 10px 4px 0;
      font-size: 12px;
      line-height: 1.45;
      color: #587180;
    }

    .package-hero-feedback.is-ok {
      color: #1f6f52;
    }

    .package-hero-feedback.is-error {
      color: #b14534;
    }

    .hero-ibe-modal-layer {
      position: fixed;
      inset: 0;
      z-index: 140;
    }

    .hero-ibe-modal-backdrop {
      position: absolute;
      inset: 0;
      border: 0;
      background: transparent;
      cursor: default;
    }

    .hero-ibe-modal {
      position: fixed;
      display: flex;
      flex-direction: column;
      width: min(336px, calc(100vw - 24px));
      max-height: min(66vh, 520px);
      border: 1px solid rgba(117,143,163,0.2);
      border-radius: 18px;
      background: #ffffff;
      box-shadow: 0 22px 48px rgba(10,32,48,0.18);
      color: var(--site-primary);
      overflow: hidden;
    }

    .hero-ibe-modal-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
      padding: 14px 16px 10px;
      border-bottom: 1px solid rgba(117,143,163,0.14);
      background: #ffffff;
    }

    .hero-ibe-modal-heading {
      display: grid;
      gap: 4px;
    }

    .hero-ibe-modal-kicker {
      color: #7d90a2;
      font-size: 10px;
      line-height: 1.2;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .hero-ibe-modal-head h3 {
      margin: 0;
      color: var(--site-primary);
      font-size: 18px;
      line-height: 1.1;
      font-weight: 700;
    }

    .hero-ibe-modal-close,
    .hero-ibe-modal-back,
    .hero-ibe-modal-head-action {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 36px;
      border-radius: 12px;
      font-family: inherit;
      cursor: pointer;
    }

    .hero-ibe-modal-close {
      width: 36px;
      flex: 0 0 auto;
      border: 1px solid rgba(117,143,163,0.18);
      background: #ffffff;
      color: var(--site-primary);
      font-size: 22px;
      line-height: 1;
    }

    .hero-ibe-modal-head.is-mobile {
      display: grid;
      grid-template-columns: 40px minmax(0, 1fr) auto;
      align-items: center;
      gap: 10px;
      padding: calc(12px + env(safe-area-inset-top)) 14px 12px;
      border-bottom: 0;
      background: #2f728f;
      color: #ffffff;
    }

    .hero-ibe-modal-back {
      width: 40px;
      border: 0;
      background: rgba(255,255,255,0.12);
      color: #ffffff;
      font-size: 24px;
      line-height: 1;
    }

    .hero-ibe-modal-mobile-title {
      min-width: 0;
      display: grid;
      gap: 2px;
    }

    .hero-ibe-modal-mobile-kicker {
      color: rgba(255,255,255,0.72);
      font-size: 10px;
      line-height: 1.2;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .hero-ibe-modal-head.is-mobile h3 {
      color: #ffffff;
      font-size: 18px;
      line-height: 1.15;
    }

    .hero-ibe-modal-head-action {
      min-width: 92px;
      padding: 0 14px;
      border: 0;
      background: var(--site-accent, #fd3612);
      color: #ffffff;
      font-size: 14px;
      line-height: 1;
      font-weight: 700;
    }

    .hero-ibe-modal-body {
      display: grid;
      gap: 12px;
      padding: 12px 14px 14px;
      overflow: auto;
      overscroll-behavior: contain;
      background: #ffffff;
    }

    .hero-ibe-modal-foot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      padding: 10px 14px 14px;
      border-top: 1px solid rgba(117,143,163,0.14);
      background: #ffffff;
    }

    .hero-ibe-modal-reset,
    .hero-ibe-modal-apply {
      min-width: 0;
      min-height: 44px;
      padding: 0 18px;
      border-radius: 12px;
      font-size: 14px;
      line-height: 1;
      font-weight: 700;
      font-family: inherit;
      cursor: pointer;
    }

    .hero-ibe-modal-reset {
      border: 1px solid rgba(117,143,163,0.22);
      background: #ffffff;
      color: var(--site-primary);
    }

    .hero-ibe-modal-apply {
      border: 0;
      background: var(--site-accent, #fd3612);
      color: #ffffff;
    }

    .hero-ibe-modal-search {
      position: relative;
      display: block;
    }

    .hero-ibe-modal-search input {
      width: 100%;
      min-height: 44px;
      padding: 0 14px 0 42px;
      border: 1px solid rgba(117,143,163,0.18);
      border-radius: 12px;
      background: #ffffff;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Ccircle cx='6.75' cy='6.75' r='4.75' stroke='%237e8c9d' stroke-width='1.6'/%3E%3Cpath d='M10.6 10.6L14 14' stroke='%237e8c9d' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
      background-position: 14px 50%;
      background-repeat: no-repeat;
      background-size: 16px 16px;
      color: var(--site-primary);
      font: inherit;
      font-size: 14px;
      font-weight: 600;
      outline: none;
    }

    .hero-ibe-modal-search input:focus {
      border-color: rgba(117,143,163,0.28);
      box-shadow: 0 0 0 3px rgba(16,46,70,0.04);
    }

    .hero-ibe-modal-search input::placeholder {
      color: #7e8c9d;
    }

    .hero-ibe-modal-search-icon {
      display: none;
    }

    .hero-ibe-modal-search-icon::before {
      content: none;
    }

    .hero-ibe-modal-search-icon::after {
      content: none;
    }

    .hero-ibe-choice-list {
      display: grid;
      gap: 12px;
    }

    .hero-ibe-choice-section {
      display: grid;
      gap: 7px;
    }

    .hero-ibe-choice-section-title {
      margin: 0;
      color: #6c7f90;
      font-size: 10px;
      line-height: 1.2;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .hero-ibe-choice-cluster {
      display: grid;
      gap: 6px;
    }

    .hero-ibe-choice {
      display: grid;
      grid-template-columns: 56px minmax(0, 1fr) auto;
      align-items: center;
      gap: 12px;
      width: 100%;
      min-height: 48px;
      padding: 9px 12px;
      border: 1px solid rgba(117,143,163,0.16);
      border-radius: 12px;
      background: #ffffff;
      color: var(--site-primary);
      text-align: left;
      font: inherit;
      cursor: pointer;
      transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
    }

    .hero-ibe-choice:hover,
    .hero-ibe-choice.active {
      border-color: rgba(117,143,163,0.16);
      background: #f6f9fb;
      box-shadow: 0 8px 18px rgba(16,46,70,0.04);
    }

    .hero-ibe-choice-mark {
      width: 56px;
      height: 36px;
      border-radius: 10px;
      background: linear-gradient(135deg, #eff6fb, #daeaf5);
      box-shadow: inset 0 0 0 1px rgba(117,143,163,0.14);
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0;
    }

    .hero-ibe-choice-mark.has-media {
      background: #ffffff;
      box-shadow: inset 0 0 0 1px rgba(117,143,163,0.16);
    }

    .hero-ibe-choice-mark img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .hero-ibe-choice-copy {
      min-width: 0;
      display: grid;
      gap: 1px;
      align-content: center;
    }

    .hero-ibe-choice-label {
      min-width: 0;
      font-size: 13px;
      line-height: 1.2;
      font-weight: 600;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .hero-ibe-choice-meta {
      color: #6c7f90;
      font-size: 11px;
      line-height: 1.25;
      font-weight: 500;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .hero-ibe-choice-dot {
      width: 18px;
      height: 18px;
      flex: 0 0 auto;
      border: 2px solid #d6dde6;
      border-radius: 6px;
      position: relative;
      background: #ffffff;
      transition: border-color 0.18s ease, background 0.18s ease;
    }

    .hero-ibe-choice-dot::after {
      content: "";
      position: absolute;
      left: 5px;
      top: 1px;
      width: 4px;
      height: 8px;
      border-right: 2px solid #ffffff;
      border-bottom: 2px solid #ffffff;
      transform: rotate(45deg);
      opacity: 0;
      transition: opacity 0.18s ease;
    }

    .hero-ibe-choice.active .hero-ibe-choice-dot {
      border-color: #8fa8b9;
      background: #8fa8b9;
    }

    .hero-ibe-choice.active .hero-ibe-choice-dot::after {
      opacity: 1;
    }

    .hero-ibe-choice-empty {
      padding: 2px;
      color: #6c7f90;
      font-size: 14px;
      line-height: 1.5;
    }

    .hero-ibe-people {
      display: grid;
      gap: 10px;
    }

    .hero-ibe-people-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px;
    }

    .hero-ibe-people-row {
      display: grid;
      gap: 10px;
      padding: 12px;
      border: 1px solid rgba(117,143,163,0.14);
      border-radius: 12px;
      background: #f7fbfd;
    }

    .hero-ibe-people-copy {
      display: grid;
      gap: 4px;
    }

    .hero-ibe-people-copy strong {
      color: var(--site-primary);
      font-size: 14px;
      line-height: 1.2;
    }

    .hero-ibe-people-copy span,
    .hero-ibe-people-note,
    .hero-ibe-people-summary span {
      color: #6c7f90;
      font-size: 12px;
      line-height: 1.45;
      font-weight: 600;
    }

    .hero-ibe-people-step {
      margin: 0;
      color: #6c7f90;
      font-size: 10px;
      line-height: 1.2;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .hero-ibe-people-note {
      display: none;
    }

    .hero-ibe-people-summary {
      display: grid;
      gap: 4px;
      padding: 12px;
      border: 1px solid rgba(117,143,163,0.14);
      border-radius: 12px;
      background: #f7fbfd;
    }

    .hero-ibe-people-summary strong {
      color: var(--site-primary);
      font-size: 14px;
      line-height: 1.2;
      font-weight: 700;
    }

    .hero-ibe-children-ages {
      display: grid;
      gap: 10px;
    }

    .hero-ibe-people-hint {
      margin: 0;
      color: #6c7f90;
      font-size: 12px;
      line-height: 1.45;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .hero-ibe-age-list {
      display: grid;
      gap: 8px;
    }

    .hero-ibe-age-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: nowrap;
      gap: 12px;
      padding: 10px 0;
      color: var(--site-primary);
      font-size: 14px;
      line-height: 1.3;
      font-weight: 600;
    }

    .hero-ibe-age-row > span {
      flex: 0 0 auto;
      white-space: nowrap;
    }

    .hero-ibe-stepper {
      display: flex;
      align-items: center;
      gap: 8px;
      flex: 0 0 auto;
    }

    .hero-ibe-stepper-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border: 1px solid rgba(105,205,251,0.44);
      border-radius: 999px;
      background: #ffffff;
      color: var(--site-primary);
      font-size: 18px;
      line-height: 1;
      font-weight: 700;
      font-family: inherit;
      cursor: pointer;
    }

    .hero-ibe-stepper-btn:disabled {
      opacity: 0.38;
      cursor: not-allowed;
    }

    .hero-ibe-stepper-value {
      min-width: 20px;
      color: var(--site-primary);
      font-size: 17px;
      line-height: 1;
      font-weight: 700;
      text-align: center;
    }

    .hero-ibe-age-select {
      flex: 0 0 auto;
      min-width: 124px;
      min-height: 40px;
      padding: 0 12px;
      border: 1px solid rgba(117,143,163,0.18);
      border-radius: 12px;
      background: #ffffff;
      color: var(--site-primary);
      font: inherit;
      font-size: 14px;
      line-height: 1;
      font-weight: 600;
    }

    @keyframes hero-slide-fade-first {
      0%, 30% { opacity: 1; }
      38%, 100% { opacity: 0; }
    }

    @keyframes hero-slide-fade {
      0%, 12% { opacity: 0; }
      18%, 42% { opacity: 1; }
      50%, 100% { opacity: 0; }
    }

    .hero-ibe-period {
      display: grid;
      gap: 8px;
    }

    .hero-ibe-period-targets {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px;
    }

    .hero-ibe-period-target {
      display: grid;
      gap: 4px;
      padding: 8px 10px;
      border: 1px solid rgba(117,143,163,0.16);
      border-radius: 12px;
      background: #f8fbfd;
      color: var(--site-primary);
      text-align: left;
      font: inherit;
      cursor: pointer;
      transition: border-color 0.18s ease, background 0.18s ease;
    }

    .hero-ibe-period-target span {
      color: #6c7f90;
      font-size: 10px;
      line-height: 1.2;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .hero-ibe-period-target strong {
      font-size: 12px;
      line-height: 1.2;
      font-weight: 700;
    }

    .hero-ibe-period-target.active {
      border-color: rgba(244, 194, 55, 0.48);
      background: #fff7dc;
    }

    .hero-ibe-period-toolbar {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
      gap: 8px;
      align-items: end;
    }

    .hero-ibe-period-select {
      display: grid;
      gap: 6px;
    }

    .hero-ibe-period-select span {
      color: #6c7f90;
      font-size: 10px;
      line-height: 1.2;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .hero-ibe-period-select select {
      width: 100%;
      min-height: 40px;
      padding: 0 40px 0 12px;
      border: 1px solid rgba(117,143,163,0.18);
      border-radius: 12px;
      background: #ffffff;
      color: var(--site-primary);
      font: inherit;
      font-size: 14px;
      font-weight: 600;
    }

    .hero-ibe-month-nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      min-height: 40px;
      padding: 0 4px;
      border: 1px solid rgba(117,143,163,0.14);
      border-radius: 12px;
      background: #f8fbfd;
    }

    .hero-ibe-month-nav strong {
      color: var(--site-primary);
      font-size: 14px;
      line-height: 1.2;
      font-weight: 700;
      text-align: center;
    }

    .hero-ibe-month-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 34px;
      height: 34px;
      border: 0;
      border-radius: 10px;
      background: #ffffff;
      color: var(--site-primary);
      font-size: 18px;
      line-height: 1;
      cursor: pointer;
    }

    .hero-ibe-period-selection-row {
      display: grid;
      gap: 6px;
    }

    .hero-ibe-period-selection {
      padding: 10px 12px;
      border-radius: 12px;
      background: #f5f8fb;
      color: var(--site-primary);
      font-size: 14px;
      line-height: 1.4;
      font-weight: 700;
    }

    .hero-ibe-period-legend {
      color: #6c7f90;
      font-size: 12px;
      line-height: 1.45;
      font-weight: 600;
    }

    .hero-ibe-calendar {
      display: grid;
      gap: 5px;
    }

    .hero-ibe-calendar-weekdays,
    .hero-ibe-calendar-grid {
      display: grid;
      grid-template-columns: repeat(7, minmax(0, 1fr));
      gap: 2px;
    }

    .hero-ibe-calendar-weekdays span {
      color: #6c7f90;
      font-size: 11px;
      line-height: 1.2;
      font-weight: 700;
      text-align: center;
    }

    .hero-ibe-calendar-empty {
      display: block;
      aspect-ratio: 1;
    }

    .hero-ibe-day {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      aspect-ratio: 1;
      min-height: 33px;
      border: 1px solid transparent;
      border-radius: 8px;
      background: #ffffff;
      color: var(--site-primary);
      font: inherit;
      font-size: 12px;
      line-height: 1;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
    }

    .hero-ibe-day.is-holiday {
      background: #eef8ff;
    }

    .hero-ibe-day.is-selected {
      background: #dceffc;
      border-color: #c7e3f6;
    }

    .hero-ibe-day.is-edge {
      background: #8fd8ff;
      border-color: #8fd8ff;
      font-weight: 700;
    }

    .hero-ibe-day.is-today {
      border-color: rgba(16,46,70,0.26);
    }

    .hero-ibe-day.is-disabled {
      background: transparent;
      color: #a1b5c3;
      cursor: not-allowed;
    }

    .hero-ibe-period-hint {
      display: none;
    }

    .hero-ibe-modal.is-screen {
      inset: 0;
      width: 100% !important;
      height: 100dvh;
      max-height: none;
      border: 0;
      border-radius: 0;
      box-shadow: none;
    }

    .hero-ibe-modal.is-screen .hero-ibe-modal-body {
      flex: 1 1 auto;
      gap: 0;
      padding: 12px 0 calc(18px + env(safe-area-inset-bottom));
      overflow: auto;
      align-content: start;
    }

    .hero-ibe-modal.is-screen .hero-ibe-modal-search {
      position: sticky;
      top: 0;
      z-index: 2;
      padding: 0 14px 12px;
      background: #ffffff;
    }

    .hero-ibe-modal.is-screen .hero-ibe-choice-list,
    .hero-ibe-modal.is-screen .hero-ibe-people,
    .hero-ibe-modal.is-screen .hero-ibe-period {
      padding: 0 14px;
      align-content: start;
    }

    .hero-ibe-modal.is-screen .hero-ibe-choice-list {
      gap: 14px;
    }

    .hero-ibe-modal.is-screen .hero-ibe-people-grid {
      align-content: start;
      grid-auto-rows: max-content;
    }

    .hero-ibe-modal.is-screen .hero-ibe-people-row {
      align-content: start;
    }

    .hero-ibe-modal.is-screen .hero-ibe-choice-section {
      gap: 6px;
    }

    .hero-ibe-modal.is-screen .hero-ibe-choice-cluster {
      gap: 0;
      border: 1px solid rgba(117,143,163,0.12);
      border-radius: 16px;
      overflow: hidden;
      background: #ffffff;
    }

    .hero-ibe-modal.is-screen .hero-ibe-choice {
      border: 0;
      border-radius: 0;
      padding: 12px 10px;
      min-height: 54px;
      box-shadow: none;
      border-bottom: 1px solid rgba(117,143,163,0.12);
    }

    .hero-ibe-modal.is-screen .hero-ibe-choice-cluster .hero-ibe-choice:last-child {
      border-bottom: 0;
    }

    .hero-ibe-modal.is-screen .hero-ibe-choice:hover,
    .hero-ibe-modal.is-screen .hero-ibe-choice.active {
      background: #f4f8fb;
    }

    .hero-ibe-modal.is-screen .hero-ibe-period-targets,
    .hero-ibe-modal.is-screen .hero-ibe-period-toolbar,
    .hero-ibe-modal.is-screen .hero-ibe-period-selection-row,
    .hero-ibe-modal.is-screen .hero-ibe-calendar,
    .hero-ibe-modal.is-screen .hero-ibe-period-hint {
      margin-left: 0;
      margin-right: 0;
    }

    .hero-ibe-modal.is-sheet {
      left: 0 !important;
      right: 0 !important;
      top: auto !important;
      bottom: 0;
      width: 100% !important;
      max-width: none;
      max-height: min(78vh, 620px);
      border: 0;
      border-radius: 22px 22px 0 0;
      box-shadow: 0 -22px 44px rgba(10,32,48,0.18);
    }

    .hero-ibe-modal.is-sheet .hero-ibe-modal-head.is-mobile {
      padding: 12px 14px;
      border-bottom: 1px solid rgba(117,143,163,0.14);
      background: #ffffff;
      color: var(--site-primary);
    }

    .hero-ibe-modal.is-sheet .hero-ibe-modal-back {
      background: #f3f7fa;
      color: var(--site-primary);
    }

    .hero-ibe-modal.is-sheet .hero-ibe-modal-mobile-kicker {
      color: #6c7f90;
    }

    .hero-ibe-modal.is-sheet .hero-ibe-modal-head.is-mobile h3 {
      color: var(--site-primary);
      font-size: 17px;
    }

    .hero-ibe-modal.is-sheet .hero-ibe-modal-head-action {
      background: var(--site-accent, #fd3612);
      color: #ffffff;
    }

    .hero-ibe-modal.is-sheet .hero-ibe-modal-body {
      gap: 12px;
      padding: 14px 16px calc(18px + env(safe-area-inset-bottom));
      overflow: auto;
      align-content: start;
      overscroll-behavior: contain;
    }

    .hero-ibe-modal.is-sheet .hero-ibe-people-grid {
      grid-template-columns: 1fr;
    }

    .hero-ibe-modal.is-sheet .hero-ibe-stepper {
      justify-content: space-between;
      width: 100%;
    }

    .hero-ibe-modal.is-sheet .hero-ibe-age-row {
      align-items: center;
      flex-direction: row;
    }

    .hero-ibe-modal.is-sheet .hero-ibe-age-select {
      min-width: 124px;
      width: auto;
    }

    .hero-ibe-modal[data-hero-viewport="mobile"] .hero-ibe-modal-search input,
    .hero-ibe-modal[data-hero-viewport="mobile"] .hero-ibe-age-select,
    .hero-ibe-modal[data-hero-viewport="mobile"] .hero-ibe-period-select select {
      font-size: 16px;
    }

    body.hero-ibe-modal-open {
      overflow: hidden;
    }

    .hero-ibe-contact {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 8px;
      width: 100%;
      color: rgba(255,255,255,0.82);
      font-size: 12px;
      line-height: 1.4;
      font-weight: 500;
      text-align: left;
    }

    .site-hero.hero-align-left .hero-ibe-contact {
      justify-content: flex-start;
      text-align: left;
    }

    .site-hero.hero-align-center .hero-ibe-contact {
      justify-content: center;
      text-align: center;
    }

    .hero-ibe-contact a {
      color: #fff;
      font-weight: 700;
      text-decoration: none;
    }

    .text-layout {
      display: grid;
      grid-template-columns: minmax(0, 0.8fr) minmax(240px, 0.45fr);
      gap: 36px;
      align-items: start;
    }

    .body-copy {
      color: var(--site-muted);
      font-size: 15px;
      line-height: 1.68;
    }

    .body-copy p:last-child {
      margin-bottom: 0;
    }

    .section-rich {
      max-width: 820px;
    }

    .section-rich.section-rich-align-center {
      margin-inline: auto;
      text-align: center;
    }

    .section-rich.section-rich-align-center .body-copy {
      margin-inline: auto;
    }

    .text-section-extra-html {
      width: 100%;
      margin-top: 22px;
    }

    .contact-extra-html {
      width: 100%;
      max-width: 60ch;
      margin-top: 0;
      color: rgba(16,46,70,0.92);
      font-size: 17px;
      line-height: 1.7;
    }

    .contact-extra-html > :first-child {
      margin-top: 0;
    }

    .contact-extra-html > :last-child {
      margin-bottom: 0;
    }

    .section-rich h2,
    .section-rich h3,
    .section-rich p,
    .section-rich ul,
    .section-rich ol,
    .section-rich blockquote {
      margin-top: 0;
    }

    .section-rich blockquote {
      border-left: 4px solid var(--site-accent);
      margin-left: 0;
      padding-left: 18px;
      color: var(--site-primary);
      font-weight: 600;
    }

    .body-note {
      border-left: 4px solid var(--site-accent);
      padding: 16px 0 16px 18px;
      color: var(--site-primary);
      font-weight: 600;
    }

    .image-text {
      display: grid;
      grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.72fr);
      gap: 42px;
      align-items: center;
    }

    .image-text.reverse {
      grid-template-columns: minmax(280px, 0.72fr) minmax(0, 0.8fr);
    }

    .section-media {
      width: 100%;
      aspect-ratio: 4 / 3;
      border-radius: var(--image-radius);
      object-fit: cover;
      background: #dce5ec;
      box-shadow: var(--shadow);
    }

    .single-image {
      margin: 0;
    }

    .single-image img {
      width: 100%;
      max-height: 620px;
      display: block;
      border-radius: var(--image-radius);
      object-fit: cover;
      background: #dce5ec;
      box-shadow: var(--shadow);
    }

    .single-image.is-plain img {
      border-radius: 0;
      box-shadow: none;
    }

    .single-image figcaption {
      margin-top: 10px;
      color: var(--site-muted);
      font-size: 13px;
      font-weight: 500;
    }

    .page-section.link-gallery-shell {
      overflow: clip;
    }

    .page-section.title-logo-shell {
      overflow: clip;
      padding: 0;
      background: transparent;
    }

    .title-logo-section {
      width: 100vw;
      margin-inline: calc(50% - 50vw);
      background: var(--title-logo-bg, var(--section-bg, #dcf6fd));
      color: var(--site-primary);
    }

    .title-logo-wrap {
      width: min(1180px, calc(100vw - 44px));
      margin: 0 auto;
      padding: var(--title-logo-pad-top, 22px) 0 var(--title-logo-pad-bottom, 22px);
      display: grid;
      gap: 22px;
      align-items: center;
    }

    .title-logo-section.variant-logo .title-logo-wrap {
      grid-template-columns: minmax(168px, 220px) minmax(0, 1fr);
    }

    .title-logo-section.variant-centered .title-logo-wrap,
    .title-logo-section.variant-editorial .title-logo-wrap {
      justify-items: center;
      text-align: center;
    }

    .title-logo-logo {
      width: min(220px, 100%);
      min-height: 0;
      padding: 10px 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #ffffff;
      box-shadow: 0 14px 26px rgba(16,46,70,0.08);
      justify-self: center;
    }

    .title-logo-logo img {
      display: block;
      width: 100%;
      max-width: 188px;
      max-height: 70px;
      object-fit: contain;
    }

    .title-logo-logo-placeholder {
      width: 100%;
      min-height: 72px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, rgba(126,208,245,0.28), rgba(16,46,70,0.12));
      color: rgba(16,46,70,0.62);
      font-size: 15px;
      font-weight: 700;
    }

    .title-logo-copy {
      width: 100%;
      display: grid;
      gap: 12px;
      color: var(--site-primary);
    }

    .title-logo-section.variant-logo .title-logo-copy {
      align-content: center;
    }

    .title-logo-section.variant-centered .title-logo-copy,
    .title-logo-section.variant-editorial .title-logo-copy {
      max-width: 920px;
      justify-items: center;
      align-content: center;
    }

    .title-logo-inline-copy {
      margin: 0;
      max-width: 940px;
      color: var(--site-primary);
      font-size: 17px;
      line-height: 1.55;
      font-weight: 500;
    }

    .title-logo-inline-lead {
      margin-right: 6px;
      font-size: 1.08em;
      line-height: inherit;
      font-weight: 700;
    }

    .title-logo-title {
      margin: 0;
      max-width: 940px;
      color: var(--site-primary);
      font-size: 36px;
      line-height: 1.16;
      font-weight: 700;
    }

    .title-logo-section.variant-centered .title-logo-title {
      max-width: 900px;
    }

    .title-logo-text {
      margin: 0;
      max-width: 1020px;
      color: var(--site-primary);
      font-size: 15px;
      line-height: 1.52;
      font-weight: 500;
    }

    .title-logo-section.variant-editorial .title-logo-title {
      max-width: 760px;
      font-size: 30px;
      line-height: 1.22;
      letter-spacing: -0.2px;
    }

    .title-logo-section.variant-editorial .title-logo-text {
      max-width: 760px;
      color: #5b6472;
      font-size: 15px;
      line-height: 1.5;
    }

    .title-logo-section.variant-centered .hero-title-highlight {
      padding: 0.01em 0.08em 0.03em;
      border-radius: 0.04em;
    }

    .title-logo-section.variant-editorial .hero-title-highlight {
      color: #ffffff;
      padding: 0.01em 0.14em 0.03em;
      border-radius: 0;
    }

    .title-logo-mobile-title {
      display: none;
    }

    .teaser-cards-section {
      display: grid;
      gap: 24px;
    }

    .teaser-cards-head {
      display: grid;
      gap: 14px;
      justify-items: start;
    }

    .teaser-cards-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--site-accent);
      font-size: 12px;
      line-height: 1.2;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0;
    }

    .teaser-cards-kicker::before {
      content: "";
      width: 24px;
      height: 3px;
      border-radius: 999px;
      background: currentColor;
    }

    .teaser-cards-section h2 {
      margin: 0;
      color: var(--site-primary);
      font-size: 28px;
      line-height: 1.15;
      font-weight: 700;
    }

    .teaser-cards-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
    }

    .teaser-cards-card {
      display: block;
      overflow: hidden;
      border-radius: 8px;
      background: #ffffff;
      color: inherit;
      text-decoration: none;
      box-shadow: 0 18px 32px rgba(16,46,70,0.08);
      transition: transform 0.28s ease, box-shadow 0.28s ease;
    }

    .teaser-cards-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 24px 40px rgba(16,46,70,0.12);
    }

    .teaser-cards-card.is-static:hover {
      transform: none;
      box-shadow: 0 18px 32px rgba(16,46,70,0.08);
    }

    .teaser-cards-card-media {
      position: relative;
      aspect-ratio: 1.52 / 1;
      background: #dce5ec;
    }

    .teaser-cards-card-media img,
    .teaser-cards-card-placeholder {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
    }

    .teaser-cards-card-placeholder {
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, rgba(126,208,245,0.3), rgba(16,46,70,0.16));
      color: rgba(16,46,70,0.62);
      font-size: 15px;
      font-weight: 700;
    }

    .teaser-cards-card-badge {
      position: absolute;
      top: 14px;
      left: 14px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 34px;
      max-width: calc(100% - 28px);
      padding: 0 13px;
      border-radius: 999px;
      background: rgba(255,255,255,0.96);
      color: var(--site-primary);
      font-size: 13px;
      line-height: 1.2;
      font-weight: 700;
      box-sizing: border-box;
    }

    .teaser-cards-card-badge::before {
      content: "";
      width: 14px;
      height: 14px;
      border: 2px solid #ff5a36;
      border-radius: 999px 999px 999px 0;
      transform: rotate(-45deg);
      box-sizing: border-box;
      flex: 0 0 auto;
    }

    .teaser-cards-card-copy {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 16px;
      padding: 16px;
    }

    .teaser-cards-card-copy h3 {
      margin: 0;
      color: var(--site-primary);
      font-size: 18px;
      line-height: 1.15;
      font-weight: 700;
    }

    .teaser-cards-card-copy p {
      margin: 6px 0 0;
      color: rgba(16,46,70,0.72);
      font-size: 14px;
      line-height: 1.45;
      font-weight: 500;
    }

    .teaser-cards-card-arrow {
      width: 46px;
      height: 46px;
      border: 1px solid rgba(255, 122, 92, 0.45);
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #ff5a36;
      font-size: 28px;
      line-height: 1;
      flex: 0 0 auto;
      background: rgba(255, 243, 240, 0.85);
    }

    .page-section.topic-chips-shell {
      padding-top: 18px !important;
      padding-bottom: 18px !important;
      background: var(--section-bg, #fbf8f2);
    }

    .page-section.topic-chips-shell.has-intro {
      padding-top: 24px !important;
      padding-bottom: 20px !important;
    }

    .topic-chips-section {
      display: grid;
      gap: 12px;
      justify-items: center;
      --topic-chip-font-size: 15px;
    }

    .topic-chips-section.topic-chips-align-left {
      justify-items: start;
    }

    .topic-chips-section.topic-chips-mode-media {
      justify-items: stretch;
    }

    .topic-chips-intro {
      display: grid;
      gap: 8px;
      justify-items: center;
      text-align: center;
    }

    .topic-chips-section.topic-chips-align-left .topic-chips-intro {
      justify-items: start;
      text-align: left;
    }

    .topic-chips-intro .eyebrow {
      margin-bottom: 0;
    }

    .topic-chips-intro h2,
    .topic-chips-intro .section-text {
      margin: 0;
    }

    .topic-chips-intro .section-text {
      max-width: 640px;
    }

    .topic-chips-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-width: 0;
      width: 100%;
    }

    .topic-chips-section.topic-chips-align-left .topic-chips-row {
      justify-content: flex-start;
    }

    .topic-chips-prefix {
      flex: 0 0 auto;
      color: var(--site-muted);
      font-size: 14px;
      line-height: 1.35;
      font-weight: 500;
      white-space: nowrap;
    }

    .topic-chips-track {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-width: 0;
      flex: 0 1 auto;
      flex-wrap: wrap;
      overflow: visible;
      padding: 0;
      scrollbar-width: none;
    }

    .topic-chips-section.topic-chips-align-left .topic-chips-track {
      justify-content: flex-start;
    }

    .topic-chips-track::-webkit-scrollbar {
      display: none;
    }

    .topic-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      flex: 0 0 auto;
      min-height: 40px;
      padding: 0 18px;
      border: 1px solid rgba(117,143,163,0.34);
      border-radius: 12px;
      background: #ffffff;
      color: var(--site-primary);
      font-size: var(--topic-chip-font-size);
      line-height: 1;
      font-weight: 500;
      text-decoration: none;
      box-sizing: border-box;
      white-space: nowrap;
      transition: border-color 0.25s ease, color 0.25s ease, background-color 0.25s ease;
    }

    .topic-chip:hover {
      border-color: rgba(16,46,70,0.28);
      color: var(--site-primary);
      background: rgba(255,255,255,0.98);
    }

    .topic-chip.is-highlighted {
      border-color: rgba(253,54,18,0.78);
      color: var(--site-accent);
      background: rgba(253,54,18,0.03);
    }

    .topic-chip.is-highlighted:hover {
      border-color: var(--site-accent);
      color: var(--site-accent);
      background: rgba(253,54,18,0.06);
    }

    .topic-chip.is-static,
    .topic-chip.is-static:hover {
      transform: none;
      cursor: default;
    }

    .topic-chip-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      line-height: 1;
    }

    .topic-chips-media-row {
      width: 100%;
      overflow-x: auto;
      overflow-y: hidden;
      padding: 2px 0 10px;
      scrollbar-width: none;
      -webkit-overflow-scrolling: touch;
      scroll-snap-type: x proximity;
    }

    .topic-chips-media-row::-webkit-scrollbar {
      display: none;
    }

    .topic-chips-media-track {
      display: flex;
      align-items: stretch;
      gap: 16px;
      width: max-content;
      min-width: 100%;
      justify-content: center;
    }

    .topic-chips-section.topic-chips-align-left .topic-chips-media-track {
      justify-content: flex-start;
    }

    .topic-media-tile {
      display: flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 clamp(146px, 12vw, 170px);
      aspect-ratio: 2.55 / 1;
      padding: 6px 8px;
      border: 0;
      background: #ffffff;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 8px 18px rgba(11,43,74,0.08);
      text-decoration: none;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      scroll-snap-align: start;
    }

    .topic-media-tile.is-image {
      padding: 0;
    }

    .topic-media-tile:hover {
      transform: none;
      box-shadow: 0 10px 22px rgba(11,43,74,0.1);
    }

    .topic-media-tile.is-static:hover {
      transform: none;
      box-shadow: 0 8px 18px rgba(11,43,74,0.08);
    }

    .topic-media-tile img,
    .topic-media-tile-placeholder {
      width: 100%;
      height: 100%;
      display: block;
    }

    .topic-media-tile img {
      object-fit: contain;
      object-position: center;
    }

    .topic-media-tile.is-image img {
      object-fit: cover;
    }

    .topic-media-tile-placeholder {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 12px;
      background: linear-gradient(135deg, rgba(126,208,245,0.22), rgba(16,46,70,0.08));
      color: rgba(16,46,70,0.72);
      font-size: 14px;
      line-height: 1.35;
      font-weight: 700;
      text-align: center;
    }

    .link-gallery-section {
      --link-gallery-max-width: 1180px;
      --link-gallery-card-height: 360px;
      --link-gallery-featured-card-height: 360px;
      --link-gallery-mosaic-row-height: clamp(190px, 17vw, 240px);
      --link-gallery-gap: 20px;
      --link-gallery-radius: 8px;
      --link-gallery-side-padding: 5%;
      width: 100%;
      margin-inline: 0;
      overflow: hidden;
      box-sizing: border-box;
    }

    .link-gallery-wrap {
      display: grid;
      gap: 24px;
      width: 100%;
      max-width: none;
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    .link-gallery-intro {
      display: grid;
      gap: 12px;
      width: 100%;
      justify-items: center;
      box-sizing: border-box;
      text-align: center;
    }

    .link-gallery-section.link-gallery-align-left .link-gallery-intro {
      justify-items: start;
      text-align: left;
    }

    .link-gallery-intro .eyebrow {
      margin-bottom: 0;
    }

    .link-gallery-intro h2 {
      margin: 0;
      color: var(--site-primary);
      font-size: 24px;
      line-height: 1.2;
      font-weight: 700;
      letter-spacing: -0.2px;
      text-align: center;
    }

    .link-gallery-section.link-gallery-align-left .link-gallery-intro h2 {
      text-align: left;
    }

    .link-gallery-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      width: fit-content;
      margin-top: 18px;
      padding: 14px 28px;
      border: 1px solid rgba(11,43,74,0.28);
      border-radius: 999px;
      background: #ffffff;
      color: var(--site-primary);
      font-size: 15px;
      line-height: 1.2;
      font-weight: 500;
      text-decoration: none;
      transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
    }

    .link-gallery-btn:hover {
      background: var(--site-accent);
      border-color: var(--site-accent);
      color: #ffffff;
      transform: translateY(-1px);
    }

    .link-gallery-btn.is-static {
      cursor: default;
    }

    .link-gallery-btn.is-static:hover {
      background: #ffffff;
      border-color: rgba(11,43,74,0.28);
      color: var(--site-primary);
      transform: none;
    }

    .link-gallery-track {
      display: grid;
      gap: var(--link-gallery-gap);
      align-items: stretch;
      overflow: visible;
      padding: 10px 0 0;
      box-sizing: border-box;
    }

    .link-gallery-track.layout-single {
      grid-template-columns: minmax(0, 1fr);
    }

    .link-gallery-track.layout-pair,
    .link-gallery-track.layout-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .link-gallery-track.layout-mosaic {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      grid-auto-rows: var(--link-gallery-mosaic-row-height);
      grid-auto-flow: row;
    }

    .link-gallery-track::after {
      content: none;
    }

    .link-gallery-cta {
      display: flex;
      width: 100%;
      justify-content: center;
      padding-top: 4px;
    }

    .link-gallery-cta .link-gallery-btn {
      margin-top: 0;
    }

    .link-gallery-card {
      position: relative;
      min-width: 0;
      height: 100%;
      overflow: hidden;
      border-radius: var(--link-gallery-radius);
      background: #dce5ec;
      color: #ffffff;
      text-decoration: none;
      transition: transform 0.35s cubic-bezier(0.2, 1, 0.3, 1);
      box-sizing: border-box;
    }

    .link-gallery-track.layout-single .link-gallery-card {
      aspect-ratio: 16 / 8;
    }

    .link-gallery-track.layout-pair .link-gallery-card,
    .link-gallery-track.layout-grid .link-gallery-card {
      aspect-ratio: 16 / 10;
    }

    .link-gallery-track.layout-mosaic .link-gallery-card {
      aspect-ratio: auto;
    }

    .link-gallery-card.is-full {
      grid-column: 1 / -1;
    }

    .link-gallery-track.layout-mosaic .link-gallery-card.is-tall {
      grid-row: span 2;
    }

    .link-gallery-card.is-regular {
      grid-column: auto;
    }

    .link-gallery-card:hover {
      transform: translateY(-4px);
    }

    .link-gallery-card.is-static:hover {
      transform: none;
    }

    .link-gallery-card img,
    .link-gallery-card-placeholder {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
    }

    .link-gallery-card-placeholder {
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, rgba(126,208,245,0.3), rgba(16,46,70,0.18));
      color: rgba(16,46,70,0.68);
      font-size: 16px;
      font-weight: 700;
    }

    .link-gallery-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.14) 45%, transparent 70%);
      pointer-events: none;
    }

    .link-gallery-card-copy {
      position: absolute;
      left: 18px;
      right: 18px;
      bottom: 16px;
    }

    .link-gallery-card-copy h3 {
      margin: 0;
      font-size: 22px;
      line-height: 1.1;
      font-weight: 600;
    }

    .link-gallery-card-copy span {
      display: inline-block;
      margin-top: 6px;
      font-size: 14px;
      line-height: 1.3;
      font-weight: 500;
      opacity: 0.95;
    }

    .link-gallery-empty {
      grid-column: 1 / -1;
      min-height: 240px;
    }

    .container-section {
      display: grid;
      gap: 0;
    }

    .columns-section {
      display: grid;
      grid-template-columns: repeat(var(--column-count, 3), minmax(0, 1fr));
      gap: var(--column-gap, 18px);
      align-items: stretch;
    }

    .column-section {
      min-width: 0;
    }

    .offers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
      gap: 18px;
      align-items: stretch;
      margin-top: 28px;
    }

    .offer-card {
      min-height: 100%;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      background: var(--site-surface);
      border: 1px solid var(--line);
      border-radius: var(--card-radius);
      box-shadow: 0 8px 22px rgba(16,46,70,0.04);
    }

    .offer-media {
      width: 100%;
      aspect-ratio: 16 / 10;
      object-fit: cover;
      display: block;
      background: #dce5ec;
    }

    .offer-body {
      padding: 18px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      flex: 1;
    }

    .offer-kicker {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      color: var(--site-accent);
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0;
    }

    .offer-teaser {
      color: var(--site-muted);
      margin-bottom: 0;
      line-height: 1.55;
    }

    .actions-band {
      display: grid;
      gap: 20px;
    }

    .actions-intro {
      display: grid;
      gap: 12px;
    }

    .actions-intro .eyebrow,
    .actions-intro h2,
    .actions-intro .section-text {
      margin-bottom: 0;
    }

    .actions-text {
      max-width: 760px;
      margin: 0;
    }

    .actions-grid {
      display: grid;
      gap: 22px;
      align-items: stretch;
    }

    .actions-grid > * {
      min-width: 0;
      height: 100%;
    }

    .action-card {
      min-width: 0;
      height: 100%;
    }

    .action-card-link {
      min-height: 100%;
      display: flex;
      flex-direction: column;
      border-radius: var(--card-radius);
      overflow: hidden;
      text-decoration: none;
      color: inherit;
      background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, #ffffff 100%);
      border: 1px solid rgba(16,46,70,0.10);
      box-shadow: 0 18px 40px rgba(16,46,70,0.08);
      transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    }

    .action-card-link:hover {
      transform: translateY(-3px);
      box-shadow: 0 24px 48px rgba(16,46,70,0.14);
      border-color: rgba(16,46,70,0.16);
    }

    .action-card-link:focus-visible {
      outline: 3px solid rgba(126, 208, 245, 0.9);
      outline-offset: 3px;
    }

    .action-card-mediaWrap {
      position: relative;
      aspect-ratio: 4 / 5;
      background: #dce5ec;
      overflow: hidden;
    }

    .action-card-media {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .action-card-overlay {
      position: absolute;
      inset: 16px 16px auto 16px;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 10px;
      flex-wrap: wrap;
    }

    .action-card-badge,
    .action-card-date {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 7px 12px;
      border-radius: 999px;
      font-size: 12px;
      line-height: 1.2;
      font-weight: 700;
      box-shadow: 0 8px 18px rgba(16,46,70,0.12);
    }

    .action-card-badge {
      background: rgba(253,54,18,0.94);
      color: #fff;
    }

    .action-card-date {
      background: rgba(255,255,255,0.96);
      color: var(--site-primary);
      margin-left: auto;
    }

    .action-card-body {
      padding: 18px 18px 20px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      flex: 1;
    }

    .action-card-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }

    .action-card-meta span {
      display: inline-flex;
      align-items: center;
      min-height: 26px;
      padding: 4px 9px;
      border-radius: 999px;
      border: 1px solid rgba(16,46,70,0.08);
      background: #f5f8fb;
      color: rgba(16,46,70,0.82);
      font-size: 11px;
      line-height: 1.2;
      font-weight: 600;
      letter-spacing: -0.01em;
    }

    .action-card h3 {
      margin: 0;
      font-size: clamp(21px, 1.7vw, 26px);
      line-height: 1.12;
      letter-spacing: -0.025em;
      color: var(--site-primary);
    }

    .action-card-text {
      margin: 0;
      color: var(--site-muted);
      font-size: 14px;
      line-height: 1.55;
      flex: 1;
    }

    .action-card-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 40px;
      padding: 8px 16px;
      border-radius: 999px;
      background: var(--site-accent);
      color: #fff;
      font-size: 13px;
      line-height: 1.2;
      font-weight: 700;
      box-shadow: 0 10px 18px rgba(253,54,18,0.16);
      margin-top: auto;
    }

    .cruise-offers-band,
    .cruise-cards-deck {
      --dkp-navy: var(--site-primary);
      --dkp-accent: var(--site-accent);
      --dkp-sky: #7ed0f5;
      --dkp-muted: var(--site-muted);
      --dkp-line: var(--line);
      --dkp-radius: 18px;
      --dkp-shadow-card: 0 18px 46px rgba(16,46,70,0.10);
      --dkp-shadow-overlay: 0 8px 18px rgba(11,43,74,.10);
      display: grid;
      gap: 20px;
    }

    .cruise-offers-intro {
      display: grid;
      gap: 12px;
    }

    .cruise-offers-intro .eyebrow,
    .cruise-offers-intro h2,
    .cruise-offers-intro .section-text {
      margin-bottom: 0;
    }

    .cruise-offers-text {
      max-width: 760px;
      margin: 0;
    }

    .cruise-offers-meta {
      display: none;
    }

    .cruise-offers-grid {
      display: grid;
      grid-template-columns: repeat(var(--cruise-columns, 3), minmax(0, 1fr));
      gap: 22px;
      align-items: stretch;
    }

    .cruise-offers-grid > * {
      min-width: 0;
      height: 100%;
    }

    .cruise-cards-cardFrame {
      min-width: 0;
      height: 100%;
    }

    .cruise-cards-deck .dkp-card {
      background: rgba(255,255,255,.96);
      border: 1px solid rgba(15,23,42,.10);
      border-radius: var(--dkp-radius);
      box-shadow: var(--dkp-shadow-card);
      overflow: hidden;
      min-width: 0;
      min-height: 100%;
      display: grid;
      grid-template-columns: 1fr;
      align-items: stretch;
    }

    .cruise-cards-deck .dkp-media {
      position: relative;
      background: transparent;
      border-bottom: 0;
    }

    .cruise-cards-deck .dkp-media-frame {
      position: relative;
      overflow: hidden;
      background: transparent;
    }

    .cruise-cards-deck .dkp-media-viewport {
      position: relative;
      overflow: hidden;
      aspect-ratio: 20 / 12;
      background: transparent;
    }

    .cruise-cards-deck .dkp-media-viewport img,
    .cruise-cards-deck .dkp-routeMapImg {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      object-position: center;
    }

    .cruise-cards-deck .dkp-kombiSplit {
      width: 100%;
      height: 100%;
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: 2px;
      background: rgba(255,255,255,.98);
      overflow: hidden;
    }

    .cruise-cards-deck .dkp-kombiSplit img,
    .cruise-cards-deck .dkp-kombiSplit .dkp-kombiSplit-hotel--placeholder {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      object-position: center;
    }

    .cruise-cards-deck .dkp-kombiSplit .dkp-kombiSplit-hotel--placeholder {
      background:
        radial-gradient(circle at 24% 24%, rgba(255,255,255,.85), rgba(255,255,255,0) 28%),
        linear-gradient(145deg, #f2f7fb 0%, #dde8f2 52%, #cddbea 100%);
    }

    .cruise-cards-deck .dkp-routeMapImg {
      position: absolute;
      inset: 0;
      background: transparent;
    }

    .cruise-cards-deck .dkp-logo {
      position: absolute;
      top: 12px;
      left: 12px;
      z-index: 2;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 8px 12px;
      border-radius: 14px;
      background: rgba(255,255,255,.94);
      border: 1px solid rgba(15,23,42,.08);
      box-shadow: var(--dkp-shadow-overlay);
    }

    .cruise-cards-deck .dkp-logo img {
      width: auto;
      height: 18px;
      max-width: 88px;
      display: block;
      object-fit: contain;
    }

    .cruise-cards-deck .dkp-routeToggle {
      appearance: none;
      position: absolute;
      top: 12px;
      right: 12px;
      z-index: 2;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      min-height: 34px;
      padding: 0 12px;
      border-radius: 999px;
      border: 1px solid rgba(15,23,42,.07);
      background: rgba(255,255,255,.92);
      box-shadow: var(--dkp-shadow-overlay);
      color: var(--dkp-navy);
      font-size: 12px;
      line-height: 1;
      font-weight: 700;
      cursor: pointer;
      transition: transform 0.16s ease, background 0.16s ease;
    }

    .cruise-cards-deck .dkp-routeToggle svg {
      width: 15px;
      height: 15px;
      display: block;
      color: var(--dkp-accent);
      flex: 0 0 15px;
    }

    .cruise-cards-deck .dkp-routeToggle[aria-pressed="true"] {
      background: rgba(126,208,245,.20);
    }

    .cruise-cards-deck .dkp-routeToggle:hover {
      transform: translateY(-1px);
    }

    .cruise-cards-deck .dkp-body {
      display: flex;
      flex-direction: column;
      min-width: 0;
      min-height: 100%;
    }

    .cruise-cards-deck .dkp-main {
      display: flex;
      flex-direction: column;
      gap: 10px;
      padding: 16px 16px 0;
      min-width: 0;
      flex: 1 1 auto;
    }

    .cruise-cards-deck .dkp-kombiHotel {
      margin: 0;
      color: rgba(11,43,74,.72);
      font-size: 12px;
      line-height: 1.35;
      font-weight: 700;
    }

    .cruise-cards-deck .dkp-title {
      margin: 0;
      color: var(--dkp-navy);
      font-size: 20px;
      line-height: 1.25;
      font-weight: 700;
      text-wrap: balance;
      overflow-wrap: anywhere;
    }

    .cruise-cards-deck .dkp-badges {
      order: 2;
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 0;
      align-content: flex-start;
    }

    .cruise-cards-deck .dkp-badge {
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      padding: 0 10px;
      border-radius: 999px;
      background: rgba(11,43,74,.025);
      border: 1px solid rgba(15,23,42,.08);
      color: rgba(11,43,74,.88);
      font-size: 11px;
      line-height: 1;
      font-weight: 700;
      white-space: nowrap;
    }

    .cruise-cards-deck .dkp-meta {
      order: 3;
      display: flex;
      flex-wrap: wrap;
      gap: 10px 14px;
      color: var(--dkp-muted);
      font-size: 13px;
      line-height: 1.3;
    }

    .cruise-cards-deck .dkp-row {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-width: 0;
      max-width: 100%;
      color: var(--dkp-muted);
      font-size: 13px;
      line-height: 1.25;
    }

    .cruise-cards-deck .dkp-row:last-child {
      width: 100%;
      align-items: flex-start;
    }

    .cruise-cards-deck .dkp-row span {
      min-width: 0;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .cruise-cards-deck .dkp-row:last-child span {
      white-space: normal;
      overflow: visible;
      text-overflow: clip;
      line-height: 1.25;
    }

    .cruise-cards-deck .dkp-row b {
      color: var(--dkp-navy);
      font-weight: 700;
    }

    .cruise-cards-deck .dkp-ico {
      width: 17px;
      height: 17px;
      flex: 0 0 17px;
      color: var(--dkp-sky);
      opacity: 1;
    }

    .cruise-cards-deck .dkp-note {
      order: 4;
      margin: 0;
      padding-top: 12px;
      padding-bottom: 14px;
      border-top: 1px solid rgba(15,23,42,.08);
      color: var(--dkp-muted);
      font-size: 14px;
      line-height: 1.45;
    }

    .cruise-cards-deck .dkp-note strong {
      display: block;
      margin-bottom: 4px;
      color: var(--dkp-navy);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .05em;
      text-transform: uppercase;
    }

    .cruise-cards-deck .dkp-side {
      display: flex;
      flex-direction: column;
      gap: 12px;
      padding: 12px 16px 16px;
      border-top: 1px solid rgba(15,23,42,.10);
      background: #ffffff;
      min-width: 0;
      margin-top: auto;
    }

    .cruise-cards-deck .dkp-card.is-route-view .dkp-media-viewport {
      background: transparent;
    }

    .cruise-cards-deck .dkp-prices {
      display: flex;
      flex-wrap: nowrap;
      gap: 10px;
      overflow-x: auto;
      overflow-y: hidden;
      padding-bottom: 6px;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }

    .cruise-cards-deck .dkp-prices::-webkit-scrollbar {
      display: none;
    }

    .cruise-cards-deck .dkp-priceBox {
      flex: 0 0 116px;
      scroll-snap-align: start;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      gap: 4px;
      min-height: 66px;
      padding: 10px 12px;
      border-radius: 12px;
      border: 1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.96);
    }

    .cruise-cards-deck .dkp-priceBox .k {
      color: var(--dkp-muted);
      font-size: 11px;
      line-height: 1.2;
      font-weight: 700;
    }

    .cruise-cards-deck .dkp-priceBox .v {
      color: var(--dkp-navy);
      font-size: 14px;
      line-height: 1.18;
      font-weight: 700;
    }

    .cruise-cards-deck .dkp-priceBox-muted {
      background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(248,250,252,.72));
      border-color: rgba(91,100,114,.12);
    }

    .cruise-cards-deck .dkp-priceBox-muted .v {
      color: rgba(91,100,114,.82);
      font-size: 11px;
      font-weight: 700;
    }

    .cruise-cards-deck .dkp-priceBox-primary {
      border-color: rgba(126,208,245,.7);
      box-shadow: 0 10px 20px rgba(126,208,245,.18);
    }

    .cruise-cards-deck .dkp-ctaRow {
      margin-top: auto;
    }

    .cruise-cards-deck .dkp-open {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      width: 100%;
      min-height: 48px;
      padding: 0 18px;
      border-radius: 14px;
      border: 1px solid rgba(253,54,18,.35);
      background: var(--dkp-accent);
      color: #ffffff;
      text-decoration: none;
      font-size: 15px;
      line-height: 1;
      font-weight: 700;
      box-shadow: 0 10px 18px rgba(253,54,18,.20);
      transition: transform 0.16s ease, filter 0.16s ease;
    }

    .cruise-cards-deck .dkp-open svg {
      width: 16px;
      height: 16px;
      display: block;
      fill: currentColor;
      flex: 0 0 16px;
    }

    .cruise-cards-deck .dkp-open:hover {
      transform: translateY(-1px);
      filter: brightness(1.02);
    }

    .cruise-cards-empty {
      height: 100%;
      min-height: 240px;
      padding: 26px;
      border: 1px dashed rgba(16,46,70,0.16);
      border-radius: 20px;
      background: #ffffff;
      color: var(--site-muted);
      font-size: 15px;
      line-height: 1.65;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .cruise-cards-deck .dkp-card.is-skeleton {
      pointer-events: none;
    }

    .cruise-cards-deck .dkp-card.is-skeleton .dkp-media-viewport,
    .cruise-cards-deck .dkp-card.is-skeleton .dkp-logo,
    .cruise-cards-deck .dkp-card.is-skeleton .dkp-routeToggle,
    .cruise-cards-deck .dkp-card.is-skeleton .dkp-line,
    .cruise-cards-deck .dkp-card.is-skeleton .dkp-badge,
    .cruise-cards-deck .dkp-card.is-skeleton .dkp-priceBox,
    .cruise-cards-deck .dkp-card.is-skeleton .dkp-open {
      background: linear-gradient(90deg, rgba(226,234,240,0.82) 0%, rgba(245,248,250,1) 50%, rgba(226,234,240,0.82) 100%);
      background-size: 200% 100%;
      animation: cruiseCardShimmer 1.3s linear infinite;
      color: transparent;
      border-color: transparent;
      box-shadow: none;
    }

    .cruise-cards-deck .dkp-card.is-skeleton .dkp-logo,
    .cruise-cards-deck .dkp-card.is-skeleton .dkp-routeToggle {
      min-width: 74px;
      min-height: 34px;
    }

    .cruise-cards-deck .dkp-card.is-skeleton .dkp-badge {
      min-width: 92px;
    }

    .cruise-cards-deck .dkp-card.is-skeleton .dkp-note strong {
      color: transparent;
    }

    .cruise-cards-deck .dkp-line {
      display: block;
      width: 100%;
      height: 14px;
      border-radius: 999px;
    }

    .cruise-cards-deck .dkp-line-title {
      width: 92%;
      height: 24px;
    }

    .cruise-cards-deck .dkp-line-wide {
      width: 84%;
    }

    .cruise-cards-deck .dkp-line-short {
      width: 44%;
    }

    @keyframes cruiseCardShimmer {
      from {
        background-position: 200% 0;
      }
      to {
        background-position: -200% 0;
      }
    }

    .offer-facts {
      display: grid;
      gap: 8px;
      margin: 2px 0 0;
    }

    .offer-fact {
      display: flex;
      justify-content: space-between;
      gap: 14px;
      border-bottom: 1px solid #edf3f7;
      padding-bottom: 8px;
      font-size: 14px;
    }

    .offer-fact span:first-child {
      color: var(--site-muted);
      font-weight: 600;
    }

    .offer-fact span:last-child {
      text-align: right;
      font-weight: 700;
    }

    .offer-price {
      margin-top: auto;
      padding-top: 2px;
      color: var(--site-primary);
      font-size: 28px;
      line-height: 1;
      font-weight: 700;
    }

    .offer-price small {
      display: block;
      margin-top: 6px;
      color: var(--site-muted);
      font-size: 12px;
      line-height: 1.35;
      font-weight: 600;
    }

    .legal {
      color: #687789;
      font-size: 11px;
      line-height: 1.45;
      margin-bottom: 0;
    }

    .faq-list {
      display: grid;
      gap: 12px;
      margin-top: 24px;
    }

    .faq-item {
      border: 1px solid var(--line);
      border-radius: var(--card-radius);
      background: var(--site-surface);
      overflow: hidden;
    }

    .faq-question {
      position: relative;
      display: block;
      padding: 18px 54px 18px 18px;
      cursor: pointer;
      font-size: 18px;
      font-weight: 700;
      line-height: 1.35;
      list-style: none;
    }

    .faq-question::-webkit-details-marker {
      display: none;
    }

    .faq-question::after {
      content: "+";
      position: absolute;
      top: 50%;
      right: 18px;
      transform: translateY(-50%);
      color: var(--site-accent);
      font-size: 24px;
      line-height: 1;
      font-weight: 500;
    }

    .faq-item[open] .faq-question::after {
      content: "−";
    }

    .faq-answer {
      padding: 0 18px 18px;
    }

    .faq-answer p {
      margin-bottom: 0;
      color: var(--site-muted);
    }

    .content-html {
      color: var(--site-text);
    }

    .content-html img,
    .content-html iframe,
    .content-html video {
      max-width: 100%;
      border-radius: var(--image-radius);
    }

    .menu-landing {
      width: min(1120px, 100%);
      margin: 0 auto;
    }

    .menu-landing-intro {
      max-width: 760px;
      margin-bottom: 22px;
    }

    .menu-landing-kicker {
      margin: 0 0 8px;
      color: #fd3612;
      font-size: 13px;
      line-height: 1.2;
      font-weight: 600;
      text-transform: uppercase;
    }

    .menu-landing-title {
      margin: 0;
      color: #102e46;
      font-size: 34px;
      line-height: 1.12;
      font-weight: 700;
    }

    .menu-landing-copy {
      margin: 12px 0 0;
      color: #37566d;
      font-size: 16px;
      line-height: 1.6;
    }

    .menu-landing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 14px;
    }

    .menu-landing-card {
      display: block;
      padding: 18px;
      border: 1px solid rgba(220,229,236,0.92);
      border-radius: 8px;
      background: #fff;
      color: #102e46;
      text-decoration: none;
      box-shadow: 0 12px 26px rgba(16,46,70,0.08);
    }

    .menu-landing-card strong {
      display: block;
      font-size: 18px;
      line-height: 1.2;
      font-weight: 600;
    }

    .menu-landing-card span {
      display: block;
      margin-top: 8px;
      color: #37566d;
      font-size: 14px;
      line-height: 1.5;
    }

    .contact-section {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: clamp(30px, 4vw, 48px);
      align-items: stretch;
    }

    .contact-info {
      display: grid;
      align-content: start;
      gap: 22px;
    }

    .contact-info .eyebrow {
      margin-bottom: 0;
    }

    .contact-info-title {
      max-width: 18ch;
      margin: 0;
      color: var(--site-primary);
      font-size: clamp(40px, 4vw, 56px);
      line-height: 1.04;
      font-weight: var(--heading-weight);
      letter-spacing: -0.03em;
      text-wrap: balance;
    }

    .contact-info-body {
      max-width: 60ch;
      display: grid;
      gap: 14px;
      color: rgba(16,46,70,0.92);
      font-size: 17px;
      line-height: 1.7;
    }

    .contact-info-body p {
      margin-bottom: 0;
    }

    .page-section.service-profile-shell {
      background: transparent;
    }

    .service-profile-shell {
      border-top: 0;
    }

    .service-profile-section {
      display: grid;
      grid-template-columns: minmax(320px, 388px) minmax(0, 1fr);
      gap: 38px;
      align-items: stretch;
    }

    .service-profile-rail {
      display: flex;
      height: 100%;
      padding: 38px 28px 40px;
      border: 0;
      border-radius: var(--card-radius);
      background: #dcf6fd;
      box-shadow: none;
    }

    .service-profile-points {
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 28px;
      min-height: 100%;
      width: 100%;
    }

    .service-profile-points::before {
      content: "";
      position: absolute;
      top: 17px;
      bottom: 17px;
      left: 9px;
      border-left: 1px dotted #7ed0f5;
    }

    .service-profile-point {
      position: relative;
      display: grid;
      grid-template-columns: 18px minmax(0, 1fr);
      gap: 16px;
      align-items: start;
    }

    .service-profile-point-dot {
      width: 18px;
      height: 18px;
      border-radius: 999px;
      background: #7ed0f5;
      box-shadow: 0 0 0 6px #dcf6fd;
      margin-top: 2px;
      z-index: 1;
    }

    .service-profile-point-copy h3,
    .service-profile-point-copy p {
      margin-top: 0;
    }

    .service-profile-point-copy h3 {
      margin-bottom: 8px;
      color: var(--site-primary);
      font-size: 19px;
      line-height: 1.3;
      font-weight: 700;
    }

    .service-profile-point-copy p {
      margin-bottom: 0;
      color: rgba(16,46,70,0.9);
      font-size: 15px;
      line-height: 1.65;
    }

    .service-profile-content {
      min-width: 0;
      max-width: 840px;
      padding-top: 6px;
      color: var(--site-primary);
    }

    .service-profile-kicker {
      display: inline-flex;
      align-items: center;
      min-height: 40px;
      padding: 0 16px;
      margin-bottom: 14px;
      border: 0;
      border-radius: var(--button-radius);
      background: #7ed0f5;
      color: var(--site-primary);
      font-size: 14px;
      line-height: 1;
      font-weight: 600;
    }

    .service-profile-title {
      max-width: none;
      white-space: nowrap;
      margin: 0 0 14px;
      color: var(--site-primary);
      font-size: clamp(34px, 3.6vw, 46px);
      line-height: 1.05;
      font-weight: var(--heading-weight);
    }

    .service-profile-body {
      max-width: 760px;
      display: grid;
      gap: 14px;
      color: rgba(16,46,70,0.94);
      font-size: 17px;
      line-height: 1.66;
    }

    .service-profile-body p {
      margin-bottom: 0;
    }

    .service-profile-lead {
      color: var(--site-primary);
      font-size: 17px;
      line-height: 1.56;
      font-weight: 500;
    }

    .service-profile-body a {
      color: #3866d6;
      font-weight: 600;
      text-decoration-thickness: 2px;
      text-underline-offset: 5px;
    }

    .service-profile-signature {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-top: 22px;
    }

    .service-profile-signature img {
      display: block;
      width: 100px;
      height: 100px;
      border-radius: 50%;
      object-fit: cover;
      object-position: center;
      flex-shrink: 0;
      border: 2px solid rgba(255,255,255,0.92);
      box-shadow: none;
      background: #dcf6fd;
    }

    .service-profile-signature-copy p {
      margin: 0;
      color: var(--site-primary);
    }

    .service-profile-signature-title {
      margin-bottom: 8px;
      font-size: 17px;
      line-height: 1.35;
      font-weight: 600;
    }

    .service-profile-signature-label,
    .service-profile-signature-names {
      font-size: 17px;
      line-height: 1.5;
    }

    .service-profile-signature-names {
      margin-top: 2px;
    }

    .lead-form {
      background: var(--site-surface);
      border: 1px solid var(--line);
      border-radius: var(--card-radius);
      padding: 22px;
      box-shadow: var(--shadow);
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .field {
      min-width: 0;
    }

    .field.full {
      grid-column: 1 / -1;
    }

    label {
      display: block;
      margin-bottom: 6px;
      color: var(--site-muted);
      font-size: 12px;
      font-weight: 700;
    }

    input,
    select,
    textarea {
      width: 100%;
      border: 1px solid var(--line);
      border-radius: var(--button-radius);
      background: #fbfdfe;
      color: var(--site-text);
      padding: 11px 12px;
      font-size: 15px;
      outline: none;
      transition: 0.18s;
    }

    textarea {
      min-height: 128px;
      resize: vertical;
      line-height: 1.45;
    }

    .lead-form textarea {
      min-height: 104px;
    }

    input:focus,
    select:focus,
    textarea:focus {
      background: #fff;
      border-color: var(--site-primary);
      box-shadow: 0 0 0 3px rgba(66,183,200,0.16);
    }

    .honeypot {
      position: absolute;
      left: -9999px;
      width: 1px;
      height: 1px;
      opacity: 0;
      pointer-events: none;
    }

    .form-checkbox {
      display: grid;
      grid-template-columns: 18px minmax(0, 1fr);
      gap: 10px;
      align-items: start;
      margin: 14px 0 0;
      color: var(--site-muted);
      font-size: 12px;
      line-height: 1.45;
      font-weight: 600;
    }

    .form-checkbox input {
      width: 18px;
      height: 18px;
      margin: 1px 0 0;
      padding: 0;
      accent-color: var(--site-accent);
    }

    .form-checkbox a {
      color: var(--site-primary);
      font-weight: 700;
      text-underline-offset: 2px;
    }

    .form-note {
      color: #687789;
      font-size: 12px;
      line-height: 1.45;
      margin: 12px 0 0;
    }

    .form-status {
      min-height: 22px;
      margin: 12px 0 0;
      font-size: 14px;
      font-weight: 700;
    }

    .form-status.ok {
      color: var(--leaf);
    }

    .form-status.error {
      color: #b91c1c;
    }

    .site-loading-shell {
      display: flex;
      min-height: clamp(520px, 68svh, 760px);
      padding-top: 30px;
      padding-bottom: 54px;
      align-items: stretch;
    }

    .site-loading-panel {
      width: min(var(--max), 100%);
      margin: 0 auto;
      padding: 28px;
      border: 1px solid rgba(220,229,236,0.92);
      border-radius: var(--card-radius);
      background:
        linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(247,251,253,0.98) 100%);
      box-shadow: 0 24px 56px rgba(16,46,70,0.08);
    }

    .site-loading-status {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 24px;
    }

    .site-loading-spinner {
      width: 44px;
      height: 44px;
      flex: 0 0 44px;
      border: 3px solid rgba(16,46,70,0.12);
      border-top-color: var(--site-accent);
      border-radius: 50%;
      animation: site-loading-spin 0.9s linear infinite;
    }

    .site-loading-copy {
      min-width: 0;
    }

    .site-loading-label {
      margin-bottom: 4px;
      color: var(--site-muted);
      font-size: 12px;
      line-height: 1.2;
      font-weight: 600;
      text-transform: uppercase;
    }

    .site-loading-title {
      margin: 0 0 6px;
      color: var(--site-primary);
      font-size: 28px;
      line-height: 1.08;
      font-weight: 700;
    }

    .site-loading-text {
      max-width: 58ch;
      margin: 0;
      color: var(--site-muted);
      font-size: 15px;
      line-height: 1.58;
      font-weight: 500;
    }

    .site-loading-preview {
      display: grid;
      gap: 20px;
    }

    .site-loading-hero-skeleton {
      display: grid;
      gap: 10px;
      padding: 22px;
      border: 1px solid rgba(220,229,236,0.82);
      border-radius: var(--card-radius);
      background: rgba(255,255,255,0.84);
    }

    .site-loading-card-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .site-loading-preview-side {
      display: grid;
      gap: 18px;
    }

    .site-loading-card-skeleton {
      display: grid;
      gap: 12px;
      padding: 16px;
      border: 1px solid rgba(220,229,236,0.82);
      border-radius: var(--card-radius);
      background: rgba(255,255,255,0.9);
    }

    .site-loading-block {
      position: relative;
      display: block;
      overflow: hidden;
      border-radius: 999px;
      background: #e5edf2;
    }

    .site-loading-block::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(229,237,242,0) 0%, rgba(255,255,255,0.82) 50%, rgba(229,237,242,0) 100%);
      transform: translateX(-100%);
      animation: site-loading-shimmer 1.35s ease-in-out infinite;
    }

    .site-loading-block-chip {
      width: 118px;
      height: 16px;
    }

    .site-loading-block-heading {
      height: 20px;
      border-radius: 10px;
    }

    .site-loading-block-heading-wide {
      width: min(460px, 72%);
    }

    .site-loading-block-heading-medium {
      width: min(360px, 56%);
    }

    .site-loading-block-title {
      width: 58%;
      height: 18px;
      border-radius: 10px;
    }

    .site-loading-block-line {
      height: 12px;
      border-radius: 999px;
    }

    .site-loading-block-line-wide {
      width: 100%;
    }

    .site-loading-block-line-medium {
      width: 68%;
    }

    .site-loading-block-line-short {
      width: 48%;
    }

    .site-loading-block-media {
      width: 100%;
      aspect-ratio: 16 / 10;
      border-radius: var(--image-radius);
    }

    .site-loading-block-button {
      width: 52%;
      height: 42px;
      border-radius: var(--button-radius);
    }

    .site-loading-block-search {
      width: 100%;
      height: 54px;
      border-radius: 12px;
    }

    .site-loading-block-stage {
      width: 100%;
      aspect-ratio: 16 / 9;
      border-radius: var(--image-radius);
    }

    .site-loading-shell[data-loading-variant^="ibe-"] {
      min-height: auto;
      padding-top: 18px;
      padding-bottom: 22px;
    }

    .site-loading-shell[data-loading-variant^="ibe-"] .site-loading-panel {
      padding: 0;
      border: 0;
      background: transparent;
      box-shadow: none;
    }

    .site-loading-shell[data-loading-variant^="ibe-"] .site-loading-status,
    .site-loading-shell[data-loading-variant^="ibe-"] .site-loading-help {
      display: none;
    }

    .site-ibe-loading {
      display: grid;
      gap: 14px;
    }

    .site-ibe-card {
      display: grid;
      gap: 14px;
      padding: 18px;
      border: 1px solid rgba(15,23,42,0.08);
      border-radius: 22px;
      background: rgba(252,253,255,0.94);
      box-shadow: 0 6px 18px rgba(11,43,74,0.05);
    }

    .site-ibe-ghostStack {
      display: grid;
      gap: 10px;
      align-content: start;
    }

    .site-ibe-line {
      display: block;
      width: 100%;
      height: 14px;
      border-radius: 999px;
    }

    .site-ibe-line--tiny {
      width: 24%;
      height: 10px;
    }

    .site-ibe-line--short {
      width: 42%;
    }

    .site-ibe-line--mid {
      width: 68%;
    }

    .site-ibe-line--title,
    .site-ibe-line--detailTitle {
      height: 18px;
    }

    .site-ibe-line--filterHeading {
      width: 72%;
      height: 18px;
    }

    .site-ibe-line--title {
      width: 54%;
    }

    .site-ibe-line--detailTitle {
      width: 58%;
    }

    .site-ibe-line--price {
      width: 58%;
      height: 20px;
      justify-self: end;
    }

    .site-ibe-loading--search {
      grid-template-columns: 312px minmax(0, 1fr);
      align-items: start;
    }

    .site-ibe-searchAside {
      align-content: start;
    }

    .site-ibe-filterGhost {
      display: grid;
      gap: 12px;
      align-content: start;
      min-height: 220px;
      padding: 14px;
      border: 1px solid rgba(15,23,42,0.06);
      border-radius: 18px;
      background: rgba(247,250,253,0.98);
    }

    .site-ibe-filterGhostList {
      display: grid;
      gap: 10px;
    }

    .site-ibe-filterPanelGhost {
      display: grid;
      gap: 10px;
      padding-top: 4px;
    }

    .site-ibe-filterField {
      height: 46px;
      border-radius: 14px;
    }

    .site-ibe-filterField--wide {
      width: 86%;
    }

    .site-ibe-filterField--short {
      width: 74%;
    }

    .site-ibe-searchMain {
      min-height: 520px;
      align-content: start;
    }

    .site-ibe-searchToolbar {
      display: grid;
      grid-template-columns: 96px 148px 112px;
      gap: 10px;
      align-items: center;
    }

    .site-ibe-resultList {
      display: grid;
      gap: 12px;
    }

    .site-ibe-resultGhost {
      display: grid;
      gap: 12px;
      padding: 16px;
      border: 1px solid rgba(15,23,42,0.06);
      border-radius: 22px;
      background: rgba(247,250,253,0.98);
    }

    .site-ibe-resultGhostRow {
      display: grid;
      grid-template-columns: minmax(0, 1.6fr) minmax(220px, 0.9fr);
      gap: 12px;
    }

    .site-ibe-resultMedia {
      min-height: 198px;
      border-radius: 18px;
    }

    .site-ibe-resultGhostBody {
      display: grid;
      gap: 10px;
      align-content: start;
    }

    .site-ibe-priceGhost {
      display: grid;
      gap: 10px;
      align-content: start;
      justify-items: end;
    }

    .site-ibe-loading--detail {
      gap: 16px;
    }

    .site-ibe-detailHero {
      display: grid;
      grid-template-columns: minmax(0, 1.9fr) minmax(320px, 0.9fr);
      gap: 16px;
    }

    .site-ibe-detailStage {
      align-content: start;
    }

    .site-ibe-detailMedia {
      min-height: 500px;
      border-radius: 24px;
    }

    .site-ibe-detailAside {
      align-content: start;
    }

    .site-ibe-detailPriceGrid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .site-ibe-detailPriceBox {
      display: grid;
      gap: 10px;
      padding: 14px;
      border: 1px solid rgba(15,23,42,0.06);
      border-radius: 16px;
      background: rgba(247,250,253,0.98);
    }

    .site-ibe-detailFooter {
      gap: 12px;
    }

    .site-loading-help[hidden] {
      display: none !important;
    }

    .site-loading-help {
      margin-top: 20px;
      padding-top: 18px;
      border-top: 1px solid rgba(220,229,236,0.82);
    }

    .site-loading-help-text {
      margin: 0 0 12px;
      color: var(--site-primary);
      font-size: 14px;
      line-height: 1.5;
      font-weight: 600;
    }

    .site-loading-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .site-loading-action {
      min-width: 148px;
    }

    .site-loading-shell[data-loading-variant="landgang"] .site-loading-card-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-loading-shell[data-loading-variant="default"] .site-loading-card-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-loading-shell[data-loading-variant="landgang"] .site-loading-hero-skeleton {
      gap: 12px;
    }

    .site-loading-shell[data-loading-variant="landgang-article"] .site-loading-preview {
      grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.52fr);
      align-items: start;
    }

    .site-loading-shell[data-loading-variant="landgang-article"] .site-loading-hero-skeleton {
      min-height: 360px;
      align-content: start;
    }

    .site-loading-shell[data-loading-state="slow"] .site-loading-spinner {
      border-top-color: #f2b233;
    }

    .site-loading-shell[data-loading-state="fallback"] .site-loading-spinner {
      border-top-color: var(--site-primary);
    }

    .empty-offers {
      border: 1px dashed var(--line);
      border-radius: var(--card-radius);
      background: var(--site-surface);
      padding: 28px;
      color: var(--site-muted);
      text-align: center;
      font-weight: 600;
    }

    .not-found {
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(149,183,204,0.26);
      border-radius: 24px;
      background: #ffffff;
      padding: clamp(28px, 4vw, 52px);
      color: var(--site-muted);
      text-align: center;
      font-weight: 600;
      box-shadow: 0 18px 44px rgba(16,46,70,0.06);
    }

    .not-found > * {
      position: relative;
      z-index: 1;
    }

    .not-found h1 {
      margin: 0;
      color: var(--site-primary);
      font-size: clamp(34px, 4.8vw, 56px);
      line-height: 1.04;
      letter-spacing: -0.03em;
    }

    .not-found p {
      margin: 14px auto 0;
      max-width: 52ch;
      color: rgba(16,46,70,0.78);
      font-size: 18px;
      line-height: 1.6;
      font-weight: 500;
    }

    .not-found .btn-primary,
    .not-found .btn-secondary {
      margin-top: 18px;
    }

    .page-section-not-found {
      padding-top: 38px;
      padding-bottom: 72px;
    }

    .not-found--voyage {
      text-align: left;
      border-radius: 32px;
      border-color: rgba(126,208,245,0.26);
      background:
        radial-gradient(circle at top left, rgba(220,246,253,0.78), rgba(220,246,253,0) 34%),
        linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,251,255,0.96));
      box-shadow: 0 24px 56px rgba(16,46,70,0.08);
    }

    .not-found--voyage::before,
    .not-found--voyage::after {
      content: "";
      position: absolute;
      border-radius: 999px;
      z-index: 0;
    }

    .not-found--voyage::before {
      width: 220px;
      height: 220px;
      top: -100px;
      right: -70px;
      background: rgba(126,208,245,0.14);
    }

    .not-found--voyage::after {
      width: 170px;
      height: 170px;
      left: -70px;
      bottom: -80px;
      background: rgba(242,178,51,0.08);
    }

    .not-found-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
      gap: clamp(28px, 4vw, 56px);
      align-items: start;
    }

    .not-found-copy {
      display: grid;
      gap: 20px;
      max-width: 700px;
    }

    .not-found-kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      width: max-content;
      max-width: 100%;
      min-height: 40px;
      padding: 0 16px;
      border-radius: 999px;
      border: 1px solid rgba(16,46,70,0.08);
      background: rgba(255,255,255,0.82);
      color: var(--site-primary);
      font-size: 13px;
      line-height: 1;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      box-shadow: 0 12px 24px rgba(16,46,70,0.06);
    }

    .not-found--voyage h1 {
      max-width: 8ch;
      font-size: clamp(48px, 5.4vw, 76px);
      line-height: 0.95;
    }

    .not-found--voyage p {
      margin: 0;
      max-width: 34ch;
      font-size: clamp(17px, 1.8vw, 19px);
      line-height: 1.64;
    }

    .not-found-intro {
      max-width: 32ch !important;
      color: rgba(16,46,70,0.82) !important;
    }

    .not-found-panel {
      display: grid;
      gap: 12px;
      max-width: 560px;
      padding: 22px 24px;
      border: 1px solid rgba(16,46,70,0.08);
      border-radius: 22px;
      background: rgba(255,255,255,0.78);
      box-shadow: 0 14px 30px rgba(16,46,70,0.05);
    }

    .not-found-lead {
      max-width: none !important;
      color: var(--site-primary) !important;
      font-weight: 700 !important;
    }

    .not-found-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      padding-top: 4px;
    }

    .not-found-actions .btn-primary,
    .not-found-actions .btn-secondary {
      margin-top: 0;
      min-width: 210px;
      min-height: 48px;
      padding-inline: 20px;
      border-radius: 14px;
    }

    .not-found-direct {
      display: grid;
      gap: 14px;
      max-width: 640px;
      padding: 22px 24px;
      border: 1px solid rgba(16,46,70,0.08);
      border-radius: 22px;
      background: rgba(255,255,255,0.9);
    }

    .not-found-section-label {
      color: rgba(16,46,70,0.56);
      font-size: 12px;
      line-height: 1;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .not-found-direct p {
      max-width: none;
    }

    .not-found-contact-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 12px;
    }

    .not-found-contact-link {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      gap: 8px;
      min-height: 0;
      padding: 16px 18px;
      border: 1px solid rgba(16,46,70,0.10);
      border-radius: 18px;
      background: rgba(255,255,255,0.84);
      color: var(--site-primary);
      text-decoration: none;
      box-shadow: none;
      transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
    }

    .not-found-contact-link:hover {
      transform: translateY(-1px);
      border-color: rgba(66,183,200,0.42);
      box-shadow: 0 14px 24px rgba(16,46,70,0.08);
    }

    .not-found-contact-link span {
      color: rgba(16,46,70,0.56);
      font-size: 12px;
      line-height: 1.1;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .not-found-contact-link strong {
      font-size: 15px;
      line-height: 1.25;
      font-weight: 700;
      overflow-wrap: anywhere;
    }

    .not-found-visual {
      min-height: auto;
      padding-top: 20px;
    }

    .not-found-visual-card {
      width: min(100%, 380px);
      display: grid;
      gap: 16px;
      padding: 30px 28px;
      border-radius: 28px;
      border: 1px solid rgba(16,46,70,0.08);
      background: linear-gradient(180deg, rgba(255,255,255,0.97), rgba(245,250,253,0.95));
      box-shadow: 0 22px 42px rgba(16,46,70,0.10);
      margin-left: auto;
    }

    .not-found-code {
      color: var(--site-primary);
      font-size: clamp(68px, 7vw, 112px);
      line-height: 0.9;
      letter-spacing: -0.06em;
      font-weight: 700;
    }

    .not-found-visual-title {
      color: var(--site-primary);
      font-size: 24px;
      line-height: 1.2;
      font-weight: 700;
    }

    .not-found-visual-text {
      margin: 0;
      color: rgba(16,46,70,0.72);
      font-size: 16px;
      line-height: 1.6;
      font-weight: 500;
    }

    .not-found-route {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .not-found-route span {
      display: block;
      height: 10px;
      border-radius: 999px;
      background: linear-gradient(90deg, rgba(126,208,245,0.86), rgba(253,54,18,0.62));
    }

    .not-found-route span:nth-child(1) {
      width: 32%;
    }

    .not-found-route span:nth-child(2) {
      width: 50%;
    }

    .not-found-route span:nth-child(3) {
      width: 18%;
    }

    .not-found-visual-chip-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .not-found-visual-chip-row span {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 34px;
      padding: 0 12px;
      border-radius: 999px;
      background: rgba(16,46,70,0.06);
      color: var(--site-primary);
      font-size: 13px;
      line-height: 1;
      font-weight: 700;
    }

    @media (max-width: 992px) {
      .not-found-layout {
        grid-template-columns: 1fr;
      }

      .not-found--voyage h1 {
        max-width: 10ch;
      }

      .not-found-visual {
        padding-top: 0;
      }

      .not-found-visual-card {
        margin-left: 0;
      }

      .not-found-intro,
      .not-found-panel,
      .not-found-direct,
      .not-found--voyage p {
        max-width: none;
      }
    }

    @media (max-width: 720px) {
      .page-section-not-found {
        padding-top: 20px;
        padding-bottom: 42px;
      }

      .not-found {
        border-radius: 24px;
        padding: 24px 18px;
      }

      .not-found h1 {
        font-size: clamp(38px, 12vw, 54px);
      }

      .not-found p {
        font-size: 16px;
      }

      .not-found-kicker {
        width: auto;
        min-height: 36px;
        padding-inline: 14px;
        font-size: 12px;
      }

      .not-found-actions {
        display: grid;
      }

      .not-found-actions .btn-primary,
      .not-found-actions .btn-secondary,
      .not-found-contact-link {
        width: 100%;
      }

      .not-found-panel,
      .not-found-direct {
        padding: 18px;
        border-radius: 20px;
      }

      .not-found-visual-card {
        width: 100%;
        padding: 24px 20px;
      }

      .not-found-code {
        font-size: 74px;
      }

      .not-found-contact-list {
        grid-template-columns: 1fr;
      }
    }

    @keyframes site-loading-spin {
      to {
        transform: rotate(360deg);
      }
    }

    @keyframes site-loading-shimmer {
      to {
        transform: translateX(100%);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .site-loading-spinner {
        animation: none;
      }

      .site-loading-block::after {
        animation: none;
      }
    }

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

      .site-loading-shell[data-loading-variant="landgang-article"] .site-loading-preview {
        grid-template-columns: 1fr;
      }

      .site-loading-shell[data-loading-variant="ibe-search"] .site-ibe-loading--search,
      .site-loading-shell[data-loading-variant="ibe-detail"] .site-ibe-detailHero {
        grid-template-columns: 1fr;
      }

      .site-loading-shell[data-loading-variant="ibe-search"] .site-ibe-searchAside {
        grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
      }

      .site-loading-shell[data-loading-variant="ibe-search"] .site-ibe-searchMain {
        min-height: 460px;
      }

      .site-loading-shell[data-loading-variant="ibe-search"] .site-ibe-searchToolbar {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .site-loading-shell[data-loading-variant="ibe-search"] .site-ibe-resultGhostRow {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    @media (max-width: 992px) {
      .teaser-cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .title-logo-wrap {
        width: min(100%, calc(100vw - 36px));
        gap: 20px;
      }

      .title-logo-section.variant-logo .title-logo-wrap {
        grid-template-columns: minmax(0, 1fr);
      }

      .title-logo-logo {
        width: min(260px, 100%);
        margin: 0 auto;
      }

      .title-logo-inline-copy {
        text-align: left;
        font-size: 17px;
      }

      .title-logo-title {
        font-size: 34px;
      }

      .title-logo-section.variant-editorial .title-logo-title {
        font-size: 26px;
      }

      .title-logo-text {
        font-size: 16px;
      }

      .page-section.topic-chips-shell {
        padding-top: 16px !important;
        padding-bottom: 16px !important;
      }

      .page-section.topic-chips-shell.has-intro {
        padding-top: 18px !important;
        padding-bottom: 16px !important;
      }

      .topic-chips-track {
        flex: 1 1 auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 8px;
        overflow-x: auto;
        padding: 0 0 4px;
        -webkit-overflow-scrolling: touch;
      }

      .topic-chip {
        min-height: 38px;
        padding: 0 16px;
      }

      .topic-chips-media-row {
        padding-bottom: 8px;
      }

      .topic-chips-media-track {
        gap: 12px;
      }

      .topic-media-tile {
        flex-basis: clamp(144px, 54vw, 168px);
      }

      .link-gallery-section {
        --link-gallery-card-height: 360px;
        --link-gallery-featured-card-height: 360px;
        --link-gallery-side-padding: 20px;
        width: 100%;
        margin-inline: 0;
      }

      .link-gallery-wrap {
        display: block;
        width: 100%;
        padding-right: 0;
      }

      .link-gallery-intro {
        width: 100%;
        margin-bottom: 14px;
        justify-items: start;
        text-align: left;
      }

      .link-gallery-intro h2 {
        font-size: 30px;
        font-weight: 700;
        text-align: left;
      }

      .link-gallery-track {
        display: flex;
        width: 100%;
        gap: var(--link-gallery-gap);
        overflow-x: auto;
        padding: 10px 0 10px;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
      }

      .link-gallery-track::-webkit-scrollbar {
        display: none;
      }

      .link-gallery-track::after {
        content: none;
      }

      .link-gallery-card,
      .link-gallery-card.is-full,
      .link-gallery-card.is-tall,
      .link-gallery-card.is-regular {
        flex: 0 0 260px;
        height: var(--link-gallery-card-height);
        aspect-ratio: auto;
        grid-column: auto;
        scroll-snap-align: start;
      }

      .link-gallery-cta {
        display: block;
        padding-top: 16px;
      }

      .link-gallery-cta .link-gallery-btn {
        width: 100%;
        justify-content: space-between;
        margin-top: 0;
      }
    }

    @media (max-width: 640px) {
      .site-loading-shell {
        min-height: clamp(420px, 60svh, 560px);
        padding-top: 18px;
        padding-bottom: 38px;
      }

      .site-loading-panel {
        padding: 18px;
      }

      .site-loading-status {
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 18px;
      }

      .site-loading-spinner {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
      }

      .site-loading-title {
        font-size: 22px;
      }

      .site-loading-text {
        font-size: 14px;
      }

      .site-loading-hero-skeleton {
        padding: 16px;
      }

      .site-loading-card-grid,
      .site-loading-shell[data-loading-variant="landgang"] .site-loading-card-grid,
      .site-loading-shell[data-loading-variant="default"] .site-loading-card-grid {
        grid-template-columns: 1fr;
        gap: 14px;
      }

      .site-loading-actions {
        display: grid;
      }

      .site-loading-action {
        width: 100%;
        min-width: 0;
      }

      .site-loading-shell[data-loading-variant^="ibe-"] {
        padding-top: 14px;
        padding-bottom: 18px;
      }

      .site-ibe-card {
        padding: 16px;
        border-radius: 20px;
      }

      .site-loading-shell[data-loading-variant="ibe-search"] .site-ibe-searchAside,
      .site-loading-shell[data-loading-variant="ibe-detail"] .site-ibe-detailPriceGrid {
        grid-template-columns: 1fr;
      }

      .site-loading-shell[data-loading-variant="ibe-search"] .site-ibe-searchToolbar {
        grid-template-columns: 1fr 1fr;
      }

      .site-ibe-resultGhost,
      .site-ibe-detailPriceBox {
        padding: 16px;
      }

      .site-ibe-resultMedia {
        min-height: 164px;
      }

      .site-ibe-detailMedia {
        min-height: 320px;
      }
    }

    footer {
      background: var(--site-primary);
      color: rgba(255,255,255,0.8);
      padding: 42px 22px 30px;
    }

    .footer-inner {
      max-width: var(--max);
      margin: 0 auto;
      display: grid;
      gap: 24px;
    }

    .footer-main {
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(240px, 0.9fr) minmax(240px, 0.9fr);
      gap: 28px 30px;
      align-items: start;
    }

    .footer-column {
      min-width: 0;
    }

    .footer-logo-link {
      display: inline-block;
      text-decoration: none;
    }

    .footer-logo {
      display: block;
      width: min(320px, 100%);
      height: auto;
    }

    .footer-brand-fallback {
      display: block;
    }

    .footer-logo[hidden],
    .footer-brand-fallback[hidden] {
      display: none;
    }

    .footer-brand {
      display: block;
      color: #fff;
      margin-bottom: 4px;
      font-size: clamp(22px, 2.8vw, 28px);
      line-height: 1.05;
      font-weight: 700;
    }

    .footer-tagline {
      display: block;
      color: rgba(255,255,255,0.72);
      font-size: 14px;
      line-height: 1.35;
    }

    .footer-intro {
      margin: 16px 0 0;
      max-width: 42ch;
      color: rgba(255,255,255,0.8);
      font-size: 15px;
      line-height: 1.56;
    }

    .footer-quick-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 18px;
    }

    .footer-contact-pill {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-height: 42px;
      padding: 0 14px;
      border-radius: 999px;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.14);
      color: #fff;
      text-decoration: none;
      font-size: 14px;
      line-height: 1;
      font-weight: 600;
      transition: background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
    }

    .footer-contact-pill.is-primary {
      background: rgba(255,255,255,0.14);
      border-color: rgba(255,255,255,0.22);
    }

    .footer-contact-pill:hover {
      background: rgba(255,255,255,0.16);
      border-color: rgba(255,255,255,0.26);
      transform: translateY(-1px);
    }

    .footer-contact-pill-icon {
      width: 18px;
      height: 18px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .footer-contact-pill-icon svg {
      width: 18px;
      height: 18px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .footer-contact-pill.is-whatsapp .footer-contact-pill-icon svg {
      fill: currentColor;
      stroke: none;
    }

    .footer-contact-pill-label {
      white-space: nowrap;
    }

    .footer-heading {
      margin: 4px 0 14px;
      color: #fff;
      font-size: 19px;
      line-height: 1.2;
      font-weight: 700;
    }

    .footer-address,
    .footer-contact-list,
    .footer-service-links {
      display: grid;
      gap: 10px;
    }

    .footer-address {
      margin-bottom: 14px;
      color: rgba(255,255,255,0.8);
      font-size: 15px;
      line-height: 1.45;
    }

    .footer-address span {
      display: block;
    }

    .footer-contact-list a,
    .footer-service-links a,
    .footer-links a {
      color: rgba(255,255,255,0.88);
      text-decoration: none;
      transition: color 0.18s ease, opacity 0.18s ease;
    }

    .footer-contact-list a {
      font-size: 15px;
      line-height: 1.4;
    }

    .footer-service-links a {
      font-size: 15px;
      line-height: 1.38;
    }

    .footer-contact-list a:hover,
    .footer-service-links a:hover,
    .footer-links a:hover {
      color: #fff;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 16px 24px;
      padding-top: 16px;
      border-top: 1px solid rgba(255,255,255,0.12);
      flex-wrap: wrap;
    }

    .footer-links {
      display: flex;
      justify-content: flex-end;
      gap: 16px;
      flex-wrap: wrap;
    }

    .footer-links a {
      font-size: 14px;
      line-height: 1.35;
      font-weight: 600;
    }

    .footer-copy {
      color: rgba(255,255,255,0.62);
      font-size: 13px;
      line-height: 1.45;
    }

    @media (max-width: 940px) {
      .header-top {
        border-bottom: 0;
        background: rgba(255,255,255,0.98);
      }

      .header-top-inner {
        width: calc(100% - 24px);
        padding: 8px 0;
        gap: 8px;
      }

      .header-search-wrap,
      .header-cta {
        display: none;
      }

      .header-actions {
        gap: 6px;
      }

      .phone-chip {
        min-height: 40px;
        padding: 0;
        width: 40px;
        justify-content: center;
        border-radius: 12px;
        box-shadow: none;
      }

      .phone-chip-copy {
        display: none;
      }

      .phone-chip-icon {
        width: 100%;
        height: 100%;
        background: transparent;
      }

      .utility-icon-btn {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        box-shadow: none;
      }

      .header-nav-row {
        background: transparent;
        box-shadow: none;
      }

      .header-nav-inner {
        width: 0;
        min-height: 0;
        margin: 0;
      }

      .menu-btn {
        display: inline-flex;
      }

      .nav-links {
        position: fixed;
        inset: 0 auto 0 0;
        z-index: 220;
        width: min(100vw, 360px);
        height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        flex-wrap: nowrap;
        gap: 0;
        padding: calc(env(safe-area-inset-top, 0px) + 12px) 18px calc(env(safe-area-inset-bottom, 0px) + 16px);
        border-right: 1px solid var(--line);
        background: #fff;
        box-shadow: 0 18px 42px rgba(16,46,70,0.14);
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
        transform: translateX(-104%);
        transition: transform 0.22s ease;
        font-size: 14px;
      }

      body.nav-open .nav-links {
        transform: translateX(0);
      }

      .nav-overlay {
        position: fixed;
        inset: 0;
        z-index: 210;
        display: block;
        border: 0;
        background: rgba(16,46,70,0.18);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.22s ease;
      }

      body.nav-open .nav-overlay {
        opacity: 1;
        pointer-events: auto;
      }

      .mobile-nav-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 0 0 12px;
        margin-bottom: 4px;
        border-bottom: 1px solid var(--line);
        color: var(--site-primary);
        font-size: 13px;
        font-weight: 600;
      }

      .drawer-search {
        display: block;
        padding: 12px 0 14px;
        border-bottom: 1px solid rgba(220,229,236,0.82);
      }

      .mobile-site-search {
        min-height: 46px;
        border-radius: 12px;
        box-shadow: none;
      }

      .mobile-site-search input {
        font-size: 15px;
      }

      .nav-links > a,
      .nav-branch-head {
        min-height: 48px;
      }

      .nav-links > a {
        display: flex;
        align-items: center;
        padding: 12px 0;
        border-radius: 0;
        border-bottom: 1px solid rgba(220,229,236,0.82);
        font-size: 14px;
        font-weight: 600;
      }

      .nav-item-wrap {
        display: block;
        padding: 0;
        padding-bottom: 0;
        margin-bottom: 0;
        border-bottom: 1px solid rgba(220,229,236,0.82);
      }

      .nav-link.has-children {
        display: flex;
        align-items: center;
        min-height: 48px;
        min-width: 0;
        padding: 12px 0;
        flex: 1;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        touch-action: manipulation;
      }

      .nav-branch-head > a.nav-link-desktop.nav-link.has-children {
        display: none;
        pointer-events: none;
      }

      .nav-branch-head > button.nav-link-mobile.nav-link.has-children {
        display: flex;
        width: 100%;
        justify-content: space-between;
      }

      .nav-link.has-children::after {
        display: none;
      }

      .nav-branch-head {
        display: block;
      }

      .nav-branch-head > .nav-link-mobile::after {
        display: inline-block;
        margin-left: 12px;
        font-size: 12px;
      }

      .nav-item-wrap.expanded .nav-branch-head > .nav-link-mobile::after {
        transform: rotate(180deg);
      }

      .mobile-nav-toggle {
        display: none;
      }

      .mega-menu {
        position: static;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        box-shadow: none;
        border: 0;
        border-radius: 0;
        padding: 0;
        background: transparent;
        transition: max-height 0.22s ease, padding 0.22s ease;
      }

      .mega-menu::before {
        display: none;
      }

      .nav-item-wrap.expanded .mega-menu {
        max-height: 72vh;
        padding: 0 0 8px;
      }

      .nav-item-wrap:hover .mega-menu,
      .nav-item-wrap.desktop-open .mega-menu,
      .nav-item-wrap:focus-within .mega-menu {
        transform: none;
      }

      .mega-grid {
        grid-template-columns: 1fr;
        gap: 0;
      }

      .mega-card {
        grid-template-columns: 45px minmax(0, 1fr);
        gap: 10px;
        min-height: 0;
        padding: 8px 0 10px;
        border-radius: 0;
        border: 0;
        border-bottom: 1px solid rgba(220,229,236,0.82);
        align-items: start;
      }

      .mega-card img {
        display: block;
        width: 45px;
        height: 30px;
        margin-top: 1px;
        border-radius: 7px;
      }

      .mega-card:last-child {
        border-bottom: 0;
      }

      .mega-main {
        padding: 0;
      }

      .mega-copy strong {
        font-size: 13px;
        font-weight: 600;
        white-space: normal;
      }

      .mega-copy span {
        display: block;
        padding: 0;
        font-size: 11px;
        line-height: 1.35;
      }

      .mega-sub {
        display: flex;
        padding: 6px 0 0;
        gap: 4px;
      }

      .mega-sub a {
        padding: 5px 7px;
        font-size: 10px;
      }

      .mobile-parent-link {
        display: block;
        padding: 6px 0 0 55px;
      }

      .mobile-parent-link a {
        color: var(--site-primary);
        font-size: 13px;
        line-height: 1.35;
        font-weight: 600;
        text-decoration: none;
      }

      body.home-page .brand img {
        width: 124px;
      }

      body.home-page .menu-btn {
        border-color: rgba(220,229,236,0.92);
        background: #fff;
        color: var(--site-primary);
      }

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

      body.nav-open .header-actions > :not(.menu-btn) {
        opacity: 0;
        pointer-events: none;
      }

      .drawer-footer-actions {
        position: sticky;
        bottom: 0;
        display: flex;
        align-items: center;
        gap: 8px;
        margin-top: auto;
        padding: 12px 0 calc(env(safe-area-inset-bottom, 0px) + 2px);
        border-top: 1px solid rgba(220,229,236,0.82);
        background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, #ffffff 24%);
      }

      .drawer-footer-actions .drawer-phone-chip {
        flex: 1 1 auto;
        min-width: 0;
        width: auto;
        min-height: 44px;
        padding: 0 12px;
        justify-content: flex-start;
      }

      .drawer-footer-actions .phone-chip-icon {
        width: 30px;
        height: 30px;
        background: #f4f8fa;
      }

      .drawer-footer-actions .phone-chip-copy {
        display: grid;
      }

      .drawer-footer-actions .phone-chip-label {
        display: block;
      }

      .drawer-footer-actions .phone-chip strong {
        font-size: 13px;
      }

      .drawer-footer-actions .drawer-wishlist-btn {
        flex: 0 0 44px;
        width: 44px;
        height: 44px;
        box-shadow: none;
      }

      .hero-media {
        background-image:
          linear-gradient(180deg, rgba(16,46,70,0.24), rgba(16,46,70,0.56) 58%, #2f7690),
          var(--hero-image);
      }

      .page-section.site-hero {
        padding: 0;
      }

      .site-hero.home-hero {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
      }

      .hero-inner {
        width: 100%;
        min-height: var(--hero-mobile-height, 0px);
        padding: 28px 0 18px;
        gap: 8px;
      }

      .site-hero.home-hero .hero-inner {
        min-height: var(--hero-mobile-height, clamp(520px, calc(100svh - 106px), 620px));
        padding: 20px 0 20px;
        grid-template-columns: minmax(0, 1fr);
        grid-template-rows: minmax(0, 1fr) auto;
        gap: 12px;
      }

      .hero-intro,
      .site-hero.standard-hero .hero-intro {
        width: calc(100% - 24px);
        max-width: none;
        margin: 0 auto;
        padding: 0;
        text-align: center;
      }

      .site-hero.hero-variant-search .hero-intro {
        width: calc(100% - 24px);
        min-height: clamp(116px, 25vw, 152px);
        align-self: stretch;
        transform: none;
      }

      .eyebrow {
        margin-bottom: 10px;
      }

      .site-hero.hero-align-left .eyebrow {
        justify-content: flex-start;
      }

      .site-hero.hero-align-center .eyebrow {
        justify-content: center;
      }

      h1 {
        font-size: 26px;
        line-height: 1.08;
      }

      h2 {
        font-size: 32px;
      }

      .hero-copy {
        font-size: 15px;
      }

      .site-hero.home-hero h1 {
        max-width: 100%;
        margin: 0 auto 12px;
        font-size: clamp(31px, 8.2vw, 38px);
        line-height: 1.04;
        text-wrap: balance;
      }

      .site-hero.home-hero .hero-copy {
        max-width: 100%;
        margin: 0 auto;
        font-size: 15px;
        line-height: 1.52;
        text-wrap: balance;
      }

      .site-hero.hero-align-left .hero-intro {
        text-align: left;
      }

      .site-hero.hero-align-left h1,
      .site-hero.hero-align-left .hero-copy {
        margin-left: 0;
        margin-right: 0;
        text-align: left;
      }

      .site-hero.hero-align-center .hero-intro,
      .site-hero.hero-align-center h1,
      .site-hero.hero-align-center .hero-copy {
        text-align: center;
      }

      .hero-note,
      .site-hero.standard-hero .hero-note {
        display: none;
      }

      .hero-ibe {
        width: 100%;
        gap: 8px;
      }

      .site-hero.home-hero .hero-ibe {
        width: calc(100% - 24px);
        max-width: none;
        margin: 0 auto;
        justify-self: center;
        justify-items: stretch;
      }

      .site-hero.hero-align-left .hero-ibe {
        margin: 0;
      }

      .site-hero.hero-align-left .hero-ibe-tabs,
      .site-hero.hero-align-left .hero-ibe-contact {
        justify-self: start;
      }

      .site-hero.hero-align-left .hero-ibe-tabs {
        margin: 0 0 8px;
      }

      .site-hero.hero-align-center .hero-ibe-tabs {
        margin: 0 auto 8px;
      }

      .site-hero.hero-align-left .hero-ibe-contact {
        justify-content: flex-start;
        text-align: left;
      }

      .site-hero.hero-align-center .hero-ibe-contact {
        justify-content: center;
        text-align: center;
      }

      .hero-ibe-tabs {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4px;
        width: 100%;
        margin: 0 auto;
        justify-self: center;
        padding: 4px;
        border-radius: 14px;
        border: 1px solid rgba(214,223,231,0.72);
        background: rgba(255,255,255,0.76);
      }

      .hero-ibe-tabs.is-single {
        display: inline-flex;
        width: auto;
      }

      .hero-ibe-tab {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 40px;
        border-radius: 10px;
        background: rgba(255,255,255,0.44);
        color: rgba(16,46,70,0.82);
        padding: 0 14px;
        text-align: center;
      }

      .hero-ibe-tab.active {
        background: rgba(255,255,255,0.98);
      }

      .hero-ibe-desktop {
        display: none;
      }

      .hero-ibe-panel,
      .hero-ibe-panel.active {
        width: 100%;
      }

      .hero-ibe-mobile {
        display: grid;
        gap: 6px;
        padding: 0;
        width: 100%;
        margin: 0 auto;
        justify-items: stretch;
      }

      .hero-ibe-mobile .hero-ibe-field {
        width: 100%;
        min-width: 0;
        min-height: 0;
        padding: 0;
        border: 0;
        border-radius: 14px;
        overflow: hidden;
        background: rgba(255,255,255,0.97);
        box-shadow: 0 10px 22px rgba(16,46,70,0.1);
        justify-self: stretch;
      }

      .hero-ibe-mobile .hero-ibe-trigger {
        width: 100%;
        min-height: 52px;
        padding: 9px 34px 9px 14px;
        border-radius: inherit;
        background: rgba(255,255,255,0.97);
        box-shadow: none;
      }

      .hero-ibe-mobile .hero-ibe-field-label {
        color: #6a8394;
        font-size: 9px;
        line-height: 1.2;
        font-weight: 600;
        letter-spacing: 0.06em;
        text-transform: uppercase;
      }

      .hero-ibe-mobile .hero-ibe-field-value {
        color: var(--site-primary);
        width: 100%;
        min-width: 0;
        font-size: 14px;
        font-weight: 700;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      .hero-ibe-mobile .hero-ibe-submit {
        display: flex;
        width: 100%;
        justify-self: stretch;
        min-height: 46px;
        border-radius: 14px;
        box-shadow: 0 10px 20px rgba(253,54,18,0.24);
      }

      .package-hero-feedback {
        margin: 8px 2px 0;
      }

      .hero-ibe-modal-backdrop {
        background: rgba(10,32,48,0.3);
      }

      .hero-ibe-modal.is-screen .hero-ibe-modal-body {
        padding-bottom: calc(18px + env(safe-area-inset-bottom));
      }

      .hero-ibe-modal.is-screen .hero-ibe-modal-head-action {
        min-width: 86px;
      }

      .hero-ibe-modal.is-screen .hero-ibe-modal-search input {
        min-height: 46px;
        padding-left: 42px;
        background-position: 14px 50%;
        background-size: 15px 15px;
        font-size: 16px;
      }

      .hero-ibe-modal.is-screen .hero-ibe-modal-search-icon {
        display: none;
      }

      .hero-ibe-modal.is-screen .hero-ibe-choice {
        grid-template-columns: 56px minmax(0, 1fr) auto;
        gap: 12px;
        padding: 12px 12px;
      }

      .hero-ibe-modal.is-screen .hero-ibe-choice-mark {
        width: 56px;
        height: 36px;
      }

      .hero-ibe-modal.is-screen .hero-ibe-choice-label {
        font-size: 12.5px;
      }

      .hero-ibe-modal.is-screen .hero-ibe-choice-meta {
        font-size: 10.5px;
      }

      .hero-ibe-modal.is-screen .hero-ibe-people-grid {
        grid-template-columns: 1fr;
      }

      .hero-ibe-modal.is-screen .hero-ibe-people-row {
        gap: 12px;
        padding: 14px 14px;
      }

      .hero-ibe-modal.is-screen .hero-ibe-stepper {
        justify-content: space-between;
        width: 100%;
      }

      .hero-ibe-modal.is-screen .hero-ibe-stepper-btn {
        width: 40px;
        height: 40px;
      }

      .hero-ibe-modal.is-screen .hero-ibe-age-row {
        align-items: center;
        flex-direction: row;
      }

      .hero-ibe-modal.is-screen .hero-ibe-age-select {
        min-width: 124px;
        width: auto;
      }

      .hero-ibe-modal.is-screen .hero-ibe-calendar-weekdays,
      .hero-ibe-modal.is-screen .hero-ibe-calendar-grid {
        gap: 5px;
      }

      .hero-ibe-modal.is-screen .hero-ibe-day {
        min-height: 44px;
        border-radius: 12px;
        font-size: 14px;
      }

      .hero-ibe-modal.is-screen .hero-ibe-period-toolbar {
        grid-template-columns: 1fr;
      }

      .hero-ibe-modal.is-screen .hero-ibe-period-targets {
        gap: 10px;
      }

      .hero-ibe-modal.is-sheet .hero-ibe-modal-body {
        padding-bottom: calc(18px + env(safe-area-inset-bottom));
      }

      .hero-ibe-contact {
        flex-direction: column;
        align-items: center;
        gap: 4px;
        padding: 14px 2px 2px;
        width: calc(100% - 24px);
        margin: 0 auto;
        text-align: center;
        font-size: 12px;
      }

      .page-section {
        padding: 54px 16px;
      }

      [data-ibe-shell-host].ibe-shell-host--funnel {
        padding: 26px 16px 52px;
      }

      .service-profile-section {
        grid-template-columns: 1fr;
        gap: 22px;
        align-items: start;
      }

      .service-profile-rail {
        order: 1;
        display: block;
        height: auto;
        padding: 30px 22px 32px;
      }

      .service-profile-content {
        order: 2;
        padding-top: 0;
        max-width: none;
      }

      .service-profile-title {
        max-width: 11ch;
        white-space: normal;
      }

      .service-profile-body,
      .service-profile-lead {
        font-size: 16px;
      }

      .service-profile-signature {
        align-items: flex-start;
      }

      .text-layout,
      .image-text,
      .image-text.reverse,
      .columns-section,
      .offers-grid,
      .contact-section,
      .service-profile-section,
      .footer-inner {
        grid-template-columns: 1fr !important;
      }

      .footer-main {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .footer-bottom,
      .footer-links {
        justify-content: flex-start;
      }

      .menu-landing-title {
        font-size: 28px;
      }

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

    @media (max-width: 520px) {
      .teaser-cards-section {
        gap: 18px;
      }

      .teaser-cards-kicker {
        font-size: 13px;
      }

      .teaser-cards-section h2 {
        font-size: 24px;
      }

      .teaser-cards-grid {
        grid-template-columns: minmax(0, 1fr);
      }

      .teaser-cards-card-copy {
        padding: 14px;
      }

      .teaser-cards-card-badge {
        top: 12px;
        left: 12px;
        gap: 7px;
        min-height: 32px;
        max-width: calc(100% - 24px);
        padding: 0 11px;
        font-size: 12px;
      }

      .teaser-cards-card-badge::before {
        width: 12px;
        height: 12px;
      }

      .title-logo-wrap {
        width: min(100%, calc(100vw - 28px));
      }

      .title-logo-title {
        font-size: 24px;
        line-height: 1.25;
      }

      .title-logo-section.variant-editorial .title-logo-title {
        max-width: 640px;
        font-size: 22px;
        line-height: 1.3;
      }

      .title-logo-text,
      .title-logo-section.variant-editorial .title-logo-text {
        font-size: 14px;
      }

      .title-logo-section.variant-editorial .title-logo-desktop-title {
        display: none;
      }

      .title-logo-section.variant-editorial .title-logo-mobile-title {
        display: block;
      }

      .link-gallery-intro h2 {
        font-size: 34px;
        line-height: 1.08;
      }
    }

    @media (max-width: 620px) {
      .brand img {
        width: 134px;
      }

      .hero-actions,
      .form-grid {
        grid-template-columns: 1fr;
      }

      .contact-info-title {
        max-width: none;
        text-wrap: pretty;
      }

      .hero-actions .btn-primary,
      .hero-actions .btn-secondary,
      .lead-form .btn-primary {
        width: 100%;
      }

      .form-grid {
        display: grid;
      }

      .field.full {
        grid-column: auto;
      }

      .offer-price {
        font-size: 25px;
      }

      footer {
        padding: 34px 18px 26px;
      }

      .footer-inner {
        gap: 22px;
      }

      .footer-main {
        gap: 24px;
      }

      .footer-logo {
        width: min(260px, 100%);
      }

      .footer-brand {
        font-size: 22px;
      }

      .footer-tagline {
        font-size: 14px;
      }

      .footer-quick-actions {
        gap: 8px;
        margin-top: 16px;
      }

      .footer-contact-pill {
        min-height: 40px;
        padding: 0 12px;
        font-size: 13px;
      }

      .footer-intro,
      .footer-address,
      .footer-contact-list a,
      .footer-service-links a {
        font-size: 14px;
      }

      .footer-heading {
        margin-bottom: 14px;
        font-size: 18px;
      }

      .service-profile-shell {
        border-top-width: 0;
      }

      .service-profile-section {
        gap: 18px;
      }

      .service-profile-rail {
        padding: 26px 18px 28px;
        border-radius: 12px;
      }

      .service-profile-points {
        display: grid;
        gap: 22px;
        min-height: 0;
      }

      .service-profile-point {
        grid-template-columns: 20px minmax(0, 1fr);
        gap: 16px;
      }

      .service-profile-point-dot {
        width: 20px;
        height: 20px;
        box-shadow: 0 0 0 7px #dcf6fd;
      }

      .service-profile-points::before {
        top: 18px;
        bottom: 18px;
        left: 10px;
        border-left-width: 1px;
      }

      .service-profile-point-copy h3 {
        margin-bottom: 6px;
        font-size: 18px;
      }

      .service-profile-point-copy p {
        font-size: 15px;
        line-height: 1.62;
      }

      .service-profile-kicker {
        min-height: 36px;
        padding: 0 12px;
        margin-bottom: 12px;
        border-radius: 7px;
        font-size: 13px;
      }

      .service-profile-title {
        margin-bottom: 12px;
        max-width: 10ch;
        white-space: normal;
        font-size: 30px;
        line-height: 1.08;
      }

      .service-profile-body {
        gap: 12px;
        font-size: 15px;
        line-height: 1.62;
      }

      .service-profile-lead {
        font-size: 15px;
        line-height: 1.58;
      }

      .service-profile-signature {
        gap: 12px;
        margin-top: 18px;
      }

      .service-profile-signature img {
        width: 72px;
        height: 72px;
      }

      .service-profile-signature-title {
        margin-bottom: 6px;
        font-size: 17px;
      }

      .service-profile-signature-label,
      .service-profile-signature-names {
        font-size: 15px;
      }
    }

    @media (max-width: 980px) {
      .landgang-head {
        grid-template-columns: 1fr;
      }

      .landgang-head-left {
        max-width: none;
      }

      .landgang-head-right {
        min-height: 300px;
      }

      .landgang-title {
        font-size: 44px;
      }

      .landgang-subhead,
      .landgang-intro {
        max-width: none;
      }
    }

    @media (max-width: 900px) {
      .landgang-region-title {
        font-size: 24px;
      }

      .landgang-grid {
        display: flex;
        gap: 0;
        align-items: flex-start;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 10px;
        scroll-padding-right: 10px;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        scrollbar-width: none;
        padding: 10px 10px 26px;
        margin: 0 -10px;
      }

      .landgang-grid::-webkit-scrollbar {
        display: none;
      }

      .landgang-card-link {
        flex: 0 0 84%;
        align-self: flex-start;
        min-width: 0;
        padding: 0 9px 14px;
        scroll-snap-align: start;
        scroll-snap-stop: always;
      }

      .landgang-card {
        height: auto;
      }

      .landgang-card-media {
        flex: 0 0 auto;
      }

      .landgang-more-wrap {
        display: none !important;
      }
    }

    @media (max-width: 640px) {
      .landgang-shell {
        padding: 20px 12px 40px;
        overflow-x: hidden;
      }

      .landgang-head {
        margin-bottom: 28px;
        padding: 22px 16px 18px;
      }

      .landgang-head::before {
        width: 120px;
      }

      .landgang-title {
        font-size: 34px;
        line-height: 1.08;
      }

      .landgang-subhead {
        margin-bottom: 14px;
        font-size: 19px;
      }

      .landgang-intro {
        margin-bottom: 16px;
        font-size: 15px;
        line-height: 1.68;
      }

      .landgang-tags {
        gap: 8px;
      }

      .landgang-tag {
        min-height: 36px;
        padding: 0 12px;
        font-size: 13px;
      }

      .landgang-head-right {
        min-height: auto;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 180px 120px;
        gap: 10px;
      }

      .landgang-hero-overlay {
        inset: auto 10px 10px 10px;
        padding: 10px 12px;
      }

      .landgang-hero-title {
        font-size: 16px;
      }

      .landgang-hero-text {
        font-size: 12px;
        line-height: 1.4;
      }

      .landgang-search-wrap {
        margin-bottom: 28px;
      }

      .landgang-search-input {
        min-height: 52px;
        padding: 0 52px 0 16px;
        font-size: 15px;
      }

      .landgang-search-icon {
        right: 16px;
        font-size: 20px;
      }

      .landgang-regions {
        gap: 30px;
        min-width: 0;
      }

      .landgang-region {
        min-width: 0;
      }

      .landgang-region-head {
        min-width: 0;
      }

      .landgang-region-title-row {
        margin: 0 -12px 12px;
        padding: 22px 12px;
        background: #fff9ed;
      }

      .landgang-region-title {
        padding: 10px 12px;
        font-size: 22px;
        line-height: 1.16;
      }

      .landgang-region-text {
        display: block;
        font-size: 13px;
        line-height: 1.6;
        max-width: none;
        white-space: normal;
        overflow-wrap: anywhere;
      }

      .landgang-grid {
        padding: 10px 8px 28px;
        margin: 0 -8px;
      }

      .landgang-card-link {
        flex: 0 0 84%;
        padding: 0 8px 16px;
      }

      .landgang-card {
        min-width: 0;
        border-radius: 16px;
        box-shadow: 0 18px 36px rgba(16,46,70,0.14);
      }

      .landgang-card-body {
        min-width: 0;
        min-height: 0;
        padding: 16px 16px 14px;
      }

      .landgang-card-title {
        padding-top: 1px;
        font-size: 24px;
        line-height: 1.22;
      }

      .landgang-card-text {
        margin-bottom: 16px;
        font-size: 14px;
        min-height: 7.2em;
        display: -webkit-box;
        overflow: hidden;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 4;
        white-space: normal;
        overflow-wrap: anywhere;
      }

      .landgang-card-button {
        min-height: 44px;
        width: 100%;
        min-width: 0;
        border-radius: 12px;
        color: var(--site-primary);
        font-size: 14px;
        font-weight: 700;
        line-height: 1.1;
        letter-spacing: 0.01em;
        padding: 12px 16px;
        text-align: center;
        white-space: nowrap;
        margin-top: auto;
      }

      .landgang-card-media {
        height: clamp(180px, 48vw, 215px);
        aspect-ratio: auto;
      }

      .landgang-card-flag {
        top: 10px;
        left: 10px;
        min-width: 42px;
        height: 36px;
        padding: 0 8px;
        font-size: 22px;
      }
    }

    @media (max-width: 900px) {
      .actions-grid.is-swipe {
        grid-template-columns: none !important;
        grid-auto-flow: column;
        grid-auto-columns: 85vw;
        width: 100vw;
        margin-inline: calc(50% - 50vw);
        box-sizing: border-box;
        gap: 14px;
        overflow-x: auto;
        padding: 12px 7.5vw 26px;
        scroll-padding-inline: 7.5vw;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
      }

      .actions-grid.is-swipe > * {
        scroll-snap-align: start;
      }

      .actions-grid.is-swipe::-webkit-scrollbar {
        height: 8px;
      }

      .actions-grid.is-swipe::-webkit-scrollbar-thumb {
        background: rgba(16,46,70,0.18);
        border-radius: 999px;
      }

      .actions-grid.is-stack {
        grid-template-columns: 1fr !important;
      }

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

      .action-card h3 {
        font-size: 21px;
      }

      .action-card-cta {
        min-height: 38px;
        padding: 8px 14px;
        font-size: 12px;
      }

      .cruise-offers-grid {
        grid-template-columns: none;
        grid-auto-flow: column;
        grid-auto-columns: 85vw;
        width: 100vw;
        margin-inline: calc(50% - 50vw);
        box-sizing: border-box;
        gap: 14px;
        overflow-x: auto;
        padding: 10px 7.5vw 22px;
        scroll-padding-inline: 7.5vw;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
      }

      .cruise-offers-grid > * {
        scroll-snap-align: start;
      }

      .cruise-offers-grid::-webkit-scrollbar {
        height: 8px;
      }

      .cruise-offers-grid::-webkit-scrollbar-thumb {
        background: rgba(16,46,70,0.18);
        border-radius: 999px;
      }

      .cruise-cards-deck .dkp-main {
        padding: 14px 14px 0;
      }

      .cruise-cards-deck .dkp-title {
        min-height: calc(1.25em * 2);
      }

      .cruise-cards-deck .dkp-badges {
        min-height: 58px;
      }

      .cruise-cards-deck .dkp-side {
        padding: 12px 14px 14px;
      }
    }

    @media (max-width: 640px) {
      .action-card-overlay {
        inset: 12px 12px auto 12px;
      }

      .action-card-badge,
      .action-card-date {
        min-height: 30px;
        padding: 6px 10px;
        font-size: 11px;
      }

      .action-card-meta span {
        min-height: 24px;
        padding: 4px 8px;
        font-size: 10px;
      }

      .action-card h3 {
        font-size: 20px;
      }

      .cruise-cards-deck .dkp-media-viewport {
        aspect-ratio: 20 / 12;
      }

      .cruise-cards-deck .dkp-title {
        font-size: 18px;
        min-height: calc(1.25em * 2);
      }

      .cruise-cards-deck .dkp-badges {
        gap: 5px;
        min-height: 54px;
      }

      .cruise-cards-deck .dkp-badge {
        min-height: 26px;
        padding: 0 9px;
        font-size: 10.5px;
      }

      .cruise-cards-deck .dkp-row {
        font-size: 12px;
      }

      .cruise-cards-deck .dkp-priceBox {
        flex-basis: 128px;
        min-height: 64px;
        padding: 9px 11px;
      }

      .cruise-cards-deck .dkp-priceBox .v {
        font-size: 13px;
      }

      .cruise-cards-deck .dkp-open {
        min-height: 46px;
      }

      .cruise-cards-deck .dkp-routeToggle {
        top: 8px;
        right: 8px;
      }

      .cruise-cards-deck .dkp-logo {
        top: 8px;
        left: 8px;
      }
    }
