/*
Theme Name: Reisen & Erleben
Theme URI: https://www.reisenunderleben.net
Author: Reisen & Erleben Motorradreisen Werner GmbH
Description: Custom Theme für Reisen & Erleben Motorradreisen – Design-System (Farben, Typografie, Buttons, Header/Footer, Sektionen) als globales Stylesheet. Seiteninhalte werden mit Elementor gepflegt.
Version: 1.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: reisen-erleben
*/

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --navy:      #153F73;
    --navy-dark: #0e2d55;
    --navy-deep: #091e3a;
    --yellow:    #FFC72C;
    --yellow-dk: #e5a800;
    --blue:      #004C97;
    --blue-lt:   #D9E4F2;
    --white:     #ffffff;
    --gray-lt:   #f5f7fa;
    --gray-mid:  #7a8aaa;
    --text:      #1a2a45;
  }
  html { scroll-behavior: smooth; }
  body { font-family: 'Open Sans', sans-serif; color: var(--text); background: #fff; overflow-x: hidden; }
  h1,h2,h3,h4,h5 { font-family: 'Montserrat', sans-serif; }
  a { text-decoration: none; color: inherit; }

  /* ── UTILS ─── */
  .container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
  .section-chip {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,199,44,0.12); border: 1px solid rgba(255,199,44,0.35);
    padding: 6px 14px; border-radius: 20px;
    font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.8px; color: var(--yellow);
    margin-bottom: 20px;
  }
  .section-chip.light {
    background: rgba(21,63,115,0.07); border-color: rgba(21,63,115,0.2);
    color: var(--blue);
  }
  .section-chip::before { content: '—'; opacity: 0.5; }

  /* ── BUTTONS ─── */
  .btn {
    display: inline-flex; align-items: center; gap: 9px;
    font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 14px;
    text-transform: uppercase; letter-spacing: 0.7px;
    padding: 15px 30px; border-radius: 3px; border: none; cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
  }
  .btn:hover { transform: translateY(-2px); }
  .btn-yellow { background: var(--yellow); color: var(--navy-dark); box-shadow: 0 4px 16px rgba(255,199,44,0.35); }
  .btn-yellow:hover { background: var(--yellow-dk); box-shadow: 0 8px 24px rgba(255,199,44,0.45); }
  .btn-outline { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.6); }
  .btn-outline:hover { background: white; color: var(--navy); border-color: white; }
  .btn-navy { background: var(--navy); color: white; }
  .btn-navy:hover { background: var(--navy-dark); }
  .btn-ghost { background: transparent; color: var(--blue); padding: 12px 0; }
  .btn-ghost:hover { color: var(--navy); transform: none; }
  .btn-ghost .arrow { transition: transform 0.2s; }
  .btn-ghost:hover .arrow { transform: translateX(5px); }
  .btn-lg { font-size: 16px; padding: 18px 40px; }

  /* ── TOP BAR ─── */
  .topbar {
    background: var(--navy-deep); padding: 9px 0;
    font-family: 'Montserrat', sans-serif; font-size: 11.5px;
    color: rgba(255,255,255,0.5); letter-spacing: 0.3px;
  }
  .topbar .container { display: flex; justify-content: space-between; align-items: center; }
  .topbar-right { display: flex; gap: 20px; }
  .topbar a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
  .topbar a:hover, .topbar .phone { color: var(--yellow); font-weight: 700; }

  /* ── HEADER ─── */
  .header {
    position: sticky; top: 0; z-index: 200;
    background: rgba(255,255,255,0.97); backdrop-filter: blur(10px);
    border-bottom: 3px solid var(--yellow);
    box-shadow: 0 2px 24px rgba(21,63,115,0.10);
    transition: padding 0.3s;
  }
  .header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px 0; }

  .logo { display: flex; flex-direction: column; line-height: 1; }
  .logo-mark {
    font-family: 'Montserrat', sans-serif; font-size: 21px; font-weight: 900;
    font-style: italic; color: var(--navy);
    text-shadow: 2px 2px 0 var(--yellow);
    letter-spacing: -0.5px;
  }
  .logo-sub {
    font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 700;
    letter-spacing: 2.5px; text-transform: uppercase; color: var(--gray-mid);
    margin-top: 2px;
  }

  nav { display: flex; gap: 0; }
  nav a {
    font-family: 'Montserrat', sans-serif; font-size: 12.5px; font-weight: 700;
    color: var(--text); padding: 9px 13px; border-radius: 3px;
    text-transform: uppercase; letter-spacing: 0.4px;
    transition: color 0.2s, background 0.2s;
  }
  nav a:hover { color: var(--blue); background: var(--blue-lt); }

  .header-actions { display: flex; align-items: center; gap: 12px; }
  .header-phone {
    font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 800;
    color: var(--navy); white-space: nowrap;
  }
  .wa-pill {
    display: flex; align-items: center; gap: 7px; padding: 10px 18px;
    background: #25D366; color: white; border-radius: 3px;
    font-family: 'Montserrat', sans-serif; font-size: 12.5px; font-weight: 700;
    transition: background 0.2s, transform 0.15s;
  }
  .wa-pill:hover { background: #20ba5a; transform: translateY(-1px); }

  /* ── HERO ─── */
  .hero {
    min-height: 95vh; position: relative; display: flex; align-items: center;
    overflow: hidden;
    background-image: url('images/hero-motorrad.jpg');
    background-size: cover;
    background-position: center 35%;
    background-repeat: no-repeat;
    /* Fallback gradient if image not yet placed */
    background-color: var(--navy);
  }
  /* Dark overlay so text stays readable over the photo */
  .hero::before {
    content: '';
    position: absolute; inset: 0; z-index: 0;
    background: linear-gradient(
      105deg,
      rgba(9,30,58,0.88) 0%,
      rgba(21,63,115,0.72) 40%,
      rgba(9,30,58,0.45) 70%,
      rgba(9,30,58,0.55) 100%
    );
  }

  /* Sky light rays */
  .hero-rays {
    position: absolute; inset: 0; z-index: 1;
    background: conic-gradient(
      from 220deg at 85% 10%,
      transparent 0deg, rgba(255,199,44,0.04) 5deg,
      transparent 15deg, rgba(255,255,255,0.025) 25deg,
      transparent 40deg, rgba(255,199,44,0.03) 50deg,
      transparent 65deg
    );
  }

  /* Horizon glow */
  .hero-horizon {
    position: absolute; bottom: 0; left: 0; right: 0; height: 55%; z-index: 2;
    background: linear-gradient(0deg, rgba(9,30,58,0.92) 0%, rgba(9,30,58,0.5) 30%, transparent 100%);
  }

  /* Landscape SVG illustration */
  .hero-landscape {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
    height: 45%;
  }

  /* Road perspective lines */
  .hero-road {
    position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); z-index: 4;
    width: 100%;
  }

  /* Floating distance markers */
  .hero-dist {
    position: absolute; z-index: 10; font-family: 'Montserrat', sans-serif;
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
    color: rgba(255,255,255,0.45); display: flex; align-items: center; gap: 8px;
  }
  .hero-dist::before { content: ''; width: 24px; height: 1px; background: rgba(255,255,255,0.3); }
  .hero-dist.d1 { top: 28%; right: 8%; }
  .hero-dist.d2 { top: 40%; right: 6%; }
  .hero-dist.d3 { top: 52%; right: 9%; }

  /* Route dashes */
  .hero-route {
    position: absolute; z-index: 5; right: 12%; top: 22%;
    display: flex; flex-direction: column; gap: 6px;
  }
  .route-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--yellow); opacity: 0.9;
    box-shadow: 0 0 10px rgba(255,199,44,0.6);
  }
  .route-line {
    width: 2px; height: 20px; background: rgba(255,199,44,0.4);
    margin: 0 auto; border-radius: 1px;
  }
  .route-dot.dim { opacity: 0.35; background: white; box-shadow: none; }

  .hero-content { position: relative; z-index: 10; padding: 60px 0 180px; max-width: 660px; }

  .hero-eyebrow {
    display: flex; align-items: center; gap: 12px; margin-bottom: 28px;
    font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 3px; color: rgba(255,255,255,0.5);
  }
  .hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--yellow); flex-shrink: 0; }
  .hero-eyebrow .line { width: 36px; height: 1px; background: rgba(255,255,255,0.25); }

  .hero h1 {
    font-size: clamp(56px, 8.5vw, 110px); font-weight: 900; font-style: italic;
    color: var(--white); line-height: 0.92; margin-bottom: 28px;
    letter-spacing: -2px;
  }
  .hero h1 .highlight {
    color: var(--yellow);
    display: inline-block; position: relative;
  }
  .hero h1 .thin { font-weight: 400; font-style: italic; color: rgba(255,255,255,0.7); font-size: 0.75em; }

  .hero-sub {
    font-size: clamp(15px, 1.8vw, 18px); color: rgba(255,255,255,0.72);
    line-height: 1.75; margin-bottom: 44px; max-width: 520px; font-style: normal;
  }
  .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 64px; }

  /* Trust strip inside hero */
  .hero-trust {
    display: flex; gap: 0; border-top: 1px solid rgba(255,255,255,0.12); padding-top: 36px;
    flex-wrap: wrap;
  }
  .hero-trust-item {
    padding: 0 32px 0 0; display: flex; align-items: flex-start; gap: 12px;
  }
  .hero-trust-item + .hero-trust-item { padding-left: 32px; border-left: 1px solid rgba(255,255,255,0.12); }
  .trust-icon { font-size: 22px; line-height: 1; }
  .trust-n { font-family: 'Montserrat', sans-serif; font-size: 28px; font-weight: 900; font-style: italic; color: var(--yellow); line-height: 1; }
  .trust-l { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 2px; font-family: 'Montserrat', sans-serif; }

  /* Scroll cue */
  .scroll-cue {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 10;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    opacity: 0.4; animation: fadeUpDown 2s ease-in-out infinite;
  }
  .scroll-cue span { font-family: 'Montserrat', sans-serif; font-size: 9px; letter-spacing: 2.5px; color: white; text-transform: uppercase; }
  .scroll-chevron { width: 18px; height: 18px; border-right: 2px solid white; border-bottom: 2px solid white; transform: rotate(45deg); }
  @keyframes fadeUpDown { 0%,100%{opacity:.4;transform:translateX(-50%) translateY(0)} 50%{opacity:.7;transform:translateX(-50%) translateY(6px)} }

  /* ── TOUR BANDS (diagonal transitions) ─── */
  .angle-top { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 92%); padding-bottom: 60px; }
  .angle-both { clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%); margin: -40px 0; padding: 80px 0; }
  .angle-bottom { clip-path: polygon(0 0, 100% 6%, 100% 100%, 0 100%); padding-top: 80px; }

  /* ── VALUE PROPS ─── */
  .values-section { padding: 96px 0 80px; background: var(--white); }
  .values-header { max-width: 600px; margin-bottom: 64px; }
  .values-heading {
    font-size: clamp(32px, 4vw, 50px); font-weight: 900; font-style: italic;
    color: var(--navy); line-height: 1.1; margin-bottom: 16px;
  }
  .values-heading .yellow { color: var(--yellow); -webkit-text-stroke: 0px; }

  .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--blue-lt); border-radius: 8px; overflow: hidden; }
  .value-tile {
    background: var(--white); padding: 44px 36px; position: relative; overflow: hidden;
    transition: background 0.25s;
  }
  .value-tile::after {
    content: ''; position: absolute; bottom: 0; left: 36px; right: 36px; height: 3px;
    background: var(--yellow); transform: scaleX(0); transform-origin: left;
    transition: transform 0.3s;
  }
  .value-tile:hover { background: var(--gray-lt); }
  .value-tile:hover::after { transform: scaleX(1); }
  .value-num {
    font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700;
    color: var(--blue-lt); letter-spacing: 1.5px; margin-bottom: 20px;
    border: 1px solid var(--blue-lt); display: inline-block; padding: 3px 8px; border-radius: 2px;
  }
  .value-tile:hover .value-num { color: var(--yellow); border-color: rgba(255,199,44,0.3); background: rgba(255,199,44,0.05); }
  .value-icon { font-size: 36px; margin-bottom: 18px; display: block; }
  .value-title { font-size: 18px; font-weight: 800; font-style: italic; color: var(--navy); margin-bottom: 10px; }
  .value-body { font-size: 14px; color: var(--gray-mid); line-height: 1.75; }

  /* ── TOUR CARDS ─── */
  .tours-section {
    padding: 96px 0 120px;
    background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
    clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
    margin: -20px 0;
  }
  .tours-intro { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; }
  .tours-heading { font-size: clamp(32px, 4vw, 50px); font-weight: 900; font-style: italic; color: white; line-height: 1.1; }
  .tours-heading span { color: var(--yellow); }

  .tours-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 52px; }
  .tour-card {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px; overflow: hidden; cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  }
  .tour-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.4); border-color: rgba(255,199,44,0.3); }

  /* Landscape-style destination illustrations */
  .tour-img {
    height: 210px; position: relative; overflow: hidden;
  }
  /* Tour card images — save photos to project folder with exact filenames */
  .dest-sardinia {
    background-image: url('images/tour-sardinien.jpg');
    background-size: cover; background-position: center;
    background-color: #1a4a7a;
  }
  .dest-croatia {
    background-image: url('images/tour-kroatien.jpg');
    background-size: cover; background-position: center;
    background-color: #1a5a90;
  }
  .dest-morocco {
    background-image: url('images/tour-marokko.jpg');
    background-size: cover; background-position: center 60%;
    background-color: #6a3820;
  }
  .dest-trentino {
    background-image: url('images/tour-trentino.jpg');
    background-size: cover; background-position: center;
    background-color: #3a6a8a;
  }
  .dest-corsica {
    background-image: url('images/tour-korsika.jpg');
    background-size: cover; background-position: center;
    background-color: #1a5494;
  }
  .dest-more {
    background-image: url('images/tour-mehr.jpg');
    background-size: cover; background-position: center;
    background-color: var(--navy-deep);
  }

  /* Atmospheric layering on top */
  .tour-img::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.08) 0%, transparent 40%, rgba(0,0,0,0.55) 100%);
    z-index: 2;
  }
  /* Haze effect */
  .tour-img::after {
    content: ''; position: absolute; top: 35%; left: 0; right: 0; height: 12%;
    background: rgba(255,255,255,0.06); z-index: 1; filter: blur(4px);
  }

  .tour-badge {
    position: absolute; top: 14px; left: 14px; z-index: 5;
    background: var(--yellow); color: var(--navy-dark);
    font-family: 'Montserrat', sans-serif; font-size: 9.5px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 1px; padding: 4px 10px; border-radius: 2px;
  }
  .tour-avail {
    position: absolute; top: 14px; right: 14px; z-index: 5;
    font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 700;
    padding: 4px 9px; border-radius: 2px; backdrop-filter: blur(6px);
    background: rgba(0,0,0,0.5); color: rgba(255,255,255,0.8);
  }
  .tour-avail.hot { color: var(--yellow); }
  .tour-dest-name {
    position: absolute; bottom: 16px; left: 16px; z-index: 5;
    font-family: 'Montserrat', sans-serif; font-size: 26px; font-weight: 900;
    font-style: italic; color: white; text-shadow: 0 2px 12px rgba(0,0,0,0.5);
    letter-spacing: -0.5px; line-height: 1;
  }
  .tour-dest-sub {
    font-size: 11px; font-style: normal; font-weight: 600; color: rgba(255,255,255,0.7);
    display: block; margin-top: 2px; letter-spacing: 0.5px;
  }

  .tour-body { padding: 22px 22px 20px; }
  .tour-chips { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
  .chip {
    font-family: 'Montserrat', sans-serif; font-size: 10.5px; font-weight: 600;
    color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.07);
    padding: 3px 9px; border-radius: 2px; letter-spacing: 0.3px;
  }
  .tour-title { font-size: 15px; font-weight: 700; color: white; margin-bottom: 8px; line-height: 1.35; }
  .tour-desc { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.65; margin-bottom: 18px; }
  .tour-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.08); }
  .price-block .from-text { font-family: 'Montserrat', sans-serif; font-size: 10px; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.5px; }
  .price-block .price { font-family: 'Montserrat', sans-serif; font-size: 22px; font-weight: 900; font-style: italic; color: var(--yellow); }
  .tour-link {
    font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700;
    color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.8px;
    display: flex; align-items: center; gap: 5px; transition: color 0.2s, gap 0.2s;
  }
  .tour-card:hover .tour-link { color: var(--yellow); gap: 9px; }

  .tours-bottom { text-align: center; }
  .tours-bottom p { font-size: 14px; color: rgba(255,255,255,0.4); margin-top: 16px; }
  .tours-bottom a { color: var(--yellow); font-weight: 700; }

  /* ── TESTIMONIALS ─── */
  .testi-section { padding: 96px 0; background: var(--white); }
  .testi-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
  .testi-left {}
  .testi-big-num {
    font-family: 'Montserrat', sans-serif; font-size: clamp(80px, 10vw, 120px);
    font-weight: 900; font-style: italic; color: var(--navy); line-height: 0.9;
    letter-spacing: -4px;
  }
  .testi-big-num span { color: var(--yellow); }
  .testi-big-label { font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 700; color: var(--gray-mid); margin-top: 12px; text-transform: uppercase; letter-spacing: 1px; }
  .testi-cta-link { display: flex; align-items: center; gap: 8px; font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 700; color: var(--blue); margin-top: 28px; }
  .testi-right { display: flex; flex-direction: column; gap: 20px; }
  .testi-card {
    background: var(--gray-lt); border-radius: 8px; padding: 30px 28px;
    border-left: 4px solid transparent; transition: border-color 0.25s, background 0.25s;
  }
  .testi-card:hover { border-left-color: var(--yellow); background: white; box-shadow: 0 4px 24px rgba(21,63,115,0.08); }
  .testi-stars { color: var(--yellow); font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }
  .testi-text { font-size: 15px; color: var(--text); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
  .testi-meta { display: flex; align-items: center; gap: 12px; }
  .testi-av {
    width: 40px; height: 40px; border-radius: 50%; background: var(--navy);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 800; color: var(--yellow); flex-shrink: 0;
  }
  .testi-av.b { background: var(--blue); }
  .testi-av.c { background: var(--navy-deep); }
  .testi-name { font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 700; color: var(--navy); }
  .testi-trip { font-size: 12px; color: var(--gray-mid); margin-top: 1px; }

  /* ── EMOTION SECTION ─── */
  .emotion-section {
    background: linear-gradient(175deg, #0d2b4a 0%, var(--navy) 40%, #1a6090 80%, #2a80b8 100%);
    padding: 100px 0;
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    margin: -20px 0;
  }
  .emotion-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .emotion-text {}
  .emotion-heading { font-size: clamp(30px, 3.8vw, 48px); font-weight: 900; font-style: italic; color: white; line-height: 1.1; margin: 16px 0 20px; }
  .emotion-heading span { color: var(--yellow); }
  .emotion-body { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 36px; }
  .emotion-bullets { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
  .ebullet { display: flex; align-items: center; gap: 12px; font-size: 14px; color: rgba(255,255,255,0.75); }
  .ebullet::before { content: ''; width: 20px; height: 2px; background: var(--yellow); flex-shrink: 0; }

  /* Video placeholder */
  .video-box {
    position: relative; border-radius: 12px; overflow: hidden;
    aspect-ratio: 4/3; cursor: pointer;
    box-shadow: 0 24px 60px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,199,44,0.15);
    background: linear-gradient(135deg, #0a2040 0%, #1a5080 40%, #2a7090 70%, #0a3050 100%);
  }
  /* Road going off into distance */
  .video-road {
    position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 100%; z-index: 1;
  }
  /* Mountain layers */
  .video-mtn1 {
    position: absolute; bottom: 40%; left: 0; right: 0; height: 30%;
    background: linear-gradient(0deg, #1a4a2a 0%, transparent 100%);
    clip-path: polygon(0 100%, 0 50%, 10% 30%, 20% 50%, 30% 20%, 40% 45%, 50% 15%, 60% 40%, 70% 25%, 80% 45%, 90% 30%, 100% 45%, 100% 100%);
    z-index: 2;
  }
  .video-mtn2 {
    position: absolute; bottom: 35%; left: 0; right: 0; height: 30%;
    background: linear-gradient(0deg, #2a6a3a 0%, rgba(42,106,58,0.5) 100%);
    clip-path: polygon(0 100%, 0 70%, 8% 55%, 18% 70%, 27% 40%, 38% 60%, 48% 35%, 58% 55%, 67% 42%, 77% 58%, 87% 45%, 95% 55%, 100% 48%, 100% 100%);
    z-index: 3;
  }
  .video-sky { position: absolute; inset: 0; background: linear-gradient(180deg, #1a4a80 0%, #4a90c0 50%, #7ab4d8 70%, transparent 100%); z-index: 0; }
  .video-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.5) 100%); z-index: 4; }
  .play-ring {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 5;
    width: 72px; height: 72px; border-radius: 50%;
    background: var(--yellow); display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 0 12px rgba(255,199,44,0.2), 0 8px 30px rgba(255,199,44,0.4);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .video-box:hover .play-ring { transform: translate(-50%,-50%) scale(1.1); box-shadow: 0 0 0 18px rgba(255,199,44,0.15), 0 12px 40px rgba(255,199,44,0.5); }
  .play-ring svg { width: 26px; height: 26px; fill: var(--navy); margin-left: 4px; }
  .video-label { position: absolute; bottom: 20px; left: 22px; right: 22px; z-index: 5; }
  .video-label-main { font-family: 'Montserrat', sans-serif; font-size: 19px; font-weight: 900; font-style: italic; color: white; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
  .video-label-sub { font-family: 'Montserrat', sans-serif; font-size: 11px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 4px; }

  /* ── REGIONS ─── */
  .regions-section { padding: 96px 0; background: var(--gray-lt); }
  .regions-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; }
  .regions-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .region-card { border-radius: 8px; overflow: hidden; position: relative; cursor: pointer; aspect-ratio: 3/4; transition: transform 0.25s; }
  .region-card:hover { transform: scale(1.02); }
  .region-card:hover .region-arrow-icon { background: var(--yellow); color: var(--navy); }

  .region-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
  .r-alps   { background-image: url('images/region-alpen.jpg');      background-color:#2a5870; }
  .r-med    { background-image: url('images/region-mittelmeer.jpg'); background-color:#1a5890; }
  .r-africa { background-image: url('images/region-nordafrika.jpg'); background-color:#8a5030; }
  .r-east   { background-image: url('images/region-osteuropa.jpg');  background-color:#2a6880; }

  .region-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.72) 100%); z-index: 1; }
  .region-arrow-icon {
    position: absolute; top: 14px; right: 14px; z-index: 3;
    width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center; font-size: 14px; color: white;
    transition: background 0.2s, color 0.2s; backdrop-filter: blur(4px);
  }
  .region-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 22px 18px; z-index: 2; }
  .region-emoji { font-size: 26px; margin-bottom: 8px; }
  .region-title { font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: 900; font-style: italic; color: white; margin-bottom: 4px; }
  .region-count { font-family: 'Montserrat', sans-serif; font-size: 11px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.8px; }

  /* ── TEAM ─── */
  .team-section { padding: 96px 0; background: white; }
  .team-grid { display: grid; grid-template-columns: 5fr 6fr; gap: 80px; align-items: center; }
  .team-visual { position: relative; }
  .team-photo-wrap {
    border-radius: 10px; overflow: hidden; aspect-ratio: 4/3;
    background-color: var(--navy-dark);
    position: relative;
  }
  .team-photo-wrap .ralf-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center 15%;
    display: block;
  }
  /* Subtle diagonal stripe */
  .team-photo-wrap::before { content:''; position:absolute; top:-50%; right:-20%; width:60%; height:200%; background:rgba(255,199,44,0.05); transform:skewX(-12deg); z-index:1; }
  .team-photo-inner { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; flex-direction:column; gap:10px; z-index:2; }
  .team-av { width:90px; height:90px; border-radius:50%; background:var(--yellow); display:flex; align-items:center; justify-content:center; font-family:'Montserrat',sans-serif; font-size:28px; font-weight:900; font-style:italic; color:var(--navy); box-shadow:0 4px 20px rgba(255,199,44,0.4); }
  .team-av-name { font-family:'Montserrat',sans-serif; font-size:18px; font-weight:700; font-style:italic; color:white; }
  .team-av-role { font-size:12px; color:rgba(255,255,255,0.55); }
  .team-badge-pill {
    position:absolute; bottom:20px; right:20px; z-index:3;
    background:var(--yellow); padding:10px 18px; border-radius:4px;
    font-family:'Montserrat',sans-serif; font-size:12px; font-weight:800; color:var(--navy-dark);
  }

  /* Guide bubbles row */
  .guide-row { display:flex; align-items:center; margin-top:28px; }
  .guide-bubble {
    width:42px; height:42px; border-radius:50%; border:3px solid white;
    background: var(--navy); margin-right:-10px; display:flex; align-items:center;
    justify-content:center; font-family:'Montserrat',sans-serif; font-size:12px;
    font-weight:800; font-style:italic; color:var(--yellow); flex-shrink:0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  }
  .guide-bubble.more { background:var(--yellow); color:var(--navy); font-size:11px; }
  .guide-text { font-size:13px; color:var(--gray-mid); margin-left:22px; }

  .team-text .quote-block {
    border-left: 4px solid var(--yellow); padding: 16px 0 16px 24px; margin: 28px 0;
    font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 600;
    font-style: italic; color: var(--navy); line-height: 1.6;
  }
  .quote-source { font-size: 12px; font-style: normal; font-weight: 700; color: var(--blue); margin-top: 8px; display: block; }

  /* ── URGENCY ─── */
  .urgency-bar {
    background: var(--yellow); padding: 40px 0;
  }
  .urgency-row { display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap; }
  .urgency-left h3 { font-family:'Montserrat',sans-serif; font-size:clamp(18px,2.5vw,26px); font-weight:900; font-style:italic; color:var(--navy); margin-bottom:4px; }
  .urgency-left p { font-size:14px; color:rgba(21,63,115,0.7); }
  .urgency-spots { display:flex; gap:12px; }
  .spot {
    background:rgba(21,63,115,0.1); border:1px solid rgba(21,63,115,0.15);
    border-radius:6px; padding:14px 18px; text-align:center; min-width:130px;
  }
  .spot-name { font-family:'Montserrat',sans-serif; font-size:11px; font-weight:700; color:var(--navy); margin-bottom:2px; }
  .spot-n { font-family:'Montserrat',sans-serif; font-size:26px; font-weight:900; font-style:italic; color:var(--navy-dark); line-height:1; }
  .spot-sub { font-size:10px; color:rgba(21,63,115,0.6); text-transform:uppercase; letter-spacing:0.5px; margin-top:2px; }

  /* ── FINAL CTA ─── */
  .final-section {
    background: linear-gradient(175deg, var(--navy-deep) 0%, var(--navy) 60%, #1a5a8a 100%);
    padding: 100px 0; text-align: center; position: relative; overflow: hidden;
  }
  .final-glow { position:absolute; bottom:-100px; left:50%; transform:translateX(-50%); width:600px; height:300px; background:radial-gradient(ellipse, rgba(255,199,44,0.08) 0%, transparent 70%); border-radius:50%; }
  .final-section .container { position:relative; z-index:2; }
  .final-section h2 { font-size:clamp(34px,5vw,62px); font-weight:900; font-style:italic; color:white; line-height:1.0; margin:16px 0 20px; letter-spacing:-1px; }
  .final-section h2 span { color:var(--yellow); }
  .final-section p { font-size:18px; color:rgba(255,255,255,0.65); max-width:520px; margin:0 auto 52px; line-height:1.7; }
  .final-btns { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; margin-bottom:56px; }
  .contact-strip { display:flex; gap:40px; justify-content:center; flex-wrap:wrap; padding-top:40px; border-top:1px solid rgba(255,255,255,0.1); }
  .cstrip-item { display:flex; align-items:center; gap:14px; }
  .cstrip-icon { width:48px; height:48px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:20px; flex-shrink:0; }
  .ci-phone { background:rgba(255,199,44,0.1); }
  .ci-wa { background:#25D366; }
  .ci-mail { background:rgba(255,255,255,0.08); }
  .cstrip-label { font-family:'Montserrat',sans-serif; font-size:11px; color:rgba(255,255,255,0.4); text-transform:uppercase; letter-spacing:0.8px; }
  .cstrip-val { font-family:'Montserrat',sans-serif; font-size:15px; font-weight:700; color:white; margin-top:2px; }

  /* ── FOOTER ─── */
  footer { background:var(--navy-deep); padding:64px 0 32px; }
  .footer-grid { display:grid; grid-template-columns:2.2fr 1fr 1fr 1fr; gap:48px; margin-bottom:48px; }
  .footer-brand-name { font-family:'Montserrat',sans-serif; font-size:20px; font-weight:900; font-style:italic; color:white; text-shadow:2px 2px 0 var(--yellow); }
  .footer-brand-sub { font-family:'Montserrat',sans-serif; font-size:9px; font-weight:700; letter-spacing:2.5px; text-transform:uppercase; color:rgba(255,255,255,0.35); margin-top:2px; }
  .footer-brand p { font-size:13px; color:rgba(255,255,255,0.35); line-height:1.7; max-width:240px; margin-top:12px; }
  .footer-social { display:flex; gap:8px; margin-top:20px; }
  .fsoc { width:36px; height:36px; border-radius:3px; background:rgba(255,255,255,0.06); display:flex; align-items:center; justify-content:center; font-family:'Montserrat',sans-serif; font-size:12px; font-weight:700; color:rgba(255,255,255,0.4); cursor:pointer; transition:background 0.2s,color 0.2s; }
  .fsoc:hover { background:var(--yellow); color:var(--navy); }
  .footer-col h4 { font-family:'Montserrat',sans-serif; font-size:10.5px; font-weight:800; text-transform:uppercase; letter-spacing:2px; color:rgba(255,199,44,0.8); margin-bottom:16px; }
  .footer-col ul { list-style:none; }
  .footer-col li { margin-bottom:9px; }
  .footer-col a { font-size:13px; color:rgba(255,255,255,0.38); transition:color 0.2s; }
  .footer-col a:hover { color:rgba(255,255,255,0.9); }
  .footer-bottom { padding-top:28px; border-top:1px solid rgba(255,255,255,0.06); display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:10px; }
  .footer-bottom p { font-size:12px; color:rgba(255,255,255,0.22); }

  /* ── WA FLOAT ─── */
  .wa-float {
    position:fixed; bottom:28px; right:28px; z-index:999;
    width:58px; height:58px; background:#25D366; border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    box-shadow:0 4px 20px rgba(37,211,102,0.45); cursor:pointer;
    transition:transform 0.2s,box-shadow 0.2s;
  }
  .wa-float:hover { transform:scale(1.1); box-shadow:0 8px 30px rgba(37,211,102,0.55); }
  .wa-float svg { width:30px; height:30px; fill:white; }
  .wa-tip {
    position:absolute; right:66px; background:var(--navy); color:white;
    font-family:'Montserrat',sans-serif; font-size:12px; font-weight:600;
    padding:7px 13px; border-radius:4px; white-space:nowrap;
    opacity:0; pointer-events:none; transition:opacity 0.2s;
    box-shadow:0 4px 12px rgba(0,0,0,0.25);
  }
  .wa-float:hover .wa-tip { opacity:1; }

  /* ── SCROLL STORY ─── */
  .scroll-story-outer { position:relative; height:280vh; }
  .scroll-sticky { position:sticky; top:0; height:100vh; overflow:hidden; display:flex; align-items:center; justify-content:center; }
  .ss-bg { position:absolute; inset:0; transition:background 0.7s ease; }
  .ss-progress-bar { position:absolute; top:0; left:0; height:4px; background:var(--yellow); z-index:20; transition:width 0.08s linear; width:0%; box-shadow:0 0 12px rgba(255,199,44,0.5); }
  .ss-progress-dots { position:absolute; bottom:36px; left:50%; transform:translateX(-50%); display:flex; gap:12px; z-index:20; }
  .ss-dot { width:10px; height:10px; border-radius:50%; background:rgba(255,255,255,0.2); border:2px solid rgba(255,255,255,0.15); transition:background 0.3s,transform 0.3s,border-color 0.3s; }
  .ss-dot.active { background:var(--yellow); border-color:var(--yellow); transform:scale(1.3); }
  .ss-panel { position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; padding:0 8%; opacity:0; transform:scale(0.96) translateY(20px); transition:opacity 0.5s ease,transform 0.5s ease; pointer-events:none; }
  .ss-panel.visible { opacity:1; transform:scale(1) translateY(0); pointer-events:auto; }
  .ss-chapter-num { font-family:'Montserrat',sans-serif; font-size:12px; font-weight:800; text-transform:uppercase; letter-spacing:4px; color:rgba(255,199,44,0.6); margin-bottom:20px; }
  .ss-big-num { font-family:'Montserrat',sans-serif; font-size:clamp(100px,18vw,220px); font-weight:900; font-style:italic; color:white; line-height:0.85; letter-spacing:-6px; margin-bottom:0; text-shadow:0 4px 60px rgba(0,0,0,0.3); }
  .ss-big-num span { color:var(--yellow); }
  .ss-divider { width:64px; height:3px; background:var(--yellow); margin:24px auto; border-radius:2px; }
  .ss-title { font-family:'Montserrat',sans-serif; font-size:clamp(20px,2.8vw,36px); font-weight:800; font-style:italic; color:white; line-height:1.2; margin-bottom:16px; max-width:600px; }
  .ss-desc { font-size:17px; color:rgba(255,255,255,0.45); line-height:1.8; max-width:560px; }
  /* ── PROTOTYPE NOTE ─── */
  .proto-note {
    position:fixed; bottom:28px; left:28px; z-index:999;
    background:var(--navy-deep); color:white; padding:10px 16px; border-radius:6px;
    font-family:'Montserrat',sans-serif; font-size:11px; line-height:1.5;
    box-shadow:0 4px 20px rgba(0,0,0,0.35); max-width:200px;
    border-left:3px solid var(--yellow);
  }
  .proto-note strong { color:var(--yellow); display:block; font-size:12px; margin-bottom:2px; }

  /* ── RESPONSIVE ─── */
  @media (max-width:1024px) {
    .values-grid { grid-template-columns:repeat(2,1fr); }
    .tours-grid { grid-template-columns:repeat(2,1fr); }
    .testi-layout { grid-template-columns:1fr; gap:40px; }
    .emotion-inner { grid-template-columns:1fr; gap:48px; }
    .team-grid { grid-template-columns:1fr; }
    .footer-grid { grid-template-columns:1fr 1fr; }
    .regions-grid { grid-template-columns:repeat(2,1fr); }
  }
  @media (max-width:768px) {
    nav { display:none; }
    .topbar-left { display:none; }
    .tours-intro,.regions-head { flex-direction:column; align-items:flex-start; gap:16px; }
    .urgency-row { flex-direction:column; text-align:center; }
    .urgency-spots { justify-content:center; }
    .tours-grid { grid-template-columns:1fr; }
    .final-btns,.contact-strip { flex-direction:column; align-items:center; }
  }

  /* ── EXTRA: HERO TWO-COLUMN LAYOUT (current index.html refinement) ── */
  .hero-content { display: flex; gap: 64px; align-items: flex-end; max-width: 1140px; }
  .hero-left { flex: 1.35; min-width: 0; }
  .hero-right { flex: 1; }
  .hero-book-btn {
    display: inline-flex; align-items: center; gap: 8px; font-family: 'Montserrat', sans-serif;
    font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
    color: var(--yellow); margin-bottom: 22px; padding-bottom: 5px;
    border-bottom: 1px solid rgba(255,199,44,0.3); transition: gap 0.2s, color 0.2s;
  }
  .hero-book-btn:hover { gap: 14px; color: white; }
  .hero-book-btn .arrow { transition: transform 0.2s; }
  .hero-right .hero-trust {
    display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
    border-top: none; padding-top: 0;
    background: rgba(255,255,255,0.06); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.12); border-radius: 12px; padding: 32px;
  }
  .hero-right .hero-trust-item { padding: 0; }
  .hero-right .hero-trust-item + .hero-trust-item { border-left: none; padding-left: 0; }
  @media (max-width: 1024px) {
    .hero-content { flex-direction: column; align-items: stretch; gap: 36px; }
  }

  /* ── EXTRA: VALUE PROPS — DARK VARIANT (current index.html refinement) ── */
  .values-section {
    padding: 96px 0;
    background: linear-gradient(175deg, var(--navy-deep) 0%, var(--navy) 100%);
    clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
    margin: -20px 0;
  }
  .values-heading { color: white; }
  .values-heading .yellow { color: var(--yellow); }
  .values-grid { background: rgba(255,255,255,0.07); }
  .value-tile { background: rgba(13,38,71,0.55); }
  .value-tile:hover { background: rgba(255,255,255,0.05); }
  .value-icon-wrap {
    width: 56px; height: 56px; border-radius: 10px;
    background: rgba(255,199,44,0.1); display: flex; align-items: center; justify-content: center;
    font-size: 26px; margin-bottom: 22px; transition: background 0.25s;
  }
  .value-tile:hover .value-icon-wrap { background: rgba(255,199,44,0.18); }
  .value-title { color: white; }
  .value-body { color: rgba(255,255,255,0.5); }

  /* ── EXTRA: SCROLL STORY DECORATIONS ── */
  .ss-ghost-num {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    font-family: 'Montserrat', sans-serif; font-size: clamp(280px, 38vw, 580px);
    font-weight: 900; font-style: italic; color: rgba(255,255,255,0.025);
    line-height: 1; z-index: 0; pointer-events: none; white-space: nowrap;
  }
  .ss-particle { position: absolute; border-radius: 50%; background: rgba(255,199,44,0.15); z-index: 1; }
  .ss-particle.p1 { width: 120px; height: 120px; top: 15%; left: 8%; }
  .ss-particle.p2 { width: 80px;  height: 80px;  top: 65%; left: 16%; }
  .ss-particle.p3 { width: 160px; height: 160px; bottom: 10%; right: 10%; }
  .ss-particle.p4 { width: 60px;  height: 60px;  top: 25%; right: 20%; }
  .ss-particle.p5 { width: 100px; height: 100px; bottom: 25%; left: 46%; }
  .ss-horizon {
    position: absolute; bottom: 18%; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,199,44,0.3) 50%, transparent);
    z-index: 1;
  }
  @keyframes float-y { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

  /* ── EXTRA: ZUFALLSGENERATOR MODAL ── */
  .gen-overlay {
    position: fixed; inset: 0; z-index: 1000;
    background: rgba(9,30,58,0.75); backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center; padding: 20px;
    opacity: 0; pointer-events: none; transition: opacity 0.25s;
  }
  .gen-overlay.open { opacity: 1; pointer-events: auto; }
  .gen-modal {
    background: white; border-radius: 12px; max-width: 520px; width: 100%;
    max-height: 85vh; overflow-y: auto; padding: 36px;
    transform: scale(0.95); transition: transform 0.25s;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  }
  .gen-overlay.open .gen-modal { transform: scale(1); }
  .gen-modal-head { position: relative; margin-bottom: 24px; }
  .gen-close-btn {
    position: absolute; top: -8px; right: -8px; width: 32px; height: 32px;
    border: none; border-radius: 50%; background: var(--gray-lt); color: var(--navy);
    font-size: 20px; line-height: 1; cursor: pointer; transition: background 0.2s;
  }
  .gen-close-btn:hover { background: var(--blue-lt); }
  .gen-modal-head h3 { font-family: 'Montserrat', sans-serif; font-size: 22px; font-weight: 900; font-style: italic; color: var(--navy); margin-bottom: 8px; padding-right: 30px; }
  .gen-modal-head p { font-size: 14px; color: var(--gray-mid); }
  .gen-progress { display: flex; gap: 6px; margin-top: 18px; }
  .gen-dot { width: 32px; height: 4px; border-radius: 2px; background: var(--blue-lt); transition: background 0.3s; }
  .gen-dot.done { background: var(--yellow); }
  .gen-options { display: flex; flex-direction: column; gap: 12px; }
  .gen-opt {
    display: flex; align-items: center; gap: 16px; padding: 18px;
    border: 1px solid var(--blue-lt); border-radius: 8px; cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
  }
  .gen-opt:hover { border-color: var(--yellow); background: var(--gray-lt); }
  .gen-opt-icon { font-size: 28px; flex-shrink: 0; }
  .gen-opt-text { font-weight: 700; color: var(--navy); font-size: 15px; }
  .gen-opt-sub { font-size: 12px; color: var(--gray-mid); margin-top: 2px; }
  .gen-back-btn, .gen-restart-btn {
    font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 700;
    padding: 10px 18px; border-radius: 4px; border: 1px solid var(--blue-lt);
    background: white; color: var(--navy); cursor: pointer; transition: background 0.2s;
  }
  .gen-back-btn:hover, .gen-restart-btn:hover { background: var(--gray-lt); }
  .gen-result-title { font-family: 'Montserrat', sans-serif; font-weight: 800; color: var(--navy); margin-bottom: 16px; font-size: 15px; }
  .gen-tour-card {
    display: flex; align-items: center; gap: 14px; padding: 16px;
    border: 1px solid var(--blue-lt); border-radius: 8px; margin-bottom: 10px;
    text-decoration: none; color: inherit; transition: border-color 0.2s, transform 0.2s;
  }
  .gen-tour-card:hover { border-color: var(--yellow); transform: translateX(4px); }
  .gen-tour-icon { font-size: 28px; }
  .gen-tour-name { font-weight: 800; color: var(--navy); font-style: italic; font-family: 'Montserrat', sans-serif; }
  .gen-tour-meta { font-size: 12px; color: var(--gray-mid); margin-top: 2px; }
  .gen-tour-price { margin-left: auto; font-family: 'Montserrat', sans-serif; font-weight: 900; color: var(--navy); font-style: italic; font-size: 16px; }
  .gen-footer { display: flex; justify-content: space-between; gap: 12px; margin-top: 20px; }
  .gen-body { min-height: 180px; }
  .gen-result { display: flex; flex-direction: column; gap: 0; }

  /* ── EXTRA: GENERATOR CTA (in TOURS section) ── */
  .gen-cta-wrap {
    display: flex; align-items: center; gap: 20px;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,199,44,0.2);
    border-radius: 10px; padding: 24px 28px; margin-top: 28px;
    flex-wrap: wrap; justify-content: center; text-align: left;
  }
  .gen-cta-icon { font-size: 36px; }
  .gen-cta-text h4 { font-family: 'Montserrat', sans-serif; color: white; font-size: 16px; font-weight: 800; margin-bottom: 4px; }
  .gen-cta-text p { font-size: 13px; color: rgba(255,255,255,0.5); }
  .gen-main-btn {
    font-family: 'Montserrat', sans-serif; font-weight: 800; background: var(--yellow);
    color: var(--navy-dark); border: none; padding: 14px 28px; border-radius: 4px;
    cursor: pointer; font-size: 13px; text-transform: uppercase; letter-spacing: 1px;
    transition: background 0.2s, transform 0.2s; white-space: nowrap;
  }
  .gen-main-btn:hover { background: white; transform: translateY(-2px); }

  /* ── EXTRA: HEADER SCROLL STATE + READING PROGRESS ── */
  .topbar { transition: margin-top 0.3s ease, opacity 0.3s ease; overflow: hidden; }
  .topbar.is-hidden { margin-top: -40px; opacity: 0; }
  .header { transition: box-shadow 0.3s; }
  .header.is-scrolled { box-shadow: 0 4px 30px rgba(21,63,115,0.18); }
  .header.is-scrolled .header-inner { padding: 11px 0; }
  .header::after {
    content: ''; position: absolute; left: 0; bottom: -3px; height: 3px;
    width: var(--read-pct, 0%); background: var(--yellow);
    transition: width 0.1s linear; z-index: 201;
  }

/* ── MOBILE NAVIGATION (Theme) ─── */
.mob-menu-btn {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 8px; background: none; border: none;
}
.mob-menu-btn span { display:block; width:22px; height:2px; background:var(--navy); border-radius:2px; transition:transform 0.25s,opacity 0.25s; }
.mob-menu-btn.active span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.mob-menu-btn.active span:nth-child(2) { opacity:0; }
.mob-menu-btn.active span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

@media (max-width:768px) {
  .mob-menu-btn { display:flex; }
  nav#primary-menu { display:none; }
  nav#primary-menu.open {
    display:flex; flex-direction:column; gap:4px;
    position:fixed; inset:0; top:64px; background:#fff; z-index:1100;
    padding:20px 16px; box-shadow:0 8px 32px rgba(0,0,0,0.15); overflow-y:auto;
  }
  nav#primary-menu.open a {
    font-size:15px; padding:13px 16px; border-radius:6px; border-bottom:1px solid var(--blue-lt);
  }
  .header-actions .header-phone { display:none; }
}

/* ── WORDPRESS CORE TWEAKS ─── */
.screen-reader-text { position:absolute !important; left:-9999px; }
img { max-width:100%; height:auto; }
.alignfull {
  width: auto;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
