/* Shared LP styles. Look Lock tokens live in :root. */

    @font-face {
      font-family: 'Gracela';
      src: url('/fonts/gracela.woff2') format('woff2');
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }
    @font-face {
      font-family: 'Soleil';
      src: url('/fonts/soleil-light.woff2') format('woff2');
      font-weight: 300;
      font-style: normal;
      font-display: swap;
    }
    @font-face {
      font-family: 'Soleil';
      src: url('/fonts/soleil-regular.woff2') format('woff2');
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }
    @font-face {
      font-family: 'Soleil';
      src: url('/fonts/soleil-semibold.woff2') format('woff2');
      font-weight: 600;
      font-style: normal;
      font-display: swap;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --primary: #4171B1; --action-bubble: #4171B1;
      --primary-dark: #335a94;
      --primary-darker: #234072;
      --primary-light: #5d85b8;
      --primary-lighter: #8aa4b2;
      --petrol-deep: #1a3531; --petrol: #1a3531; --petrol-mid: #4171B1;
      --ice-light: #e8f1f4; --ice-mid: #9bb8c4; --winter-blue: #6a8fa0;
      --ice-soft: #c5d9e0; --hero-box: #c5d9e0;
      --sand: #f0ece6; --sand-warm: #f2dab9;
      --terracotta: #d8673e; --terracotta-hover: #c25a35; --white: #ffffff;
      --text: #1a3531; --text-muted: #4171B1; --header-h: 3.25rem;
    }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Soleil', sans-serif;
      font-weight: 300;
      font-size: 1rem; line-height: 1.45; color: var(--text); background: var(--sand);
      -webkit-font-smoothing: antialiased;
    }
    a { color: var(--petrol); text-underline-offset: 2px; }
    img { max-width: 100%; height: auto; display: block; }
    .container { width: 100%; max-width: 960px; margin: 0 auto; padding: 0 1.25rem; }
    .container-narrow { max-width: 720px; }
    header.site-header { background: var(--primary); height: var(--header-h); display: flex; align-items: center; }
    .header-inner { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; width: 100%; }
    .logo-link { display: block; line-height: 0; flex-shrink: 0; }
    .logo-link img { height: 32px; width: auto; }
    .btn-pill {
      display: inline-flex; align-items: center; gap: 0.625rem; background: var(--white); color: var(--petrol);
      text-decoration: none; font-weight: 600; font-size: 0.875rem; border-radius: 999px;
      padding: 0.3rem 0.3rem 0.3rem 1rem; box-shadow: 0 0.12rem 0.24rem rgba(0,0,0,0.18);
      border: none; white-space: nowrap;
    }
    .btn-pill:hover .btn-pill-disc { background: var(--terracotta-hover); }
    .btn-pill-label { line-height: 1.2; }
    .btn-pill-disc {
      width: 2.25rem; height: 2.25rem; border-radius: 50%; background: var(--terracotta); flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
    }
    .btn-pill-disc::after {
      content: ""; width: 0.45rem; height: 0.45rem; border-right: 2px solid var(--white);
      border-top: 2px solid var(--white); transform: rotate(45deg); margin-left: -0.15rem;
    }
    .btn-pill-block { display: flex; width: 100%; justify-content: space-between; }
    h1 { font-family: 'Gracela', serif; font-size: clamp(1.5rem, 6vw, 2.25rem); font-weight: 400; line-height: 1.1; margin-bottom: 0.625rem; }
    h2 { font-family: 'Gracela', serif; font-size: 1.25rem; font-weight: 400; color: var(--petrol); margin-bottom: 0.875rem; }
    h3 { font-family: 'Gracela', serif; font-size: 0.9375rem; font-weight: 400; color: var(--petrol); margin-bottom: 0.2rem; }
    section { padding: 2rem 0; }
    section.bg-white { background: var(--white); }
    section.bg-ice { background: var(--ice-light); }
    section.bg-primary { background: var(--primary); color: var(--white); }
    section.bg-sand-warm { background: var(--sand-warm); }
    p { margin-bottom: 0.75rem; } p:last-child { margin-bottom: 0; }
    .hero {
      position: relative; padding: 0; overflow: hidden;
      min-height: calc(100dvh - var(--header-h));
    }
    .hero-photo { position: absolute; inset: 0; }
    .hero-still { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; }
    .hero-copy {
      position: absolute; z-index: 2; inset: 0;
      width: 100%; max-width: 960px;
      margin: 0 auto;
      padding: 1.25rem;
      display: flex; align-items: flex-end; justify-content: flex-end;
      box-sizing: border-box;
    }
    .hero-box {
      background: var(--primary-light); color: var(--white);
      padding: 1.25rem 1.5rem; border-radius: 12px;
      width: 100%; max-width: 500px;
    }
    .hero-box h1 { color: var(--white); font-size: clamp(1.625rem, 7vw, 2.25rem); margin-bottom: 0.5rem; line-height: 1.1; }
    .hero-box .lead { font-size: 1rem; color: var(--white); margin-bottom: 1rem; max-width: 22em; line-height: 1.4; }
    .hero-box .lead strong { color: var(--white); font-weight: 600; }
    @media (min-width: 768px) {
      .hero {
        height: calc(100dvh - var(--header-h));
        min-height: calc(100dvh - var(--header-h));
      }
      .hero-copy { align-items: center; padding: 1.5rem 1.25rem; }
      .hero-box .btn-pill { width: auto; max-width: max-content; }
      .hero-box h1 { font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.05; margin-bottom: 0.625rem; }
      .hero-box .lead { max-width: 18em; }
    }
    .lead { font-size: 1rem; color: var(--petrol-mid); margin-bottom: 1rem; max-width: 22em; line-height: 1.4; }
    .lead strong { color: var(--petrol); font-weight: 600; }
    .steps { list-style: none; counter-reset: step; }
    .steps li {
      counter-increment: step; padding: 0.625rem 0 0.625rem 2.5rem; position: relative;
      border-bottom: 1px solid var(--ice-mid); font-size: 0.9375rem;
    }
    .steps li:last-child { border-bottom: none; }
    .steps li::before {
      content: counter(step); position: absolute; left: 0; top: 0.625rem; width: 1.5rem; height: 1.5rem;
      background: var(--terracotta); color: var(--white); font-weight: 600; font-size: 0.8125rem;
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
    }
    .offer-box {
      background: transparent; color: var(--white); padding: 1.25rem; border-radius: 0;
      text-align: center; border: none;
    }
    .offer-box .offer-title { font-size: 1rem; font-weight: 600; color: var(--white); }
    .offer-box .offer-price { font-size: 2rem; font-weight: 600; color: var(--white); line-height: 1.15; }
    .offer-box .offer-detail { font-size: 0.875rem; color: var(--white); margin-top: 0.15rem; opacity: 0.9; }
    .proof { background: var(--primary-darker); color: var(--white); padding: 1rem 1.25rem; border-radius: 0.375rem; text-align: center; font-size: 0.9375rem; }
    .faq-item { border-bottom: 1px solid var(--ice-mid); padding: 0.875rem 0; }
    .faq-item:first-child { padding-top: 0; }
    .faq-q { font-weight: 600; color: var(--petrol); margin-bottom: 0.25rem; font-size: 0.9375rem; }
    .faq-a { font-size: 0.875rem; color: var(--text-muted); }
    .cta-block { margin-top: 1.25rem; }
    footer.site-footer { padding: 1.5rem 0; text-align: center; font-size: 0.8125rem; background: var(--primary); color: var(--sand); }
    footer.site-footer a { color: var(--sand-warm); font-weight: 600; text-decoration: none; }
    .map-section { background: var(--ice-light); }
    .map-wrap { width: 100%; max-width: 910px; margin: 0 auto; padding: 0.5rem 0 0; }
    .map-canvas { position: relative; width: 100%; }
    .map-wrap svg { width: 100%; height: auto; display: block; }
    .map-outline { fill: var(--ice-soft); stroke: var(--winter-blue); stroke-width: 2; }
    .map-pin {
      position: absolute; width: 2.75rem; height: 2.75rem;
      transform: translate(-50%, -50%);
      text-decoration: none; color: inherit; z-index: 2; cursor: pointer;
    }
    .map-pin-photo {
      display: block; width: 2.75rem; height: 2.75rem; border-radius: 50%;
      overflow: hidden; border: 2px solid var(--white); background: var(--primary);
      box-shadow: 0 0.15rem 0.4rem rgba(26,53,49,0.28);
      transition: transform 0.15s ease, box-shadow 0.15s ease;
    }
    .map-pin-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .map-pin-label {
      position: absolute; top: 100%; left: 50%; transform: translate(-50%, 0.25rem);
      font-size: 0.75rem; font-weight: 600; color: var(--petrol); white-space: nowrap;
      text-shadow: 0 1px 0 var(--white); pointer-events: none;
    }
    .map-pin--davos { left: 85.5%; top: 50.5%; z-index: 4; }
    .map-pin--lenzerheide { left: 79.3%; top: 56.4%; z-index: 3; }
    .map-pin--grindelwald { left: 45.8%; top: 59.5%; }
    .map-pin--davos .map-pin-label { left: auto; right: 0; top: 50%; transform: translate(calc(100% + 0.4rem), -50%); }
    .map-pin--lenzerheide .map-pin-label { left: 0; top: 100%; transform: translate(-65%, 0.25rem); }
    .map-pin:hover,
    .map-pin:focus-visible,
    .map-pin.is-hot { z-index: 6; outline: none; }
    .map-pin:hover .map-pin-photo,
    .map-pin:focus-visible .map-pin-photo,
    .map-pin.is-hot .map-pin-photo {
      transform: scale(1.08);
      box-shadow: 0 0 0 3px var(--primary), 0 0.2rem 0.5rem rgba(26,53,49,0.28);
    }
    @media (min-width: 640px) {
      .map-pin { width: 3.25rem; height: 3.25rem; }
      .map-pin-photo { width: 3.25rem; height: 3.25rem; border-width: 3px; }
    }
    .house-picks { display: grid; gap: 0.75rem; margin-top: 1.75rem; }
    .house-pick {
      display: grid; grid-template-columns: 5.25rem 1fr auto; gap: 0.875rem; align-items: center;
      background: var(--white); border-radius: 0.5rem; text-decoration: none; color: inherit;
      border: 1px solid var(--ice-mid); padding: 0.75rem;
    }
    .house-pick-photo {
      width: 5.25rem; height: 5.25rem; border-radius: 50%; overflow: hidden;
      border: 3px solid var(--white); box-shadow: 0 0 0 2px var(--primary);
    }
    .house-pick-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .house-pick-place {
      display: block; font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.06em;
      text-transform: uppercase; color: var(--primary); margin-bottom: 0.15rem;
    }
    .house-pick h3 { margin: 0 0 0.2rem; }
    .house-pick p { font-size: 0.8125rem; color: var(--text-muted); margin: 0; line-height: 1.35; }
    .house-pick-go {
      width: 2.25rem; height: 2.25rem; border-radius: 50%; background: var(--terracotta);
      display: flex; align-items: center; justify-content: center;
    }
    .house-pick-go::after {
      content: ""; width: 0.45rem; height: 0.45rem; border-right: 2px solid var(--white);
      border-top: 2px solid var(--white); transform: rotate(45deg); margin-left: -0.15rem;
    }
    .house-pick:hover,
    .house-pick:focus-visible,
    .house-pick.is-hot {
      border-color: var(--primary); outline: none;
      box-shadow: 0 0.2rem 0.75rem rgba(65,113,177,0.18);
    }
    .house-pick:hover .house-pick-go,
    .house-pick:focus-visible .house-pick-go { background: var(--terracotta-hover); }
    @media (min-width: 768px) {
      .house-picks { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
      .house-pick { grid-template-columns: 1fr; padding: 0; align-items: stretch; }
      .house-pick-photo {
        width: 100%; height: auto; aspect-ratio: 3 / 2; border-radius: 0.5rem 0.5rem 0 0;
        border: 0; box-shadow: none;
      }
      .house-pick-body { padding: 0.85rem 1rem 0.35rem; }
      .house-pick-go { margin: 0 1rem 1rem auto; }
    }
    @media (prefers-reduced-motion: reduce) {
      .map-pin-photo { transition: none; }
    }
    .booking-atf {
      background: var(--white); min-height: calc(100dvh - var(--header-h));
      display: flex; flex-direction: column; padding: 0.875rem 0 0;
      border-bottom: 1px solid var(--sand-warm);
    }
    .booking-atf .container-narrow {
      display: flex; flex-direction: column; flex: 1;
      min-height: calc(100dvh - var(--header-h) - 0.875rem);
    }
    .booking-atf h1 { font-size: clamp(1.25rem, 5.5vw, 1.625rem); margin-bottom: 0.375rem; color: var(--petrol); }
    .booking-offer { color: var(--text-muted); margin-bottom: 0.5rem; font-size: 0.8125rem; line-height: 1.4; }
    .booking-region { color: var(--petrol-mid); font-size: 0.875rem; font-style: italic; margin-bottom: 0.625rem; }
    .atf-still {
      width: 100%; min-height: 180px; height: clamp(180px, 28vh, 240px); max-width: none;
      object-fit: cover; border-radius: 0.375rem; margin-top: auto;
    }
    .back-link { font-size: 0.8125rem; margin-bottom: 0.625rem; display: inline-block; text-decoration: none; font-weight: 600; color: var(--petrol-mid); }
    .house-text { padding: 2rem 0; }
    .region-line { font-size: 1rem; font-weight: 600; color: var(--petrol); margin-bottom: 0.75rem; font-style: italic; }
    .house-body { color: var(--text-muted); margin-bottom: 1.25rem; font-size: 0.9375rem; }
    .micro { font-size: 0.75rem; color: var(--text-muted); border-top: 1px solid var(--sand-warm); padding-top: 0.875rem; line-height: 1.5; }
    .header-actions { display: flex; align-items: center; gap: 0.625rem; flex-shrink: 0; }
    .lang-switch { display: flex; gap: 0.25rem; }
    .lang-switch button {
      background: transparent; border: 1px solid rgba(255,255,255,0.35); color: var(--sand);
      font-size: 0.6875rem; font-weight: 600; padding: 0.25rem 0.5rem; border-radius: 0.25rem;
      cursor: pointer; font-family: inherit; letter-spacing: 0.03em; line-height: 1.2;
    }
    .lang-switch button.is-active { background: var(--white); color: var(--petrol); border-color: var(--white); }

/* House pages */
.house-atf {
      position: relative; background: var(--ice-light);
      border-bottom: 1px solid var(--ice-mid); padding: 0; overflow: hidden;
      min-height: calc(100vh - var(--header-h));
      min-height: calc(100dvh - var(--header-h));
    }
    .house-atf-photo { position: absolute; inset: 0; overflow: hidden; }
    .house-atf-still {
      position: absolute; inset: 0; width: 100%; height: 100%; max-width: none;
      object-fit: cover; object-position: center; display: block;
    }
    .house-atf-copy {
      position: absolute; z-index: 2; inset: 0;
      width: 100%; max-width: 960px;
      margin: 0 auto;
      padding: 1.25rem;
      display: flex; align-items: flex-end; justify-content: flex-end;
      box-sizing: border-box;
    }
    .house-atf-copy .container-narrow {
      width: 100%; max-width: 500px; margin: 0; padding: 1.25rem 1.5rem;
      background: var(--white); border-radius: 12px;
    }
    .house-atf h1 { font-size: clamp(1.5rem, 5.5vw, 2.125rem); margin-bottom: 0.375rem; color: var(--petrol); }
    .house-atf .booking-form-box { background: transparent; padding: 0; margin-top: 0.5rem; }
    @media (min-width: 768px) {
      .house-atf {
        height: calc(100dvh - var(--header-h));
        min-height: calc(100dvh - var(--header-h));
      }
      .house-atf-copy {
        align-items: center;
        padding: 1.5rem 1.25rem;
        overflow: auto;
      }
    }
    .steps { list-style: none; counter-reset: step; }
    .steps li {
      counter-increment: step; padding: 0.625rem 0 0.625rem 2.5rem; position: relative;
      border-bottom: 1px solid var(--sand-warm); font-size: 0.9375rem;
    }
    .steps li:last-child { border-bottom: none; }
    .steps li::before {
      content: counter(step); position: absolute; left: 0; top: 0.625rem; width: 1.5rem; height: 1.5rem;
      background: var(--terracotta); color: var(--white); font-weight: 600; font-size: 0.8125rem;
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
    }
    .offer-box {
      background: var(--sand-warm); color: var(--petrol); padding: 1.25rem; border-radius: 0.375rem;
      text-align: center; border: 1px solid rgba(26,53,49,0.08);
    }
    .offer-box .offer-title { font-size: 1rem; font-weight: 600; color: var(--petrol-mid); }
    .offer-box .offer-price { font-size: 2rem; font-weight: 600; color: var(--petrol); line-height: 1.15; }
    .offer-box .offer-detail { font-size: 0.875rem; color: var(--petrol-mid); margin-top: 0.15rem; }
    .proof { background: var(--petrol-mid); color: var(--white); padding: 1rem 1.25rem; border-radius: 0.375rem; text-align: center; font-size: 0.9375rem; }
    .faq-item { border-bottom: 1px solid var(--sand-warm); padding: 0.875rem 0; }
    .faq-item:first-child { padding-top: 0; }
    .faq-q { font-weight: 600; color: var(--petrol); margin-bottom: 0.25rem; font-size: 0.9375rem; }
    .faq-a { font-size: 0.875rem; color: var(--text-muted); }
    .cta-block { margin-top: 1.25rem; }
    footer.site-footer { padding: 1.5rem 0; text-align: center; font-size: 0.8125rem; background: var(--primary); color: var(--sand); }
    footer.site-footer a { color: var(--sand-warm); font-weight: 600; text-decoration: none; }
    .map-section { background: var(--white); }
    .map-wrap { width: 100%; max-width: 910px; margin: 0 auto; }
    .map-wrap svg { width: 100%; height: auto; display: block; }
    .map-outline { fill: var(--sand-warm); stroke: var(--petrol-mid); stroke-width: 2; }
    .map-pins-list { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.25rem; }
    .map-pin-card {
      display: flex; gap: 0.875rem; align-items: center; background: var(--sand); border-radius: 0.375rem;
      padding: 0.875rem; text-decoration: none; color: inherit; border: 1px solid var(--sand-warm);
    }
    .map-pin-card img { width: 56px; height: 56px; object-fit: cover; border-radius: 50%; flex-shrink: 0; border: 2px solid var(--petrol-mid); }
    .map-pin-card p { font-size: 0.8125rem; color: var(--text-muted); margin: 0; }
    @media (min-width: 640px) { .map-pins-list { display: none; } .map-svg-pins { display: block; } }
    @media (max-width: 639px) { .map-svg-pins { display: none; } }
    .booking-offer { color: var(--text-muted); margin-bottom: 0.25rem; font-size: 0.875rem; line-height: 1.45; }
    .booking-offer-micro { color: var(--text-muted); font-size: 0.8125rem; line-height: 1.4; margin-bottom: 0.75rem; }
    .back-link { font-size: 0.8125rem; margin-bottom: 0.625rem; display: inline-block; text-decoration: none; font-weight: 600; color: var(--petrol-mid); }
    .gallery { position: relative; display: block; padding: 0; width: 100%; }
    .gallery-frame { position: relative; width: 100%; }
    .gallery-viewport {
      overflow-x: auto; overflow-y: hidden; overscroll-behavior-x: contain;
      scroll-snap-type: x mandatory; scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch; scrollbar-width: none;
      border-radius: 0.5rem; background: var(--ice-light);
    }
    .gallery-viewport:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
    .gallery-viewport::-webkit-scrollbar { display: none; }
    .gallery-track { display: flex; }
    .gallery-slide {
      flex: 0 0 100%; width: 100%; min-width: 100%; margin: 0;
      scroll-snap-align: start; scroll-snap-stop: always;
    }
    .gallery-slide img {
      width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; display: block;
      border-radius: 0.5rem; background: var(--ice-light);
    }
    @media (min-width: 640px) { .gallery-slide img { aspect-ratio: 16 / 10; } }
    .gallery-nav {
      position: absolute; top: 50%; transform: translateY(-50%);
      width: 2.75rem; height: 2.75rem; border-radius: 50%; border: none; padding: 0;
      background: var(--white); color: var(--primary); cursor: pointer;
      box-shadow: 0 0.12rem 0.4rem rgba(26,53,49,0.2);
      display: flex; align-items: center; justify-content: center; z-index: 2;
    }
    .gallery-nav[hidden] { display: none !important; }
    .gallery-nav:hover { background: var(--primary); }
    .gallery-nav:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
    .gallery-nav::after {
      content: ""; width: 0.45rem; height: 0.45rem;
      border-right: 2px solid var(--primary); border-top: 2px solid var(--primary); display: block;
    }
    .gallery-nav:hover::after { border-color: var(--white); }
    .gallery-nav-prev { left: 0.5rem; }
    .gallery-nav-prev::after { transform: rotate(-135deg); margin-left: 0.15rem; }
    .gallery-nav-next { right: 0.5rem; }
    .gallery-nav-next::after { transform: rotate(45deg); margin-right: 0.15rem; }
    .gallery-dots { display: flex; justify-content: center; align-items: center; gap: 0.4rem; margin-top: 0.75rem; }
    .gallery-dot {
      width: 0.5rem; height: 0.5rem; border-radius: 999px; border: none; padding: 0;
      background: var(--ice-mid); cursor: pointer; font-family: inherit;
      transition: width 0.2s ease, background 0.2s ease;
    }
    .gallery-dot.is-active { width: 1.25rem; background: var(--primary); }
    @media (prefers-reduced-motion: reduce) {
      .gallery-viewport { scroll-behavior: auto; }
      .gallery-dot { transition: none; }
    }
    .kicker { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--petrol-mid); margin-bottom: 0.375rem; }
    .region-block { padding: 2rem 0; background: var(--sand); }
    .section-label { font-family: 'Gracela', serif; font-size: 1.125rem; font-weight: 400; color: var(--petrol); margin-bottom: 0.875rem; }
    .region-headline { font-family: 'Gracela', serif; font-size: 1.125rem; font-weight: 400; color: var(--petrol); margin-bottom: 0.75rem; font-style: italic; }
    .region-body { color: var(--text-muted); font-size: 0.9375rem; }
    .hotel-block { padding: 2rem 0; background: var(--white); border-top: 1px solid var(--sand-warm); }
    .subsection-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--petrol-mid); margin-top: 1.25rem; margin-bottom: 0.5rem; }
    .menu-links { list-style: none; font-size: 0.875rem; }
    .menu-links li { margin-bottom: 0.375rem; }
    .menu-links a { font-weight: 600; color: var(--petrol); text-decoration: none; }
    .menu-links a:hover { text-decoration: underline; }
    .menu-note { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.5rem; margin-bottom: 0; }
    .wellness-body { color: var(--text-muted); font-size: 0.9375rem; margin-bottom: 0; }
    .hotel-tagline { font-family: 'Gracela', serif; font-size: 1rem; font-weight: 400; color: var(--petrol); margin-bottom: 0.5rem; }
    .hotel-lead { font-weight: 600; color: var(--petrol); margin-bottom: 0.75rem; font-size: 0.9375rem; }
    .hotel-body { color: var(--text-muted); font-size: 0.9375rem; margin-bottom: 1.25rem; }
    .micro { font-size: 0.75rem; color: var(--text-muted); line-height: 1.5; margin-top: 1.25rem; border-top: 1px solid var(--sand-warm); padding-top: 0.875rem; }
    .micro a { color: var(--petrol-mid); font-weight: 400; word-break: break-all; }
    .header-actions { display: flex; align-items: center; gap: 0.625rem; flex-shrink: 0; }
    .lang-switch { display: flex; gap: 0.25rem; }
    .lang-switch button {
      background: transparent; border: 1px solid rgba(255,255,255,0.35); color: var(--sand);
      font-size: 0.6875rem; font-weight: 600; padding: 0.25rem 0.5rem; border-radius: 0.25rem;
      cursor: pointer; font-family: inherit; letter-spacing: 0.03em; line-height: 1.2;
    }
    .lang-switch button.is-active { background: var(--white); color: var(--petrol); border-color: var(--white); }
    .booking-form-box {
      background: var(--white); padding: 1rem; border-radius: 0.375rem; margin-top: 0.75rem;
      overflow: hidden; max-width: 100%; box-sizing: border-box;
    }
    .booking-form { display: grid; gap: 0.75rem; width: 100%; min-width: 0; }
    .booking-form label { display: block; font-size: 0.75rem; font-weight: 600; color: var(--petrol-mid); margin-bottom: 0.25rem; }
    .booking-form select {
      width: 100%; max-width: 100%; padding: 0.5rem 0.625rem; border: 1px solid rgba(66,95,96,0.25);
      border-radius: 0.25rem; font-family: inherit; font-size: 0.875rem; background: var(--white); color: var(--text);
      box-sizing: border-box;
    }
    .date-range {
      border: none; padding: 0; margin: 0; width: 100%; min-width: 0; max-width: 100%; box-sizing: border-box;
    }
    .date-range-label {
      display: block; font-size: 0.75rem; font-weight: 600; color: var(--petrol-mid);
      margin-bottom: 0.25rem; padding: 0;
    }
    .date-range-fields {
      display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem;
      width: 100%; min-width: 0; max-width: 100%; box-sizing: border-box;
    }
    .date-range-in, .date-range-out {
      width: 100%; min-width: 0; max-width: 100%; padding: 0.5rem 0.625rem;
      border: 1px solid rgba(66,95,96,0.25); border-radius: 0.25rem;
      font-family: inherit; font-size: 0.875rem; background: var(--white); color: var(--text);
      box-sizing: border-box; -webkit-appearance: none; appearance: none;
    }
    .btn-search {
      display: inline-flex; align-items: center; justify-content: center; background: var(--terracotta);
      color: var(--white); border: none; border-radius: 999px; padding: 0.625rem 1.25rem;
      font-weight: 600; font-size: 0.875rem; cursor: pointer; width: 100%; font-family: inherit;
    }
    .btn-search:hover { background: var(--terracotta-hover); }
    .booking-form-error { display: none; font-size: 0.8125rem; color: var(--terracotta); font-weight: 600; margin: 0; }
    .booking-form-error.is-visible { display: block; }
