:root {
  --ink: #202124;
  --muted: #5f6368;
  --line: #e3e3e3;
  --paper: #fff;
  --surface: #f8f7f6;
  --surface-warm: #faf3f1;
  --accent: #c2401f;
  --accent-dark: #963016;
  --accent-soft: #f7e7e2;
  --primary-gradient: linear-gradient(89.58deg, #cc4c2a 49.9%, #c2401f 50.14%, #b94a2c 72.225%, #cc4c2a 99.775%);
  --icon: #3c4043;
  --content: 1280px;
  --text: 760px;
  --radius: 28px;
  --radius-large: 36px;
  --space-card: clamp(24px, 3vw, 32px);
  --space-content: clamp(32px, 4vw, 48px);
  --space-section: clamp(80px, 9vw, 128px);
}

@view-transition { navigation: auto; }
::view-transition-old(root) { animation: none; opacity: 0; }
::view-transition-new(root) { animation: none; opacity: 1; }
::view-transition-group(tour-image-merlins-world),
::view-transition-group(tour-image-kangaroo-jump),
::view-transition-group(tour-image-kobelache-intensiv),
::view-transition-group(tour-image-canyoning-tessin) { animation-duration: 420ms; animation-timing-function: cubic-bezier(.2, 0, 0, 1); }
::view-transition-old(tour-image-merlins-world),
::view-transition-new(tour-image-merlins-world),
::view-transition-old(tour-image-kangaroo-jump),
::view-transition-new(tour-image-kangaroo-jump),
::view-transition-old(tour-image-kobelache-intensiv),
::view-transition-new(tour-image-kobelache-intensiv),
::view-transition-old(tour-image-canyoning-tessin),
::view-transition-new(tour-image-canyoning-tessin) { animation: none; }

@media (prefers-reduced-motion: reduce) {
  @view-transition { navigation: none; }
}

*, *::before, *::after { box-sizing: border-box; }
html { max-width: 100%; overflow-x: hidden; overflow-x: clip; overscroll-behavior-x: none; scroll-behavior: smooth; }
body { max-width: 100%; margin: 0; overflow-x: clip; overscroll-behavior-x: none; color: var(--ink); background: var(--paper); font-family: Arial, "Segoe UI", sans-serif; font-size: 17px; line-height: 1.6; text-rendering: optimizeLegibility; }
img, svg { max-width: 100%; }
a { color: var(--ink); overflow-wrap: break-word; text-decoration-color: #a8aaad; text-decoration-thickness: 1px; text-underline-offset: .2em; }
a:hover { color: var(--accent); }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }
.skip-link { position: fixed; z-index: 1000; top: 8px; left: 8px; transform: translateY(-150%); padding: 10px 16px; border-radius: 999px; color: white; background: var(--ink); }
.skip-link:focus { transform: none; }

/* Header and direct subpage navigation */
.site-header { position: sticky; z-index: 50; top: 0; border-bottom: 1px solid var(--line); background: rgb(255 255 255 / .94); backdrop-filter: blur(18px) saturate(140%); }
.nav-shell { display: flex; width: min(calc(100% - 40px), var(--content)); min-height: 74px; margin-inline: auto; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 10px; color: var(--ink); font-size: 16px; font-weight: 700; line-height: 1.08; letter-spacing: -.02em; text-decoration: none; }
.brand img { display: block; width: auto; height: 38px; transform: translateY(-2px); }
.desktop-nav { display: flex; align-items: center; gap: 6px; }
.desktop-nav > a, .nav-group-link { display: inline-flex; min-height: 44px; padding: 0 13px; align-items: center; gap: 9px; border-radius: 999px; color: #3c4043; font-size: 14px; font-weight: 600; text-decoration: none; }
.desktop-nav > a:hover, .nav-group:hover > .nav-group-link, .nav-group:focus-within > .nav-group-link, .desktop-nav [aria-current="page"] { color: var(--accent); background: var(--accent-soft); }
.desktop-nav .nav-cta { min-height: 46px; margin-left: 8px; padding-inline: 21px; color: white; background: var(--accent); }
.desktop-nav .nav-cta:hover { color: white; background: var(--accent-dark); }
.nav-group { position: relative; }
.nav-group::before { position: absolute; z-index: 0; top: 100%; left: -16px; width: 392px; height: 15px; content: ""; }
.nav-chevron { width: 8px; height: 8px; margin-top: -4px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); transition: transform 180ms ease; }
.nav-group:hover .nav-chevron, .nav-group:focus-within .nav-chevron { transform: translateY(3px) rotate(225deg); }
.mega-menu { position: absolute; z-index: 1; top: calc(100% + 10px); left: 0; display: grid; visibility: hidden; width: 360px; padding: 8px; grid-template-columns: 1fr; gap: 0; transform: translateY(-8px); border: 1px solid #dadce0; border-radius: 16px; opacity: 0; background: white; box-shadow: 0 4px 14px rgb(60 64 67 / .18), 0 8px 20px rgb(60 64 67 / .1); transition: opacity 180ms ease, transform 180ms ease, visibility 180ms; }
.mega-menu-small { right: 0; left: auto; width: 360px; }
.nav-group:hover .mega-menu, .nav-group:focus-within .mega-menu { visibility: visible; transform: none; opacity: 1; }
.mega-label { margin: 0; padding: 10px 12px 8px; color: #5f6368; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.mega-menu a { display: grid; padding: 11px 12px; gap: 2px; border-radius: 10px; text-decoration: none; transition: background-color 150ms ease; }
.mega-menu a + a { border-top: 1px solid #f1f3f4; }
.mega-menu a:hover, .mega-menu a:focus-visible { color: var(--ink); background: #f8f9fa; }
.mega-menu strong { font-size: 14px; letter-spacing: -.01em; }
.mega-menu span { color: #5f6368; font-size: 13px; font-weight: 400; line-height: 1.35; }
.mobile-nav, .mobile-parent-link, .mobile-menu-backdrop { display: none; }

/* Page rhythm */
.site-main { width: min(calc(100% - 40px), var(--content)); margin-inline: auto; padding: clamp(72px, 9vw, 128px) 0 120px; }
.site-main > article { margin-inline: auto; }
h1, h2, h3 { margin: 0; color: var(--ink); font-weight: 500; line-height: 1.08; letter-spacing: -.045em; text-wrap: balance; hyphens: none; overflow-wrap: break-word; }
h1 { max-width: 1080px; margin-inline: auto; font-size: clamp(48px, 6.2vw, 84px); text-align: center; }
h2 { max-width: none; margin-top: var(--space-section); font-size: clamp(36px, 4.5vw, 58px); }
h3 { margin-top: var(--space-card); font-size: clamp(23px, 2.4vw, 30px); letter-spacing: -.025em; }
p, li, dd { color: #4a4d50; }
.site-main > p, .site-main > article > p, .site-main > article > ul, .site-main > article > ol, .site-main > article > dl, .site-main > ul, .site-main > ol, .site-main > dl, .site-main > h3, .site-main > article > h2, .site-main > article > h3 { max-width: none; }
.site-main > :is(p, ul, ol, dl), .site-main > article > :is(p, ul, ol, dl) { margin-block: 0; }
.site-main > :is(h2, h3) + :is(p, ul, ol, dl), .site-main > article > :is(h2, h3) + :is(p, ul, ol, dl) { margin-top: var(--space-card); }
.site-main > :is(p, ul, ol, dl) + :is(p, ul, ol, dl), .site-main > article > :is(p, ul, ol, dl) + :is(p, ul, ol, dl) { margin-top: var(--space-card); }
.site-main > article > h2 { margin-top: var(--space-content); }
.site-main > article > h2:first-child { margin-top: 0; }
.site-main > h1 + p, .site-main > article > h1 + p { max-width: 820px; margin: 28px auto 0; color: var(--muted); font-size: clamp(19px, 2vw, 23px); line-height: 1.55; text-align: center; }
.site-main > h1 ~ p:first-of-type + p, .site-main > h1 ~ p:first-of-type + p + p { margin-inline: auto; text-align: center; }
.site-main p > a:only-child:not(.inline-link), .site-main p > a:first-child:last-of-type:not(.inline-link), .site-main button, .tour-plan header > a { display: inline-flex; min-height: 50px; padding: 12px 22px; align-items: center; justify-content: center; border: 1px solid var(--accent); border-radius: 999px; color: white; background: var(--accent); font: inherit; font-size: 15px; font-weight: 700; line-height: 1.25; text-align: center; text-decoration: none; transition: background 160ms ease, border-color 160ms ease; }
.site-main p > a:only-child:not(.inline-link):hover, .site-main p > a:first-child:last-of-type:not(.inline-link):hover, .site-main button:hover, .tour-plan header > a:hover { color: white; border-color: var(--accent-dark); background: var(--accent-dark); }
.site-main > figure, .site-main > article > figure { margin: var(--space-content) 0 0; }
figure { margin: 0; overflow: hidden; border-radius: var(--radius-large); background: var(--surface); }
figure picture, figure img { display: block; width: 100%; }
figure img { height: auto; }
.hero-media,
.site-main > figure.media-card,
.site-main > article > figure.media-card:not(.media-story) { aspect-ratio: 4 / 3; }
.hero-media picture,
.site-main > figure.media-card picture,
.site-main > article > figure.media-card:not(.media-story) picture { height: 100%; }
.hero-media img,
.site-main > figure.media-card img,
.site-main > article > figure.media-card:not(.media-story) img { height: 100%; object-fit: cover; }
figcaption { padding: 13px 20px; color: var(--muted); font-size: 13px; }
.media-story { display: grid; min-height: 360px; grid-template-columns: 1fr 1fr; background: var(--surface); }
.media-story picture { height: 100%; }
.media-story picture img { height: 100%; object-fit: cover; }
.media-story figcaption { display: flex; padding: clamp(32px, 5vw, 64px); align-items: center; color: var(--ink); font-size: clamp(21px, 2.4vw, 31px); font-weight: 500; line-height: 1.2; letter-spacing: -.025em; }
[data-reveal] { transform: translateY(14px); opacity: 0; transition: opacity 550ms ease, transform 550ms cubic-bezier(.2,.75,.25,1); }
[data-reveal].is-visible { transform: none; opacity: 1; }
section { margin-top: var(--space-section); }
section > h2:first-child { margin-top: 0; }
section > :is(p, ul, ol, dl) { margin-block: 0; }
section > h2 + :is(p, ul, ol, dl) { margin-top: var(--space-card); }
section > :is(p, ul, ol, dl) + :is(p, ul, ol, dl) { margin-top: var(--space-card); }

/* Open feature lists, no card inside card */
section:has(> article) { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0 36px; }
section:has(> article) > h2, section:has(> article) > p { grid-column: 1 / -1; }
section > article { padding: var(--space-card) 0; border-top: 1px solid var(--line); }
section > article h3 { margin-top: 0; }
section > article p { margin: var(--space-card) 0 0; }
dl { margin: var(--space-card) 0; }
.site-main > dl, .site-main > article > dl:not(.tour-plan dl) { display: grid; grid-template-columns: 180px minmax(0,1fr); border-top: 1px solid var(--line); }
.site-main > dl dt, .site-main > dl dd, .site-main > article > dl:not(.tour-plan dl) dt, .site-main > article > dl:not(.tour-plan dl) dd { margin: 0; padding: 18px 0; border-bottom: 1px solid var(--line); }
dt { color: var(--ink); font-weight: 700; }
ul, ol { padding-left: 1.35em; }
li { margin-block: .55em; padding-left: .35em; }
.included-list { padding-left: 0; list-style: none; }
.included-list li { position: relative; min-height: 34px; padding-left: 46px; }
.included-list li::before { position: absolute; top: .15em; left: 0; width: 30px; height: 30px; content: ""; background: url("/assets/icons/included.png") center / contain no-repeat; }
.packing-list { display: grid; counter-reset: packing-step; margin: var(--space-card) 0 0; padding: 0; list-style: none; }
.packing-list li { display: grid; counter-increment: packing-step; min-width: 0; margin: 0; padding: 0 0 28px; grid-template-columns: 104px minmax(0, 1fr); align-items: center; gap: 28px; }
.packing-list li + li { padding-top: 28px; }
.packing-list li::before { display: grid; width: 104px; height: 104px; align-items: center; justify-content: center; border-radius: 28px; color: white; background: var(--accent); font-size: 50px; font-weight: 400; line-height: 1; content: counter(packing-step); }
.packing-list h3 { margin: 0; color: #202124; font-size: 24px; font-weight: 600; letter-spacing: -.02em; line-height: 1.2; }
.packing-list p { margin: 8px 0 0; color: #5f6368; font-size: 17px; line-height: 1.45; }
.packing-list-action { margin: 24px 0 0; }
table { width: 100%; border-spacing: 0; border-collapse: collapse; }
caption { padding-bottom: 18px; color: var(--muted); text-align: left; }
th, td { padding: 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
form { max-width: 760px; margin: var(--space-content) auto 0; padding: clamp(26px,5vw,50px); border-radius: var(--radius-large); background: var(--surface); }
form p { margin: 0 0 22px; }
label { color: var(--ink); font-size: 14px; font-weight: 700; }
input, select, textarea { width: 100%; margin-top: 7px; padding: 14px 15px; border: 1px solid #bdc1c6; border-radius: 12px; color: var(--ink); background: white; font: inherit; }
textarea { resize: vertical; }
.guide-profile { display: grid; margin-top: var(--space-section); grid-template-columns: minmax(260px, .86fr) minmax(0, 1.14fr); align-items: center; gap: clamp(40px, 6vw, 96px); }
.guide-profile-copy { max-width: 510px; }
.guide-profile-copy h2 { margin-top: 12px; }
.guide-profile-copy p:last-child { margin: 22px 0 0; font-size: 18px; }
.guide-role { margin: 0; color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.guide-gallery { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(124px, .85fr); gap: 14px; }
.guide-gallery figure { margin: 0; background: var(--surface); }
.guide-gallery picture, .guide-gallery img { display: block; width: 100%; height: 100%; }
.guide-gallery img { object-fit: cover; }
.guide-gallery-main { aspect-ratio: 4 / 5; }
.guide-gallery-details { display: grid; min-width: 0; grid-template-rows: repeat(2, 1fr); gap: 14px; }
.guide-gallery-details figure { min-height: 0; }
.guide-profile-reverse { grid-template-columns: minmax(0, 1.14fr) minmax(260px, .86fr); }
.guide-profile-reverse .guide-gallery { grid-column: 1; grid-row: 1; }
.guide-profile-reverse .guide-profile-copy { grid-column: 2; grid-row: 1; justify-self: end; }
.guide-association-logo { display: flex; max-width: 760px; margin-top: var(--space-section); padding-top: var(--space-card); align-items: center; gap: 24px; border-top: 1px solid var(--line); }
.guide-association-logo img { width: 88px; min-width: 88px; height: auto; }
.guide-association-logo p { min-width: 0; }

/* Tour detail pages */
.page-tour-detail .site-main { padding-top: clamp(56px, 7vw, 96px); }
.tour-hero { margin-top: 0; text-align: center; }
.tour-hero-copy { max-width: 880px; margin-inline: auto; }
.tour-hero h1 { max-width: 980px; }
.tour-hero-lead { max-width: 760px; margin: 28px auto 0; color: var(--muted); font-size: clamp(19px, 2vw, 23px); line-height: 1.55; }
.tour-hero-media { margin: clamp(46px, 6vw, 76px) 0 0; aspect-ratio: 16 / 9; }
.tour-hero-media picture, .tour-hero-media img { display: block; width: 100%; height: 100%; }
.tour-hero-media img { object-fit: cover; object-position: center 54%; }
.tour-section-heading { max-width: 900px; }
.tour-section-heading h2, .tour-story h2, .tour-cta h2 { margin-top: 0; }
.tour-section-heading > p:last-child { max-width: 760px; margin: 22px 0 0; font-size: 18px; }
.tour-facts-section { margin-top: var(--space-section); }
.tour-facts { display: grid; margin: var(--space-content) 0 0; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.tour-facts > div { display: grid; min-height: 120px; padding: 26px 22px; grid-template-columns: 32px minmax(0, 1fr); align-items: center; gap: 16px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.tour-facts > div:nth-child(3n) { border-right: 0; }
.tour-facts img { width: 30px; height: 30px; object-fit: contain; }
.tour-facts dt { color: var(--ink); font-size: 16px; font-weight: 700; line-height: 1.3; }
.tour-facts dd { margin: 4px 0 0; color: var(--muted); font-size: 16px; line-height: 1.35; }
.tour-facts-note { margin: 18px 0 0; color: var(--muted); font-size: 15px; }
.tour-story { display: grid; overflow: hidden; min-height: 520px; margin-top: var(--space-section); grid-template-columns: 1fr 1fr; border-radius: var(--radius-large); background: var(--surface); }
.tour-story > figure { min-height: 100%; margin: 0; border-radius: 0; }
.tour-story > figure picture, .tour-story > figure img { display: block; width: 100%; height: 100%; }
.tour-story > figure img { object-fit: cover; }
.tour-story > div { display: flex; padding: clamp(36px, 5vw, 72px); flex-direction: column; justify-content: center; }
.tour-story > div > p:not(.eyebrow) { margin: 20px 0 0; font-size: 18px; }
.tour-story > div > p:not(.eyebrow) + p:not(.eyebrow) { margin-top: 18px; }
.tour-story-reverse > figure { grid-column: 2; grid-row: 1; }
.tour-story-reverse > div { grid-column: 1; grid-row: 1; }
.tour-story-reverse > figure img { object-position: center 62%; }
.tour-story-adrenaline { min-height: 0; aspect-ratio: 8 / 3; }
.tour-card-journey { margin-top: var(--space-section); }
.tour-card-journey .benefit-card { width: min(410px, calc(100vw - 64px)); min-width: min(410px, calc(100vw - 64px)); height: 488px; grid-template-columns: 1fr; grid-template-rows: 58% 42%; }
.tour-card-journey .benefit-card > picture { height: 100%; grid-column: 1; grid-row: 1; border-radius: 20px 20px 0 0; }
.tour-card-journey .benefit-card > div { padding: 24px 26px 28px; grid-column: 1; grid-row: 2; justify-content: center; }
.tour-card-journey .benefit-card h3 { margin-bottom: 8px; }
.tour-card-journey .benefit-card p { font-size: 15px; }
.tour-cta { display: grid; margin-top: var(--space-section); padding-top: var(--space-section); grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 40px; border-top: 1px solid var(--line); }
.tour-cta > div:first-child { max-width: 760px; }
.tour-cta > div:first-child > p:last-child { margin: 22px 0 0; font-size: 18px; }
.tour-cta .hero-actions { margin: 0; justify-content: flex-end; }

/* Home */
.page-home .site-main { padding-top: clamp(64px,8vw,108px); }
.page-home .hero { margin-top: 0; text-align: center; }
.eyebrow { display: inline-flex; margin: 0 0 22px; padding: 8px 14px; border-radius: 999px; color: var(--accent-dark); background: var(--accent-soft); font-size: 13px; font-weight: 700; }
.page-home .hero .lead { max-width: 780px; margin: 28px auto 0; color: var(--muted); font-size: clamp(19px,2vw,23px); }
.hero-actions { display: flex; margin-top: 30px; justify-content: center; gap: 12px; }
.hero-actions a { display: inline-flex; min-height: 52px; padding: 13px 24px; align-items: center; border: 1px solid var(--line); border-radius: 999px; font-size: 15px; font-weight: 700; text-decoration: none; }
.hero-actions a:first-child { color: white; border-color: var(--accent); background: var(--accent); }
.hero-actions a:first-child:hover { border-color: var(--accent-dark); background: var(--accent-dark); }
.hero-media { position: relative; margin-top: clamp(50px,7vw,78px); }
.trust-strip { display: grid; margin-top: 26px; padding-block: 18px; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-strip div { padding: 0 22px; border-right: 1px solid var(--line); }
.trust-strip div:last-child { border-right: 0; }
.trust-strip strong, .trust-strip span { display: block; }
.trust-strip span { margin-top: 3px; color: var(--muted); font-size: 13px; }
.app-proof { display: grid; width: min(100%, 900px); margin: calc(var(--space-content) + 14px) auto 0; padding: var(--space-card) clamp(28px,4vw,40px); align-items: center; grid-template-columns: repeat(2,minmax(0,1fr)); overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); text-align: left; }
.app-proof-copy { padding-bottom: 0; }
.app-proof .eyebrow { margin-bottom: 14px; color: var(--muted); background: #efefed; }
.app-proof-label { display: flex; margin-bottom: 14px; align-items: center; gap: 8px; }
.app-proof-label .eyebrow { margin-bottom: 0; }
.app-proof-label img { display: block; width: 28px; height: 28px; }
.app-proof h2 { max-width: 560px; margin: 0; font-size: clamp(25px,3vw,34px); text-align: left; }
.app-proof-copy > p:not(.eyebrow) { max-width: 560px; margin: 14px 0 16px; color: var(--muted); font-size: 16px; }
.app-proof-visual { display: grid; width: 148px; margin: 0; align-self: center; justify-items: center; justify-self: center; gap: 14px; }
.app-phone { display: block; width: 142px; }
.app-phone img { display: block; width: 100%; height: auto; }
.app-store-icons { display: flex; width: 100%; align-items: center; justify-content: center; gap: 20px; transform: translateX(6px); }
.app-store-icons a { display: grid; width: 52px; height: 52px; place-items: center; border: 1px solid var(--ink); border-radius: 14px; background: white; line-height: 0; }
.app-store-icons img { display: block; width: 38px; height: 38px; }
.app-store-icons a:hover { opacity: .72; }
.page-home .hero + section { margin-top: var(--space-content); }
.page-home .hero + .benefit-journey { margin-top: max(0px, calc(var(--space-content) - var(--benefit-heading-offset, 0px))); }
.benefit-journey { display: block !important; margin-top: var(--space-section); touch-action: pan-y pinch-zoom; }
.benefit-scroll-scene { position: sticky; top: var(--benefit-scene-top, 74px); height: var(--benefit-scene-height, calc(100dvh - 74px)); overflow: visible; pointer-events: none; }
.benefit-scroll-scene > h2 { position: absolute; z-index: 2; top: var(--benefit-heading-top, 24px); left: 0; width: 100%; margin: 0; pointer-events: auto; }
.benefit-scroll-area { position: relative; pointer-events: none; }
.benefit-scroll-stage { position: absolute; top: var(--benefit-stage-top, 220px); right: 0; left: 0; overflow: visible; clip-path: inset(-28px); pointer-events: none; }
.benefit-track { display: flex; width: max-content; gap: 36px; will-change: transform; }
.benefit-card { position: relative; display: grid; width: min(620px, calc(100vw - 64px)); min-width: min(620px, calc(100vw - 64px)); height: 326px; padding: 0 !important; grid-template-columns: 1fr 1fr; overflow: visible; border: 0; border-radius: 20px; background: #f0f2f3; box-shadow: 0 10px 26px rgba(32, 33, 36, .10); pointer-events: auto; }
.benefit-card:nth-child(2n) { background: #cfd5d9; }
.benefit-card:nth-child(3n) { background: #e2e6e8; }
.benefit-card::before { display: none !important; }
.benefit-card > picture { min-width: 0; height: 100%; overflow: hidden; border-radius: 20px 0 0 20px; }
.benefit-card > picture img { display: block; width: 100%; height: 100%; object-fit: cover; }
.benefit-card:nth-child(6) > picture img { object-position: center 70%; }
.benefit-card > div { display: flex; min-width: 0; padding: 28px; flex-direction: column; align-items: flex-start; justify-content: center; }
.benefit-verified { position: absolute; z-index: 2; top: -22px; width: 44px; height: 44px; margin: 0; filter: drop-shadow(0 3px 7px rgb(32 33 36 / .14)); }
.benefit-card:nth-child(odd) .benefit-verified { right: -14px; }
.benefit-card:nth-child(even) .benefit-verified { left: -14px; }
.benefit-card:first-child .benefit-verified { right: -2px; }
@media (min-width: 981px) {
  .benefit-card .benefit-verified { right: -14px; left: auto; }
  .benefit-card:first-child .benefit-verified { right: -2px; }
}
.benefit-card h3 { margin: 0 0 10px; font-size: clamp(24px, 2.2vw, 31px); line-height: 1.1; }
.benefit-card p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.5; }
.google-reviews { margin-top: var(--space-section); }
.google-reviews-heading { max-width: none; }
.google-reviews-heading h2 { margin: 0; }
.jga-overview { margin-top: var(--space-section); }
.benefit-journey + .jga-overview { margin-top: calc(var(--space-section) - var(--benefit-exit-tail, 0px)); }
.jga-overview > h2 { margin: 0 0 var(--space-content); }
.jga-overview-grid { display: grid; overflow: hidden; grid-template-columns: repeat(3, minmax(0, 1fr)); border: 1px solid var(--line); border-radius: 20px; background: #f8f9fa; }
.jga-overview-item { display: grid; min-width: 0; padding: 26px 24px; grid-template-columns: 36px minmax(0, 1fr); align-items: start; gap: 14px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.jga-overview-item:nth-child(3n) { border-right: 0; }
.jga-overview-item:nth-last-child(-n + 3) { border-bottom: 0; }
.jga-overview-icon { display: block; width: 36px; height: 36px; fill: none; stroke: #3c4043; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.65; }
.jga-overview-euro { display: grid; place-items: center; color: #3c4043; font-family: Arial, "Segoe UI", sans-serif; font-size: 36px; font-weight: 500; line-height: 1; }
.jga-overview-item h3 { margin: 0; font-size: 16px; font-weight: 600; letter-spacing: -.015em; line-height: 1.25; }
.jga-overview-item p { margin: 7px 0 0; color: var(--muted); font-size: 14px; line-height: 1.48; }
.google-reviews-grid { --reviews-stick-top: 92px; --review-gap: 48px; position: relative; width: min(100%, 760px); margin: var(--space-content) auto 0; }
.review-stack-stage { position: sticky; top: var(--reviews-stick-top); overflow: visible; }
.review-stack-item { position: absolute; z-index: var(--review-index, 1); top: 0; left: 0; width: 100%; will-change: transform; }
.google-review { display: flex; min-height: 208px; padding: 22px; flex-direction: column; border: 1px solid #dadce0; border-radius: 12px; background: white; box-shadow: 0 4px 12px rgb(60 64 67 / .08); }
.google-review header { display: flex; align-items: center; gap: 13px; }
.review-avatar { display: grid; width: 40px; height: 40px; flex: 0 0 40px; place-items: center; border-radius: 50%; color: white; background: #5f6368; font-size: 16px; font-weight: 500; line-height: 1; }
.review-author { min-width: 0; }
.review-author h3 { margin: 0; color: #202124; font-size: 14px; font-weight: 500; letter-spacing: 0; line-height: 1.35; }
.review-profile { margin: 3px 0 0; color: #70757a; font-size: 12px; line-height: 1.4; }
.review-rating { display: flex; margin: 18px 0 0; align-items: center; gap: 9px; color: #70757a; font-size: 14px; line-height: 1.4; }
.review-stars { color: #f9ab00; font-size: 14px; letter-spacing: .06em; line-height: 1; }
.review-text { margin: 18px 0 0; color: #3c4043; font-size: 14px; line-height: 1.55; }
.review-likes { display: flex; margin: auto 0 0; padding-top: 26px; align-items: center; gap: 9px; color: #202124; font-size: 14px; font-weight: 500; line-height: 1; }
.review-like-icon { display: block; width: 22px; height: 22px; }
.review-like-icon svg { display: block; width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }
.page-home main > ul { display: grid; max-width: none; padding: 0; grid-template-columns: repeat(2,1fr); column-gap: 48px; list-style: none; border-top: 1px solid var(--line); }
.page-home main > ul li { margin: 0; padding: 20px 0; border-bottom: 1px solid var(--line); }

/* Gemini-like comparison */
.tour-comparison { position: relative; width: 100vw; margin-top: var(--space-content); margin-inline: calc(50% - 50vw); --comparison-sticky-top: 74px; }
.comparison-head { position: sticky; z-index: 12; top: var(--comparison-sticky-top); background: white; }
.tour-comparison.is-sticky-active .comparison-head::before { position: absolute; right: 0; bottom: 100%; left: 0; height: var(--comparison-sticky-top); content: ""; pointer-events: none; background: white; }
.tour-comparison.is-sticky-released { padding-top: var(--comparison-head-height); }
.tour-comparison.is-sticky-released .comparison-head { position: absolute; top: var(--comparison-release-top); right: 0; left: 0; }
.comparison-head-scroll, .comparison-scroll { width: 100%; overflow-x: auto; overflow-y: hidden; overscroll-behavior-inline: contain; scrollbar-width: none; -webkit-overflow-scrolling: touch; touch-action: pan-x pan-y pinch-zoom; }
.comparison-head-scroll::-webkit-scrollbar, .comparison-scroll::-webkit-scrollbar { display: none; }
.comparison-grid { display: grid; min-width: 1220px; padding-inline: max(20px, calc((100vw - var(--content)) / 2)); grid-template-columns: repeat(4,minmax(0,1fr)); gap: 16px; align-items: stretch; }
.comparison-head-grid { padding-top: 1px; }
.comparison-body-grid { padding-bottom: 8px; }
.content-icon { width: 42px; height: 42px; object-fit: contain; }
.plan-heading { overflow: hidden; border: 1px solid var(--line); border-bottom: 0; border-radius: 30px 30px 0 0; background: white; }
.plan-image-link { display: block; color: inherit; }
.plan-image-link:focus-visible { position: relative; z-index: 1; outline: 3px solid var(--accent); outline-offset: -5px; }
.plan-image { display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; margin: 0; border-radius: 29px 29px 0 0; object-fit: cover; }
.plan-heading h3 { display: flex; height: 80px; margin: 0; padding: 18px 24px 16px; align-items: center; font-size: 30px; line-height: 1.08; }
.tour-plan { --plan-pad: 24px; overflow: hidden; padding: 0; border: 1px solid var(--line); border-top: 0; border-radius: 0 0 30px 30px; background: white; }
.tour-plan header { position: relative; z-index: 1; display: flex; padding: 22px var(--plan-pad) 24px; flex-direction: column; align-items: stretch; }
.tour-plan header > p:not(.plan-price) { flex: 0 0 90px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.48; }
.tour-plan header > p:not(.plan-price) strong { color: var(--ink); font-weight: 600; }
.tour-plan .plan-price { display: flex; min-height: 42px; margin: 14px 0 0; align-items: baseline; flex: none; flex-wrap: nowrap; gap: 5px 8px; color: var(--muted); font-size: 15px; line-height: 1.3; }
.tour-plan .plan-price strong { flex: none; color: var(--accent); font-size: 32px; font-weight: 500; letter-spacing: -.04em; line-height: 1.3; }
.tour-plan .plan-free { display: block; min-height: 37px; margin-top: 2px; flex: none; color: var(--muted); font-size: 14px; line-height: 1.3; }
.tour-plan header > a { width: 100%; margin-top: 16px; flex: none; }
.tour-plan dl { display: grid; margin: 0; grid-template-rows: repeat(6,84px); }
.tour-plan dl > div { display: grid; padding: 12px 24px; grid-template-columns: 28px minmax(0,1fr); align-items: center; gap: 14px; border-top: 1px solid var(--line); }
.tour-plan dl img { width: 26px; height: 26px; margin-top: 1px; object-fit: contain; }
.tour-plan dt { color: var(--ink); font-size: 15px; font-weight: 700; line-height: 1.35; }
.tour-plan dd { margin: 4px 0 0; color: var(--muted); font-size: 15px; line-height: 1.4; }
.comparison-followup { width: 100%; max-width: none; margin: var(--space-content) 0 0; color: var(--muted); }
.site-main > .comparison-followup { max-width: none; }

/* Single image-text surfaces */
.page-tours main > section { display: grid; overflow: hidden; grid-template-columns: 1fr 1fr; border-radius: var(--radius-large); background: var(--surface); }
.page-tours main > section > *:not(figure) { grid-column: 2; margin-right: 48px; margin-left: 48px; }
.page-tours main > section > h2 { align-self: end; margin-top: 48px; font-size: 40px; }
.page-tours main > section figure { grid-column: 1; grid-row: 1 / 7; margin: 0; border-radius: 0; }
.page-tours main > section figure picture, .page-tours main > section figure img { height: 100%; }
.page-tours main > section figure img { object-fit: cover; }
.page-tours main > section .tour-card-action { margin-top: 32px; margin-bottom: 48px; }
.element-cards { display: grid; margin-top: var(--space-content); gap: var(--space-card); }
.split-card { display: grid; overflow: hidden; min-height: 440px; padding: 0; grid-template-columns: 1fr 1fr; border: 0; border-radius: var(--radius-large); background: var(--surface); }
.split-card > figure { height: 100%; margin: 0; border-radius: 0; }
.split-card picture, .split-card picture img { width: 100%; height: 100%; }
.split-card picture img { object-fit: cover; }
.split-card > div { display: flex; padding: clamp(34px,5vw,68px); flex-direction: column; align-items: flex-start; justify-content: center; }
.split-card h3 { margin: 18px 0 12px; font-size: clamp(31px,4vw,48px); }
.split-card p { margin: 0; font-size: 18px; }
.split-card-reverse picture { grid-column: 2; grid-row: 1; }
.split-card-reverse > div { grid-column: 1; grid-row: 1; }
.home-story { margin-block: var(--space-section); }
.home-story > div { gap: 16px; }
.home-story h2 { margin: 0 0 2px; font-size: clamp(36px,4.4vw,58px); }
.home-story--reverse > figure { grid-column: 2; grid-row: 1; }
.home-story--reverse > div { grid-column: 1; grid-row: 1; }

/* Footer */
.site-footer { padding: 76px 20px 112px; color: white; background: #252525; }
.footer-shell { display: grid; width: min(100%,var(--content)); margin-inline: auto; grid-template-columns: 1.2fr 1fr 1fr; gap: 50px; }
.site-footer h2 { margin: 0 0 16px; color: white; font-size: 28px; }
.site-footer p { margin: 0; color: #c5c7c9; }
.site-footer nav { display: grid; align-content: start; gap: 10px; }
.site-footer a { color: white; }
.floating-whatsapp { position: fixed; z-index: 45; right: 22px; bottom: 20px; display: inline-flex; min-height: 52px; padding: 0 22px; align-items: center; gap: 9px; border-radius: 999px; color: white; background: var(--accent); filter: drop-shadow(0 12px 18px rgb(32 33 36 / .36)); font-size: 14px; font-weight: 700; text-decoration: none; }
.floating-whatsapp::before { width: 20px; height: 20px; flex: 0 0 20px; content: ""; background: url("/assets/icons/whatsapp.png") center / contain no-repeat; }
.floating-whatsapp:hover { color: white; background: var(--accent-dark); }

/* Primary buttons use Gemini's wide-gradient slide interaction. */
.desktop-nav .nav-cta,
.hero-actions a:first-child,
.site-main p > a:only-child:not(.inline-link),
.site-main p > a:first-child:last-of-type:not(.inline-link),
.site-main button,
.tour-plan header > a,
.mobile-menu-panel .mobile-menu-cta,
.floating-whatsapp {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: white;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  transition: .3s;
}

.floating-whatsapp { position: fixed; }

.desktop-nav .nav-cta::after,
.hero-actions a:first-child::after,
.site-main p > a:only-child:not(.inline-link)::after,
.site-main p > a:first-child:last-of-type:not(.inline-link)::after,
.site-main button::after,
.tour-plan header > a::after,
.mobile-menu-panel .mobile-menu-cta::after,
.floating-whatsapp::after {
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 200%;
  border-radius: 60px;
  content: "";
  background: var(--primary-gradient);
  pointer-events: none;
  transform: translateX(-50%);
  transition: transform .5s;
}

.desktop-nav .nav-cta:hover,
.desktop-nav .nav-cta:focus-visible,
.desktop-nav .nav-cta:active,
.hero-actions a:first-child:hover,
.hero-actions a:first-child:focus-visible,
.hero-actions a:first-child:active,
.site-main p > a:only-child:not(.inline-link):hover,
.site-main p > a:only-child:not(.inline-link):focus-visible,
.site-main p > a:only-child:not(.inline-link):active,
.site-main p > a:first-child:last-of-type:not(.inline-link):hover,
.site-main p > a:first-child:last-of-type:not(.inline-link):focus-visible,
.site-main p > a:first-child:last-of-type:not(.inline-link):active,
.site-main button:hover,
.site-main button:focus-visible,
.site-main button:active,
.tour-plan header > a:hover,
.tour-plan header > a:focus-visible,
.tour-plan header > a:active,
.mobile-menu-panel .mobile-menu-cta:hover,
.mobile-menu-panel .mobile-menu-cta:focus-visible,
.mobile-menu-panel .mobile-menu-cta:active,
.floating-whatsapp:hover,
.floating-whatsapp:focus-visible,
.floating-whatsapp:active {
  color: white;
  border-color: transparent;
  background: transparent;
}

.desktop-nav .nav-cta:hover::after,
.desktop-nav .nav-cta:focus-visible::after,
.desktop-nav .nav-cta:active::after,
.hero-actions a:first-child:hover::after,
.hero-actions a:first-child:focus-visible::after,
.hero-actions a:first-child:active::after,
.site-main p > a:only-child:not(.inline-link):hover::after,
.site-main p > a:only-child:not(.inline-link):focus-visible::after,
.site-main p > a:only-child:not(.inline-link):active::after,
.site-main p > a:first-child:last-of-type:not(.inline-link):hover::after,
.site-main p > a:first-child:last-of-type:not(.inline-link):focus-visible::after,
.site-main p > a:first-child:last-of-type:not(.inline-link):active::after,
.site-main button:hover::after,
.site-main button:focus-visible::after,
.site-main button:active::after,
.tour-plan header > a:hover::after,
.tour-plan header > a:focus-visible::after,
.tour-plan header > a:active::after,
.mobile-menu-panel .mobile-menu-cta:hover::after,
.mobile-menu-panel .mobile-menu-cta:focus-visible::after,
.mobile-menu-panel .mobile-menu-cta:active::after,
.floating-whatsapp:hover::after,
.floating-whatsapp:focus-visible::after,
.floating-whatsapp:active::after {
  transform: translateX(0);
}
.floating-whatsapp::after { background: linear-gradient(89.58deg, #36dd75 49.9%, #25d366 50.14%, #20c55d 72.225%, #36dd75 99.775%); }
.floating-whatsapp { filter: none; box-shadow: 0 3px 7px rgb(32 33 36 / .24), 0 16px 28px rgb(32 33 36 / .18), inset 0 1px 0 rgb(255 255 255 / .26); }
#whatsapp-anfrage, #email-anfrage { display: inline-flex; align-items: center; gap: 9px; cursor: pointer; }
#whatsapp-anfrage { border-color: #25d366; background: #25d366; filter: none; }
#whatsapp-anfrage::before, #email-anfrage::before { width: 20px; height: 20px; flex: 0 0 20px; content: ""; background: center / contain no-repeat; }
#whatsapp-anfrage::before { background-image: url("/assets/icons/whatsapp.png"); }
#whatsapp-anfrage::after { background: linear-gradient(89.58deg, #36dd75 49.9%, #25d366 50.14%, #20c55d 72.225%, #36dd75 99.775%); }
#email-anfrage { border-color: var(--line); color: var(--ink); background: white; filter: none; }
#email-anfrage::before { background-image: url("/assets/icons/email.png"); }
#email-anfrage::after { display: none; }
#email-anfrage:hover, #email-anfrage:focus-visible, #email-anfrage:active { border-color: #bdc1c6; color: var(--ink); background: #f8f9fa; }

/* A restrained Material-style state layer for deliberate interactive controls. */
.touch-feedback-target { isolation: isolate; overflow: hidden; -webkit-tap-highlight-color: transparent; }
.touch-feedback-needs-position { position: relative; }
.plan-image-link.touch-feedback-target { border-radius: inherit; }
.touch-feedback-layer { position: absolute; z-index: 2; width: 0; height: 0; border-radius: 50%; pointer-events: none; background: rgb(60 64 67 / .14); opacity: 0; transform: translate(-50%, -50%) scale(.2); transition: transform 260ms cubic-bezier(.2, 0, 0, 1), opacity 240ms ease; }
.touch-feedback-filled .touch-feedback-layer { background: rgb(255 255 255 / .24); }
.touch-feedback-target.is-touch-pressed .touch-feedback-layer { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.touch-feedback-target.is-touch-releasing .touch-feedback-layer { opacity: 0; }
.touch-feedback-filled { transition: transform 120ms cubic-bezier(.2, 0, 0, 1); }
.touch-feedback-filled.is-touch-pressed { transform: scale(.985); }

@media (prefers-reduced-motion: reduce) {
  .touch-feedback-target { -webkit-tap-highlight-color: initial; }
}

.site-main a.inline-link,
.site-main p > a.inline-link,
.site-main li > a.inline-link,
.site-main dd > a.inline-link {
  display: inline;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--accent);
  background: none;
  box-shadow: none;
  font: inherit;
  font-weight: inherit;
  text-align: inherit;
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-decoration-thickness: 1px;
  text-underline-offset: .2em;
  transition: color .16s ease, text-decoration-thickness .16s ease;
}
.site-main a.inline-link::after,
.site-main p > a.inline-link::after,
.site-main li > a.inline-link::after,
.site-main dd > a.inline-link::after { display: none; }
.site-main p > a.inline-link:hover,
.site-main p > a.inline-link:focus-visible,
.site-main li > a.inline-link:hover,
.site-main li > a.inline-link:focus-visible,
.site-main dd > a.inline-link:hover,
.site-main dd > a.inline-link:focus-visible,
.site-main a.inline-link:hover,
.site-main a.inline-link:focus-visible {
  color: var(--accent-dark);
  background: none;
  text-decoration-thickness: 2px;
}
.page-legal .site-main, .page-faq .site-main { max-width: 900px; }
.page-legal h1, .page-faq h1 { font-size: clamp(43px,6vw,66px); }
.faq-list { margin-top: var(--space-content); border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { display: flex; min-height: 76px; padding: 18px 0; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; color: var(--ink); font-size: clamp(18px, 2vw, 22px); font-weight: 500; letter-spacing: -.02em; line-height: 1.25; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { flex: 0 0 auto; color: var(--muted); content: "+"; font-size: 30px; font-weight: 300; line-height: 1; }
.faq-item[open] summary::after { content: "−"; }
.faq-item > div { padding: 0 44px 24px 0; }
.faq-item p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.6; }

@media (max-width: 980px) {
  .site-header { background: white; backdrop-filter: none; }
  .desktop-nav { display: none; }
  .mobile-nav { display: block; position: relative; }
  .mobile-nav > summary { position: relative; z-index: 51; display: block; width: 44px; height: 44px; padding: 11px; cursor: pointer; overflow: hidden; list-style: none; border: 0; border-radius: 999px; background: var(--surface); }
  .mobile-nav > summary::-webkit-details-marker, .mobile-subnav summary::-webkit-details-marker { display: none; }
  .mobile-menu-label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
  .mobile-menu-icon, .mobile-menu-icon::before, .mobile-menu-icon::after, .mobile-menu-line-middle { position: absolute; top: 50%; right: 11px; left: 11px; display: block; height: 1.5px; content: ""; background: var(--ink); }
  .mobile-menu-icon { background: transparent; transform: translateY(-.75px); }
  .mobile-menu-icon::before, .mobile-menu-icon::after { top: 0; right: 0; left: 0; transition: transform 180ms ease; }
  .mobile-menu-icon::before { transform: translateY(-6px); }
  .mobile-menu-icon::after { transform: translateY(6px); }
  .mobile-menu-line-middle { top: 0; right: 0; bottom: auto; left: 0; transition: transform 200ms ease, opacity 80ms linear 120ms; }
  .mobile-nav[open] .mobile-menu-line-middle { transform: translateX(44px); opacity: 0; }
  .mobile-nav[open] .mobile-menu-icon::before { transform: translateY(0) rotate(45deg); }
  .mobile-nav[open] .mobile-menu-icon::after { transform: translateY(0) rotate(-45deg); }
  body:has(.mobile-nav[open])::before { position: fixed; z-index: 48; inset: 74px 0 0; content: ""; pointer-events: none; background: rgb(255 255 255 / .3); backdrop-filter: blur(10px); }
  .mobile-menu-backdrop { position: fixed; z-index: 49; inset: 74px 0 0; display: none; background: transparent; }
  body:has(.mobile-nav[open]) .mobile-menu-backdrop { display: block; }
  .mobile-menu-panel { position: fixed; z-index: 50; top: 82px; left: 50%; width: min(calc(100vw - 40px), 640px); max-height: calc(100dvh - 98px); padding: 18px; overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; touch-action: pan-y; transform: translateX(-50%); border: 1px solid rgb(32 33 36 / .06); border-radius: 20px; background: #f0f0f0; box-shadow: 0 18px 50px rgb(32 33 36 / .12); }
  .mobile-menu-panel.is-entering { animation: mobile-menu-enter 420ms cubic-bezier(.2, .8, .2, 1); }
  .mobile-menu-panel nav { display: grid; }
  .mobile-menu-panel nav > a, .mobile-subnav > summary { display: flex; min-height: 52px; padding: 10px 4px; align-items: center; justify-content: space-between; color: var(--ink); font-size: 17px; font-weight: 600; text-decoration: none; }
  .mobile-subnav > summary { cursor: pointer; list-style: none; }
  .mobile-subnav > summary::after { content: "+"; color: var(--muted); font-size: 24px; font-weight: 400; }
  .mobile-subnav[open] > summary::after { content: "−"; }
  .mobile-subnav:not([open]) > div { display: block; }
  .mobile-subnav > div { display: block; max-height: 0; padding: 0 0 0 18px; overflow: hidden; opacity: 0; visibility: hidden; transition: max-height 320ms ease, padding 320ms ease, opacity 220ms ease, visibility 0s linear 320ms; }
  .mobile-subnav[open] > div { max-height: 360px; padding: 2px 0 12px 18px; opacity: 1; visibility: visible; transition: max-height 360ms ease, padding 360ms ease, opacity 260ms ease, visibility 0s; }
  .mobile-subnav a { display: block; padding: 8px 4px; color: var(--muted); text-decoration: none; }
  .mobile-menu-panel .mobile-menu-cta { margin-top: 8px; padding-inline: 22px; justify-content: center; border: 0; border-radius: 999px; color: white; background-color: var(--accent); }
  .benefit-scroll-scene { top: var(--benefit-scene-top, 68px); height: var(--benefit-scene-height, calc(100dvh - 68px)); }
  .benefit-scroll-stage { --benefit-stack-space: 76px; position: absolute; top: var(--benefit-stage-top, 180px); height: var(--benefit-stage-height, auto); overflow: visible; clip-path: none; }
  .benefit-track { position: relative; display: block; width: 100%; height: 100%; }
  .benefit-card { position: absolute; inset: 0 auto auto 24px; width: calc(100% - 48px); min-width: 0; height: auto; grid-template-columns: 1fr; grid-template-rows: minmax(0, 1fr) var(--benefit-image-height); }
  .benefit-card:not(:first-child) { transform: translate3d(120vw, 120vw, 0); }
  .benefit-card:nth-child(odd):not(:first-child) { transform: translate3d(-120vw, 120vw, 0); }
  .benefit-card > picture { min-height: 0; height: 100%; overflow: hidden; aspect-ratio: 16 / 11; grid-column: 1; grid-row: 2; border-radius: 0 0 20px 20px; }
  .benefit-card > div { min-height: 0; grid-column: 1; grid-row: 1; }
  .benefit-card:nth-child(1) { z-index: 1; }
  .benefit-card:nth-child(2) { z-index: 2; }
  .benefit-card:nth-child(3) { z-index: 3; }
  .benefit-card:nth-child(4) { z-index: 4; }
  .benefit-card:nth-child(5) { z-index: 5; }
  .benefit-card:nth-child(6) { z-index: 6; }
  .benefit-card:nth-child(7) { z-index: 7; }
  .benefit-card > div { padding: 20px 22px; }
  .benefit-verified { width: 44px; height: 44px; }
  .benefit-card:first-child .benefit-verified { right: -4px; }
  .benefit-card h3 { margin-bottom: 8px; font-size: 24px; }
  .benefit-card p { font-size: 14px; }
  .jga-overview-grid { grid-template-columns: 1fr; }
  .jga-overview-item { padding: 22px 18px; grid-template-columns: 32px minmax(0, 1fr); gap: 11px; }
  .jga-overview-item:nth-child(3n),
  .jga-overview-item:nth-child(2n) { border-right: 0; }
  .jga-overview-item:nth-last-child(-n + 3) { border-bottom: 1px solid var(--line); }
  .jga-overview-item:last-child { border-bottom: 0; }
  .jga-overview-icon { width: 32px; height: 32px; }
  .jga-overview-euro { font-size: 32px; }
  .packing-list { grid-template-columns: 1fr; }
  .packing-list li { padding: 0 0 22px; grid-template-columns: 76px minmax(0, 1fr); gap: 18px; }
  .packing-list li + li { padding-top: 22px; }
  .packing-list li::before { width: 76px; height: 76px; border-radius: 22px; font-size: 38px; }
  .packing-list h3 { font-size: 20px; }
  .packing-list p { margin-top: 6px; font-size: 15px; }
  section:has(> article) { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .footer-shell { grid-template-columns: 1fr 1fr; }
  .footer-shell > div:first-child { grid-column: 1 / -1; }
}

@keyframes mobile-menu-enter {
  from { transform: translate(-50%, -18px); opacity: 0; }
  to { transform: translateX(-50%); opacity: 1; }
}

@media (max-width: 400px) {
  .benefit-card { left: 28px; width: calc(100% - 56px); }
}


@media (max-width: 700px) {
  :root { --space-card: 24px; --space-content: 40px; --space-section: 72px; }
  body { font-size: 16px; }
  .nav-shell { width: calc(100% - 28px); min-height: 68px; }
  .brand img { width: auto; height: 34px; }
  body:has(.mobile-nav[open])::before, .mobile-menu-backdrop { inset-block-start: 68px; }
  .mobile-menu-panel { top: 76px; width: calc(100vw - 28px); max-height: calc(100dvh - 90px); }
  .mobile-parent-link { display: flex; width: min(calc(100% - 32px),var(--content)); margin: 22px auto 0; color: var(--muted); font-size: 14px; font-weight: 600; text-decoration: none; }
  .site-main { width: min(calc(100% - 32px),var(--content)); padding: 50px 0 84px; }
  .mobile-parent-link + .site-main { padding-top: 42px; }
  h1 { font-size: clamp(40px,12vw,54px); text-align: left; }
  h2 { margin-top: var(--space-section); font-size: 36px; }
  .site-main > h1 + p, .site-main > article > h1 + p { margin-top: 22px; text-align: left; }
  .page-home .hero { text-align: left; }
  .page-home .hero h1 { text-align: left; }
  .page-home .hero .lead { font-size: 18px; }
  .hero-actions { display: grid; }
  .hero-actions a { justify-content: center; }
  figure { margin: var(--space-content) 0; border-radius: 24px; }
  .media-story { min-height: 0; grid-template-columns: 1fr; }
  .media-story picture { aspect-ratio: 4 / 3; }
  .media-story figcaption { padding: 28px 26px 34px; font-size: 25px; }
  .hero-media { margin-inline: -6px; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .trust-strip div { padding: 16px 13px; border-bottom: 1px solid var(--line); }
  .trust-strip div:nth-child(2) { border-right: 0; }
  .trust-strip div:nth-last-child(-n+2) { border-bottom: 0; }
  .app-proof { margin-top: calc(var(--space-content) + 14px); padding: 24px 18px; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
  .app-proof-copy { padding-bottom: 0; }
  .app-proof .eyebrow { margin-bottom: 10px; padding: 6px 10px; font-size: 11px; }
  .app-proof h2 { font-size: 23px; }
  .app-proof-copy > p:not(.eyebrow) { margin: 12px 0; font-size: 14px; }
  .app-proof-visual { width: 112px; gap: 10px; }
  .app-phone { width: min(100%, 108px); }
  .app-store-icons { gap: 14px; transform: translateX(4px); }
  .app-store-icons a { width: 44px; height: 44px; border-radius: 12px; }
  .app-store-icons img { width: 32px; height: 32px; }
  section:has(> article) { grid-template-columns: 1fr; }
  .site-main > dl, .site-main > article > dl:not(.tour-plan dl) { grid-template-columns: 1fr; }
  .site-main > dl dt, .site-main > article > dl:not(.tour-plan dl) dt { padding-bottom: 2px; border-bottom: 0; }
  .site-main > dl dd, .site-main > article > dl:not(.tour-plan dl) dd { padding-top: 2px; }
  .page-home main > ul { grid-template-columns: 1fr; }
  .google-reviews-grid { --reviews-stick-top: 82px; --review-gap: 28px; }
  .google-review { min-height: 0; padding: 20px; }
  .comparison-grid { min-width: 1116px; padding-inline: 16px; grid-template-columns: repeat(4,270px); gap: 12px; }
  .tour-plan { --plan-pad: 22px; }
  .tour-plan header { padding: 22px var(--plan-pad) 24px; }
  .plan-heading h3 { height: 84px; padding-inline: 22px; font-size: 28px; }
  .tour-plan header > p:not(.plan-price) { font-size: 15px; }
  .tour-plan dl > div { padding-inline: 22px; }
  .page-tours main > section, .split-card { grid-template-columns: 1fr; }
  .page-tours main > section figure, .page-tours main > section > *:not(figure) { grid-column: 1; grid-row: auto; }
  .page-tours main > section > *:not(figure) { margin-right: 24px; margin-left: 24px; }
  .page-tours main > section > h2 { margin-top: 28px; }
  .page-tours main > section .tour-card-action { grid-row: 4; margin-top: 28px; margin-bottom: 28px; }
  .page-tours main > section figure { grid-row: 5; aspect-ratio: 4 / 3; }
  .split-card picture, .split-card-reverse picture, .split-card > div, .split-card-reverse > div, .home-story > figure, .home-story--reverse > figure, .home-story--reverse > div { grid-column: 1; grid-row: auto; }
  .split-card picture { aspect-ratio: 4 / 3; }
  .split-card > div { padding: 30px 26px 36px; }
  .split-card h3 { font-size: 34px; }
  .guide-profile, .guide-profile-reverse { grid-template-columns: 1fr; gap: 30px; }
  .guide-profile-copy, .guide-profile-reverse .guide-profile-copy { grid-column: 1; grid-row: auto; max-width: none; justify-self: stretch; }
  .guide-profile-reverse .guide-gallery { grid-column: 1; grid-row: auto; }
  .guide-profile-copy p:last-child { font-size: 17px; }
  .guide-gallery { grid-template-columns: minmax(0, 1.3fr) minmax(104px, .7fr); gap: 10px; }
  .guide-gallery-details { gap: 10px; }
  .guide-association-logo { align-items: flex-start; }
  .tour-hero { text-align: left; }
  .tour-hero h1 { text-align: left; }
  .tour-hero-lead { margin-left: 0; text-align: left; }
  .tour-hero .hero-actions { justify-content: flex-start; }
  .tour-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tour-facts > div { display: flex; padding-inline: 12px; justify-content: center; gap: 12px; }
  .tour-facts > div > div { min-width: 0; }
  .tour-facts > div:nth-child(3n) { border-right: 1px solid var(--line); }
  .tour-facts > div:nth-child(2n) { border-right: 0; }
  .tour-story { min-height: 0; grid-template-columns: 1fr; }
  .tour-story > figure, .tour-story-reverse > figure, .tour-story > div, .tour-story-reverse > div { grid-column: 1; grid-row: auto; }
  .tour-story > figure { min-height: 0; aspect-ratio: 4 / 3; }
  .tour-story-reverse > figure { aspect-ratio: 4 / 5; }
  .tour-story-adrenaline { aspect-ratio: auto; }
  .tour-story-adrenaline > figure { aspect-ratio: 4 / 3; }
  .tour-story > div { padding: 30px 26px 36px; }
  .tour-story > div > p:not(.eyebrow), .tour-section-heading > p:last-child, .tour-cta > div:first-child > p:last-child { font-size: 17px; }
  .tour-card-journey .benefit-card { grid-template-rows: var(--benefit-image-height) minmax(0, 1fr); }
  .tour-card-journey .benefit-card > picture { grid-column: 1; grid-row: 1; border-radius: 20px 20px 0 0; }
  .tour-card-journey .benefit-card > div { grid-column: 1; grid-row: 2; padding: 20px 22px 24px; }
  .tour-cta { grid-template-columns: 1fr; gap: 28px; }
  .tour-cta .hero-actions { justify-content: stretch; }
  .footer-shell { grid-template-columns: 1fr; gap: 34px; }
  .footer-shell > div:first-child { grid-column: auto; }
  .floating-whatsapp { right: 12px; bottom: 12px; min-height: 48px; padding-inline: 18px; }
}

@media (min-width: 981px) {
  .benefit-card .benefit-verified {
    right: -14px !important;
    left: auto !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  [data-reveal] { transform: none; opacity: 1; }
  .google-reviews-grid { height: auto !important; }
  .review-stack-stage { position: static; height: auto !important; }
  .review-stack-item { position: static; margin-bottom: var(--review-gap); transform: none !important; }
  .review-stack-item:last-child { margin-bottom: 0; }
  .google-reviews-grid { padding-bottom: 0; }
  .benefit-scroll-area { height: auto !important; }
  .benefit-scroll-scene { position: static; height: auto; }
  .benefit-scroll-scene > h2 { position: static; margin-bottom: var(--space-content); }
  .benefit-scroll-stage { position: static; height: auto; overflow: visible; }
  .benefit-track { display: grid; width: auto; height: auto; gap: var(--space-card); }
  .benefit-card { position: static; transform: none !important; }
}
