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

    :root {
      --site-font: 'Figtree', 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);
    }

    .nav {
      max-width: var(--max);
      margin: 0 auto;
      padding: 14px 22px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    body.home-page .nav {
      margin-top: 0;
      padding: 14px 22px;
      background: transparent;
      border: 0;
      border-radius: 0;
      box-shadow: none;
    }

    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: 156px;
      height: auto;
      display: block;
    }

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

    .nav-links {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      flex-wrap: wrap;
      gap: 20px;
      font-size: 14px;
      font-weight: 600;
    }

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

    .nav-item-wrap {
      position: relative;
      display: flex;
      align-items: center;
      padding-bottom: 10px;
      margin-bottom: -10px;
    }

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

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

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

    .nav-link.has-children::after {
      content: "▾";
      margin-left: 6px;
      font-size: 10px;
      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% + 6px);
      left: 50%;
      width: min(980px, calc(100vw - 44px));
      transform: translate(-50%, 8px);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: 0.18s;
      border: 1px solid var(--line);
      border-radius: var(--card-radius);
      background: var(--site-surface);
      box-shadow: var(--shadow);
      padding: 14px;
      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: translate(-50%, 0);
    }

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

    .mega-card {
      display: grid;
      grid-template-columns: 72px minmax(0, 1fr);
      gap: 10px;
      min-height: 70px;
      border-radius: var(--card-radius);
      padding: 7px;
      color: var(--site-primary);
      text-decoration: none;
    }

    .mega-card:hover {
      background: #f4f8fa;
    }

    .mega-card img {
      width: 72px;
      height: 58px;
      border-radius: var(--image-radius);
      object-fit: cover;
      background: #dce5ec;
    }

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

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

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

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

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

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

    .mobile-parent-link {
      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);
    }

    .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: 44px;
      height: 44px;
      border-radius: var(--button-radius);
      border: 1px solid var(--line);
      background: #fff;
      color: var(--site-primary);
      font-size: 22px;
      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;
    }

    main {
      overflow: hidden;
      min-height: 54vh;
    }

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

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

    .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(--site-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(--site-accent);
      color: #ffffff;
      font-size: 12px;
      line-height: 1;
      font-weight: 800;
      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: 800;
      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: 800;
      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: 800;
      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(--site-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-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
      align-items: stretch;
    }

    .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::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: 0;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      width: min(1320px, calc(100% - 44px));
      min-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: 680px;
      padding: 132px 0 48px;
      align-items: center;
      justify-content: center;
      gap: 18px;
    }

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

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

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

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

    .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: var(--sun);
    }

    .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: 58px;
      line-height: 0.98;
    }

    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: 17px;
      line-height: 1.65;
    }

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

    .site-hero.home-hero .hero-copy {
      max-width: 760px;
      margin-bottom: 0;
      margin-left: auto;
      margin-right: auto;
      font-size: 18px;
      line-height: 1.55;
    }

    .hero-note {
      max-width: 680px;
      margin: 14px auto 0;
      color: rgba(255,255,255,0.8);
      font-size: 14px;
      line-height: 1.45;
      font-weight: 500;
    }

    .site-hero.home-hero .hero-note {
      display: none;
    }

    .site-hero.standard-hero .hero-note {
      margin-left: 0;
      margin-right: 0;
    }

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

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

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

    .hero-ibe-tabs {
      display: inline-flex;
      align-items: flex-end;
      gap: 6px;
      margin: 0 auto;
    }

    .hero-ibe-tab {
      border: 0;
      border-radius: 8px 8px 0 0;
      background: rgba(255,255,255,0.72);
      color: var(--site-primary);
      min-height: 42px;
      padding: 0 20px;
      font-size: 15px;
      line-height: 1.1;
      font-weight: 600;
      cursor: pointer;
      transition: 0.16s;
    }

    .hero-ibe-tab.active {
      background: rgba(255,255,255,0.96);
    }

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

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

    .hero-ibe-desktop {
      display: grid;
      grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.05fr) minmax(0, 1fr) minmax(0, 0.85fr) 220px;
      border: 1px solid rgba(255,255,255,0.74);
      border-radius: 8px;
      overflow: visible;
      background: rgba(255,255,255,0.95);
      box-shadow: var(--shadow);
    }

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

    .hero-ibe-field {
      position: relative;
      background: transparent;
      border-right: 1px solid var(--line);
    }

    .hero-ibe-trigger {
      position: relative;
      width: 100%;
      min-height: 66px;
      padding: 12px 38px 12px 16px;
      display: grid;
      gap: 5px;
      align-content: center;
      border: 0;
      background: transparent;
      color: inherit;
      text-align: left;
      cursor: pointer;
    }

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

    .hero-ibe-field.open .hero-ibe-trigger::after {
      transform: translateY(-50%) rotate(180deg);
    }

    .hero-ibe-field-label {
      color: var(--site-muted);
      font-size: 11px;
      line-height: 1.2;
      font-weight: 600;
    }

    .hero-ibe-field-value {
      color: var(--site-primary);
      font-size: 15px;
      line-height: 1.25;
      font-weight: 600;
    }

    .hero-ibe-dropdown {
      position: absolute;
      top: calc(100% + 8px);
      left: 8px;
      min-width: 240px;
      max-width: min(320px, calc(100vw - 32px));
      padding: 8px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #fff;
      box-shadow: 0 18px 34px rgba(16,46,70,0.16);
      z-index: 12;
    }

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

    .hero-ibe-option {
      display: flex;
      align-items: center;
      min-height: 40px;
      width: 100%;
      padding: 9px 12px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #fff;
      color: var(--site-primary);
      font-size: 14px;
      line-height: 1.3;
      font-weight: 600;
      text-align: left;
      cursor: pointer;
      transition: 0.16s;
    }

    .hero-ibe-option:hover,
    .hero-ibe-option.active {
      border-color: rgba(16,46,70,0.28);
      background: #f5f8fb;
    }

    .hero-ibe-submit {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 66px;
      padding: 16px 18px;
      background: var(--sun);
      color: var(--site-primary);
      font-size: 17px;
      line-height: 1.2;
      font-weight: 700;
      text-decoration: none;
      box-shadow: none;
    }

    .hero-ibe-submit:hover {
      filter: brightness(0.98);
    }

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

    .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: 16px;
      line-height: 1.68;
    }

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

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

    .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 figcaption {
      margin-top: 10px;
      color: var(--site-muted);
      font-size: 13px;
      font-weight: 500;
    }

    .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;
    }

    .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);
      padding: 18px;
    }

    .faq-item h3 {
      font-size: 18px;
    }

    .faq-item 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: minmax(0, 0.78fr) minmax(320px, 1fr);
      gap: 36px;
      align-items: start;
    }

    .contact-direct {
      display: grid;
      gap: 10px;
      margin-top: 22px;
    }

    .contact-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--site-primary);
      font-weight: 600;
      text-decoration: none;
    }

    .contact-link span {
      width: 30px;
      height: 30px;
      border-radius: var(--button-radius);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--sea);
      color: #fff;
      flex-shrink: 0;
    }

    .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;
    }

    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-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;
    }

    .loading-text,
    .empty-offers,
    .not-found {
      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;
    }

    footer {
      background: var(--site-primary);
      color: rgba(255,255,255,0.78);
      padding: 34px 22px;
    }

    .footer-inner {
      max-width: var(--max);
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 28px;
      align-items: start;
      font-size: 13px;
      line-height: 1.55;
    }

    .footer-brand {
      display: block;
      color: #fff;
      margin-bottom: 6px;
      font-weight: 700;
    }

    .footer-links {
      display: flex;
      justify-content: flex-end;
      gap: 14px;
      flex-wrap: wrap;
    }

    .footer-links a {
      color: #fff;
      text-decoration: none;
      font-weight: 600;
    }

    .footer-copy {
      margin-top: 10px;
      color: rgba(255,255,255,0.62);
    }

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

      .menu-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
      }

      .nav-links {
        position: fixed;
        inset: 0 auto 0 0;
        z-index: 220;
        width: min(100vw, 380px);
        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) + 14px) 20px calc(env(safe-area-inset-bottom, 0px) + 18px);
        border-right: 1px solid var(--line);
        background: #fff;
        box-shadow: 0 18px 42px rgba(16,46,70,0.14);
        overflow-y: auto;
        overscroll-behavior: contain;
        transform: translateX(-104%);
        transition: transform 0.22s ease;
      }

      body.nav-open .nav-links {
        transform: translateX(0);
      }

      .nav-overlay {
        position: fixed;
        inset: 0;
        z-index: 210;
        display: block;
        border: 0;
        background: rgba(255,255,255,0.01);
        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: 14px;
        padding: 0 0 14px;
        margin-bottom: 4px;
        border-bottom: 1px solid var(--line);
        color: var(--site-primary);
        font-size: 14px;
        font-weight: 600;
      }

      .nav-links > a,
      .nav-branch-head {
        min-height: 52px;
      }

      .nav-links > a {
        display: flex;
        align-items: center;
        padding: 14px 0;
        border-radius: 0;
        border-bottom: 1px solid rgba(220,229,236,0.82);
        font-size: 15px;
        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: 52px;
        min-width: 0;
        padding: 14px 0;
        flex: 1;
        font-size: 15px;
        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: 1fr;
        gap: 0;
        min-height: 0;
        padding: 0;
        border-radius: 0;
        border-bottom: 1px solid rgba(220,229,236,0.82);
      }

      .mega-card img {
        display: none;
      }

      .mega-card:last-child {
        border-bottom: 0;
      }

      .mega-main {
        padding: 12px 0 12px 16px;
      }

      .mega-copy strong {
        font-size: 14px;
        font-weight: 600;
        white-space: normal;
      }

      .mega-copy span {
        display: none;
      }

      .mega-sub {
        display: none;
      }

      .mega-sub a {
        padding: 3px 6px;
        font-size: 10px;
      }

      .mobile-parent-link {
        display: block;
        padding: 10px 0 0 16px;
      }

      .mobile-parent-link a {
        color: var(--site-primary);
        font-size: 14px;
        line-height: 1.35;
        font-weight: 600;
        text-decoration: none;
      }

      body.home-page .nav {
        padding: 12px 14px;
        min-height: 62px;
      }

      body.home-page .brand img {
        width: 138px;
      }

      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;
      }

      .nav-cta {
        width: 100%;
        margin-top: 8px;
      }

      .nav-links > .nav-cta {
        justify-content: center;
        padding: 11px 16px;
        border-bottom: 0;
      }

      .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: 0;
        padding: 56px 0 24px;
        gap: 10px;
      }

      .hero-intro,
      .site-hero.standard-hero .hero-intro {
        width: min(460px, calc(100% - 32px));
        max-width: none;
        margin: 0 auto;
        padding: 0 0 8px;
        text-align: center;
      }

      body.home-page .hero-intro {
        padding-top: 0;
      }

      .eyebrow {
        justify-content: center;
        width: 100%;
        margin-bottom: 10px;
      }

      h1 {
        font-size: 26px;
        line-height: 1.08;
      }

      h2 {
        font-size: 32px;
      }

      .hero-copy {
        font-size: 13px;
      }

      .site-hero.home-hero h1 {
        max-width: 348px;
        margin: 0 auto 12px;
        font-size: 28px;
        line-height: 1.06;
      }

      .site-hero.home-hero .hero-copy {
        max-width: 336px;
        margin: 0 auto;
        font-size: 13px;
        line-height: 1.5;
      }

      .hero-note,
      .site-hero.standard-hero .hero-note {
        display: none;
      }

      .hero-ibe {
        width: 100%;
        gap: 0;
      }

      .hero-ibe-tabs {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        width: min(460px, calc(100% - 32px));
        margin: 0 auto 10px;
        justify-self: center;
      }

      .hero-ibe-tab {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        border-radius: 0;
        background: rgba(255,255,255,0.88);
        color: var(--site-primary);
        padding: 0 14px;
        text-align: center;
      }

      .hero-ibe-tab.active {
        background: #ffffff;
      }

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

      .hero-ibe-mobile {
        display: grid;
        gap: 10px;
        padding: 0;
        width: min(460px, calc(100% - 32px));
        margin: 0 auto;
      }

      .hero-ibe-mobile .hero-ibe-field {
        min-height: 0;
        padding: 0;
        border: 0;
        border-radius: 8px;
        background: #fff;
        box-shadow: 0 10px 22px rgba(16,46,70,0.12);
      }

      .hero-ibe-mobile .hero-ibe-trigger {
        min-height: 56px;
        padding: 11px 40px 11px 14px;
      }

      .hero-ibe-mobile .hero-ibe-dropdown {
        position: static;
        min-width: 0;
        max-width: none;
        padding: 8px 10px 10px;
        border: 0;
        border-top: 1px solid var(--line);
        border-radius: 0 0 8px 8px;
        box-shadow: none;
      }

      .hero-ibe-mobile .hero-ibe-field-label {
        color: var(--site-primary);
        font-size: 13px;
      }

      .hero-ibe-mobile .hero-ibe-field-value {
        color: #496b7f;
        font-size: 15px;
        font-weight: 500;
        white-space: normal;
      }

      .hero-ibe-mobile .hero-ibe-submit {
        min-height: 50px;
        border-radius: 8px;
        box-shadow: 0 10px 20px rgba(247,201,72,0.22);
      }

      .hero-ibe-contact {
        flex-direction: column;
        align-items: center;
        gap: 4px;
        padding: 12px 2px 0;
        width: min(460px, calc(100% - 32px));
        margin: 0 auto;
        text-align: center;
        font-size: 12px;
      }

      .page-section {
        padding: 54px 16px;
      }

      .text-layout,
      .image-text,
      .image-text.reverse,
      .columns-section,
      .offers-grid,
      .contact-section,
      .footer-inner {
        grid-template-columns: 1fr !important;
      }

      .footer-links {
        justify-content: flex-start;
      }

      .menu-landing-title {
        font-size: 28px;
      }

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

    @media (max-width: 620px) {
      .brand img {
        width: 134px;
      }

      .hero-actions,
      .form-grid {
        grid-template-columns: 1fr;
      }

      .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;
      }
    }

    @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: 640px) {
      .landgang-shell {
        padding: 20px 12px 40px;
      }

      .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;
      }

      .landgang-region-title-row {
        margin: 0 -12px 12px;
        padding: 22px 12px;
      }

      .landgang-region-title {
        padding: 10px 12px;
        font-size: 22px;
        line-height: 1.16;
      }

      .landgang-region-text {
        font-size: 14px;
        line-height: 1.65;
      }
    }
