
    :root {
      --forest: #102b27;
      --forest-2: #1c443c;
      --forest-3: #2b5b51;
      --terracotta: #a3624f;
      --copper: #c7a16a;
      --sand: #e7dac7;
      --ivory: #faf6ef;
      --white: #ffffff;
      --ink: #1a2321;
      --muted: #5f6d67;
      --line: rgba(16, 43, 39, 0.12);
      --shadow: 0 24px 70px rgba(16, 43, 39, 0.10);
      --shadow-soft: 0 12px 30px rgba(16, 43, 39, 0.08);
      --max: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--ink);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      line-height: 1.65;
      background:
        radial-gradient(circle at top left, rgba(199, 161, 106, 0.11), transparent 26%),
        radial-gradient(circle at bottom right, rgba(16, 43, 39, 0.07), transparent 24%),
        linear-gradient(180deg, #fdfbf7 0%, var(--ivory) 42%, #f7f1e7 100%);
    }

    a { color: inherit; text-decoration: none; }
    button, input, select, textarea { font: inherit; }
    .container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }

    .site-header {
      position: sticky; top: 0; z-index: 50; backdrop-filter: blur(18px);
      background: rgba(250, 246, 239, 0.86); border-bottom: 1px solid rgba(16, 43, 39, 0.08);
      box-shadow: 0 10px 30px rgba(16, 43, 39, 0.06);
    }
    .nav { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
    .brand { display: flex; align-items: center; min-width: 220px; }
    .brand-logo { width: 310px; height: auto; display: block; }
    .nav-links { display: flex; align-items: center; gap: 24px; font-size: 14px; }
    .nav-links a { color: #31403b; font-weight: 650; position: relative; padding-bottom: 4px; }
    .nav-links a::after {
      content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
      background: linear-gradient(90deg, transparent, var(--copper), transparent);
      transform: scaleX(0); transition: transform .22s ease;
    }
    .nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
    .nav-actions { display: flex; align-items: center; gap: 10px; }
    .lang-switch { display: inline-flex; overflow: hidden; border-radius: 999px; border: 1px solid rgba(16,43,39,.10); background: rgba(255,255,255,.84); box-shadow: var(--shadow-soft); }
    .lang-switch button { border: 0; padding: 8px 11px; background: transparent; color: var(--muted); cursor: pointer; font-weight: 750; font-size: 12px; }
    .lang-switch button.active { background: linear-gradient(135deg, var(--forest), var(--forest-2)); color: white; }
    .lang-switch a { display: inline-block; border: 0; padding: 8px 11px; background: transparent; color: var(--muted); cursor: pointer; font-weight: 750; font-size: 12px; text-decoration: none; }
    .lang-switch a.active { background: linear-gradient(135deg, var(--forest), var(--forest-2)); color: white; }
    .btn {
      display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 24px;
      border-radius: 999px; border: 1px solid transparent; font-weight: 750; cursor: pointer; letter-spacing: .02em;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn-primary { background: linear-gradient(135deg, var(--forest), var(--forest-2)); color: white; box-shadow: 0 14px 30px rgba(16,43,39,.18); }
    .btn-primary:hover { background: linear-gradient(135deg, var(--forest-2), var(--forest-3)); box-shadow: 0 18px 34px rgba(16,43,39,.22); }
    .btn-secondary { border-color: rgba(16,43,39,.18); background: rgba(255,255,255,.68); color: var(--forest); box-shadow: var(--shadow-soft); }
    .mobile-toggle { display: none; width: 44px; height: 44px; border-radius: 14px; border: 1px solid rgba(16,43,39,.12); background: rgba(255,255,255,.86); box-shadow: var(--shadow-soft); cursor: pointer; }

    /* v1.40.0: header search toggle/panel, shared markup across every page via header.php - see wissen.css for the fuller explanatory comment. */
    .nav-actions { position: relative; }
    .nav-search-toggle { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 14px; border: 1px solid var(--line); background: #fff; color: var(--forest); cursor: pointer; }
    .nav-search-panel { display: none; position: absolute; top: calc(100% + 10px); right: 0; z-index: 40; width: min(320px, 86vw); gap: 8px; align-items: center; padding: 12px; border-radius: 18px; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow); }
    .nav-search.open .nav-search-panel { display: flex; }
    .nav-search-panel input[type="search"] { flex: 1 1 auto; min-width: 0; padding: 10px 12px; border-radius: 12px; border: 1px solid var(--line); background: #faf9f6; color: var(--ink); font: inherit; font-size: 14px; }
    .nav-search-panel input[type="search"]:focus { outline: 2px solid var(--copper); outline-offset: 1px; }
    .nav-search-panel button[type="submit"] { display: inline-grid; place-items: center; flex: 0 0 auto; width: 40px; height: 40px; border: 0; border-radius: 12px; background: linear-gradient(135deg, var(--forest), var(--forest-2)); color: #fff; cursor: pointer; }

    h1, h2, h3 { margin: 0; color: var(--forest); font-family: Georgia, "Times New Roman", serif; line-height: 1.07; letter-spacing: -.025em; }
    .eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 20px; color: var(--terracotta); font-size: 12px; font-weight: 850; text-transform: uppercase; letter-spacing: .22em; }
    .eyebrow::before { content: ""; width: 34px; height: 2px; background: currentColor; }

    .page-hero { position: relative; overflow: hidden; padding: 92px 0 82px; }
    .page-hero::before { content: ""; position: absolute; width: 580px; height: 580px; border-radius: 50%; right: -180px; top: -190px; background: radial-gradient(circle, rgba(199,161,106,.23), transparent 68%); }
    .page-hero-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: 62px; align-items: center; }
    h1 { font-size: clamp(48px, 6.2vw, 78px); max-width: 790px; }
    .hero-lead { margin: 28px 0 34px; max-width: 720px; color: #46544f; font-size: clamp(18px, 2vw, 22px); line-height: 1.78; }
    .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

    .hero-panel {
      min-height: 530px; padding: 38px; border-radius: 36px; color: white; position: relative; overflow: hidden;
      display: flex; flex-direction: column; justify-content: space-between;
      background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.01)), linear-gradient(155deg, #102b27, #173732 58%, #0a211e);
      border: 1px solid rgba(255,255,255,.11); box-shadow: 0 36px 86px rgba(16,43,39,.24);
    }
    /* 25.08.2026: reduced from 22px to 12px, matching .portrait-panel - same
       decorative-frame-behind-a-heading pattern that let French text run
       across the border in the "Über TerraNova" panel; hardened here
       preventively even though panel_h2's current French text isn't as long. */
    .hero-panel::before { content: ""; position: absolute; inset: 12px; border: 1px solid rgba(199,161,106,.30); border-radius: 26px; }
    .hero-panel::after { content: "@"; position: absolute; right: -10px; bottom: -90px; color: rgba(255,255,255,.035); font-family: Georgia, serif; font-size: 330px; font-weight: 700; line-height: 1; }
    .hero-panel > * { position: relative; z-index: 2; }
    .hero-panel small { color: #d9e5e1; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .2em; }
    .hero-panel h2 { color: white; font-size: clamp(36px, 4.3vw, 54px); margin-top: 18px; max-width: 510px; }
    .panel-list { display: grid; gap: 14px; }
    .panel-item { display: flex; align-items: flex-start; gap: 13px; color: #d8e3df; line-height: 1.65; }
    .panel-item > span:first-child { flex: 0 0 30px; width: 30px; height: 30px; border-radius: 50%; background: rgba(199,161,106,.17); border: 1px solid rgba(199,161,106,.45); color: var(--copper); display: grid; place-items: center; font-weight: 850; }
    .panel-item strong { display: block; color: white; margin-bottom: 2px; }

    section { padding: 96px 0; }
    .section-head { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: end; margin-bottom: 50px; }
    .section-head h2 { font-size: clamp(40px, 5vw, 62px); }
    .section-head p { margin: 0; color: var(--muted); font-size: 18px; line-height: 1.8; }

    .contact-overview { background: rgba(255,255,255,.72); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); backdrop-filter: blur(10px); }
    .contact-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 42px; align-items: start; }
    .details-card { padding: 34px; border-radius: 30px; background: linear-gradient(160deg, #efe3d2, #fbf7f0); border: 1px solid rgba(16,43,39,.08); box-shadow: var(--shadow); position: sticky; top: 116px; }
    .details-card h2 { font-size: 42px; margin-bottom: 18px; }
    .details-card > p { color: var(--muted); line-height: 1.8; margin: 0 0 26px; }
    .detail-list { display: grid; gap: 14px; }
    .detail-item { padding: 18px; border-radius: 18px; background: rgba(255,255,255,.66); border: 1px solid rgba(16,43,39,.08); }
    .detail-item small { display: block; color: var(--terracotta); font-size: 11px; font-weight: 850; text-transform: uppercase; letter-spacing: .16em; margin-bottom: 5px; }
    .detail-item strong { display: block; color: var(--forest); }
    .placeholder { color: var(--muted); font-weight: 650; }
    .placeholder-note { margin-top: 18px; padding: 16px 17px; border-radius: 16px; background: rgba(199,161,106,.13); color: #5e513f; font-size: 14px; line-height: 1.6; }

    form { padding: 34px; border-radius: 30px; background: linear-gradient(180deg, rgba(255,255,255,.97), rgba(252,248,242,.94)); border: 1px solid rgba(16,43,39,.08); box-shadow: var(--shadow); }
    form h2 { font-size: 43px; margin-bottom: 12px; }
    .form-intro { margin: 0 0 28px; color: var(--muted); line-height: 1.75; }
    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
    .field { display: grid; gap: 7px; }
    .field.full { grid-column: 1 / -1; }
    label { color: var(--forest); font-size: 13px; font-weight: 800; }
    input, select, textarea { width: 100%; border: 1px solid rgba(16,43,39,.14); background: rgba(255,255,255,.98); border-radius: 14px; padding: 14px 15px; color: var(--ink); outline: none; }
    input:focus, select:focus, textarea:focus { border-color: var(--forest); box-shadow: 0 0 0 3px rgba(16,43,39,.08); }
    textarea { min-height: 170px; resize: vertical; }
    .consent { display: flex; align-items: flex-start; gap: 10px; margin-top: 18px; color: var(--muted); font-size: 14px; line-height: 1.6; }
    .consent input { width: auto; margin-top: 4px; }
    .form-footer { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 22px; flex-wrap: wrap; }
    .form-status { color: var(--forest); font-weight: 750; min-height: 24px; max-width: 470px; }

    .route-section { background: transparent; }
    .route-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .route-card { padding: 28px; border-radius: 25px; background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(252,248,242,.92)); border: 1px solid rgba(16,43,39,.08); box-shadow: var(--shadow-soft); }
    .route-card > span:first-child { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 14px; margin-bottom: 18px; background: linear-gradient(135deg, var(--sand), #f3e9da); color: var(--forest); font-weight: 900; }
    .route-card h3 { font-size: 28px; margin-bottom: 11px; }
    .route-card p { margin: 0 0 20px; color: var(--muted); line-height: 1.75; }
    .text-link { color: var(--forest); font-weight: 800; border-bottom: 1px solid rgba(199,161,106,.7); padding-bottom: 3px; }

    .international { background: radial-gradient(circle at top right, rgba(199,161,106,.18), transparent 20%), linear-gradient(180deg, #102b27, #0b221f); color: white; }
    .international-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
    .international h2 { color: white; font-size: clamp(42px, 5vw, 62px); margin-bottom: 20px; }
    .international p { color: #c9d9d4; font-size: 18px; line-height: 1.8; }
    .availability { display: grid; gap: 15px; }
    .availability-item { padding: 22px; border-radius: 20px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); }
    .availability-item strong { display: block; color: white; font-family: Georgia, serif; font-size: 24px; margin-bottom: 7px; }
    .availability-item p { margin: 0; font-size: 15px; }

    footer { background: radial-gradient(circle at top right, rgba(199,161,106,.14), transparent 16%), linear-gradient(180deg, #0f2925, #091b19); color: #d9e4e0; padding: 50px 0; }
    .footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 32px; }
    footer h3 { color: white; font-size: 24px; margin-bottom: 12px; }
    footer p, footer a { color: #aebfba; font-size: 14px; }
    .footer-links { display: grid; gap: 8px; }
    .footer-bottom { margin-top: 30px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); color: #91a59f; font-size: 13px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

    [data-lang] { display: none; }
    [data-lang].visible { display: inline; }
    .block[data-lang].visible { display: block; }

    @media (max-width: 980px) {
      .nav-links { position: fixed; inset: 84px 20px auto 20px; padding: 20px; border-radius: 18px; background: white; border: 1px solid var(--line); box-shadow: var(--shadow); display: none; flex-direction: column; align-items: flex-start; }
      .nav-links.open { display: flex; }
      .mobile-toggle { display: inline-grid; place-items: center; }
      .nav-actions .btn { display: none; }
      .page-hero-grid, .contact-grid, .international-grid, .section-head { grid-template-columns: 1fr; }
      .route-grid { grid-template-columns: 1fr 1fr; }
      .details-card { position: static; }
    }
    @media (max-width: 680px) {
      .container { width: min(calc(100% - 28px), var(--max)); }
      .brand-logo { width: 230px; }
      .brand { min-width: auto; }
      .nav { gap: 12px; }
      .page-hero { padding: 58px 0 68px; }
      .hero-panel { min-height: 440px; padding: 30px; }
      section { padding: 70px 0; }
      .hero-actions .btn { width: 100%; }
      .route-grid, .form-grid, .footer-grid { grid-template-columns: 1fr; }
      .details-card, form { padding: 25px; }
      .form-footer .btn { width: 100%; }
    }
  