  /* ═══════════════════════════════════════════════════════════
     INTERACTIVE MAP OF ITALY — Soprano Villas
     Layout: quiz-style header · horizontal filters · 70/30 split
  ═══════════════════════════════════════════════════════════ */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --sv-primary:    #0e5d6c;
    --sv-primary-dk: #0b4a56;
    --sv-primary-xdk:#072f38;
    --sv-coral:      #f08a79;
    --sv-coral-dk:   #e0705e;
    --sv-gold:       #e8b84b;
    --sv-dark:       #0d2535;
    --sv-land:       #c2d8d4;
    --sv-land-hover: #79b8ae;
    --sv-land-active:#0e5d6c;
    --sv-land-dim:   #c8d6d8;
    --sv-land-static:#d2dfe3;
    --sv-bg:         #fdfafb;
    --ff-serif: 'Playfair Display', Georgia, serif;
    --ff-sans:  'Source Sans 3', system-ui, sans-serif;
  }

  html, body {
    height: 100%; overflow: hidden;
    background: var(--sv-dark);
    font-family: var(--ff-sans);
  }

  /* ── Root shell ─────────────────────────────────────────── */
  .sv-shell {
    display: flex;
    flex-direction: column;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
  }

  /* ════════════════════════════════════════════════════════
     HEADER — quiz-style, full width, teal
  ════════════════════════════════════════════════════════ */
  .sv-header {
    background: var(--sv-primary);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 32px;
    border-bottom: 1px solid rgba(255,255,255,.10);
  }
  .sv-logo {
    display: block;
    text-decoration: none;
    flex-shrink: 0;
  }
  .sv-logo img {
    height: 38px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: .95;
    display: block;
  }
  .sv-header-title {
    text-align: right;
  }
  .sv-header-title h1 {
    font-family: var(--ff-serif);
    font-size: clamp(1.1rem, 2.2vw, 1.55rem);
    font-weight: 400;
    font-style: italic;
    color: #fff;
    line-height: 1.2;
  }
  .sv-header-title p {
    font-family: var(--ff-sans);
    font-size: .65rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
    margin-top: 3px;
  }

  /* ════════════════════════════════════════════════════════
     FILTER BAR — full width, horizontal, below header
  ════════════════════════════════════════════════════════ */
  .sv-filterbar {
    background: var(--sv-primary-xdk);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 32px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .sv-filterbar-question {
    font-family: var(--ff-serif);
    font-size: .95rem;
    font-style: italic;
    color: rgba(255,255,255,.82);
    white-space: nowrap;
    flex-shrink: 0;
    margin-right: 6px;
  }
  .sv-tag-group {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    align-items: center;
    flex: 1;
  }
  .sv-tag {
    font-family: var(--ff-sans);
    font-size: .80rem;
    font-weight: 600;
    color: rgba(255,255,255,.80);
    background: rgba(255,255,255,.10);
    border: 1.5px solid rgba(255,255,255,.22);
    border-radius: 50px;
    padding: 7px 16px;
    cursor: pointer;
    transition: background .18s, color .18s, border-color .18s, transform .12s;
    white-space: nowrap;
  }
  .sv-tag:hover {
    background: rgba(255,255,255,.20);
    color: #fff;
    border-color: rgba(255,255,255,.50);
  }
  .sv-tag.active {
    background: var(--sv-gold);
    color: #0e3d47;
    border-color: var(--sv-gold);
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(232,184,75,.40);
  }

  /* Match count badge — inline in filter bar */
  .sv-match-badge {
    display: none;
    align-items: center;
    gap: 8px;
    font-family: var(--ff-sans);
    font-size: .80rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    padding-left: 4px;
  }
  .sv-match-badge.show { display: flex; }
  .sv-reset-btn {
    background: rgba(255,255,255,.18);
    border: 1.5px solid rgba(255,255,255,.55);
    border-radius: 100px;
    color: #fff;
    font-family: var(--ff-sans);
    font-size: .78rem;
    font-weight: 700;
    padding: 4px 12px;
    cursor: pointer;
    transition: background .18s, border-color .18s;
    letter-spacing: .02em;
  }
  .sv-reset-btn:hover { background: rgba(255,255,255,.30); border-color: rgba(255,255,255,.80); }

  /* ════════════════════════════════════════════════════════
     CONTENT ROW — fills remaining space
  ════════════════════════════════════════════════════════ */
  .sv-content {
    flex: 1;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    min-height: 0;
  }

  /* ── MAP SIDE (70%) ────────────────────────────────────── */
  .sv-map-col {
    flex: 0 0 70%;
    position: relative;
    overflow: hidden;
    background: var(--sv-dark);
  }
  .sv-map-stage {
    position: absolute;
    inset: 0;
  }
  .sv-map-stage svg {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    /* preserveAspectRatio="xMidYMid meet" on the SVG element
       handles centering + contain — fills all space, never clips */
  }

  /* Map region styles */
  .map-region {
    fill: var(--sv-land);
    stroke: rgba(255,255,255,.55);
    stroke-width: 1;
    cursor: pointer;
    transition: fill .22s ease, opacity .30s ease;
    opacity: 0;
  }
  .map-region.ready         { opacity: 1; }
  .map-region:focus         { outline: none; }
  .map-region:hover,
  .map-region:focus-visible { fill: var(--sv-land-hover); outline: none; }
  .map-region.matched       { fill: var(--sv-land-active); }
  .map-region.matched:hover { fill: var(--sv-primary-dk); }
  .map-region.dimmed        { fill: var(--sv-land-static); opacity: 1; }
  .map-region.selected      { stroke: #fff !important; stroke-width: 2.5 !important; filter: drop-shadow(0 0 5px rgba(255,255,255,.55)); }
  .map-static {
    fill: var(--sv-land-static);
    stroke: rgba(255,255,255,.4);
    stroke-width: .7;
    pointer-events: all;
    cursor: default;
    opacity: 0;
  }
  /* Tooltip for no-villa static regions */
  .sv-map-tip {
    position: absolute;
    background: rgba(10,40,46,.88);
    color: #fff;
    font-family: var(--ff-sans);
    font-size: .78rem;
    padding: 5px 10px;
    border-radius: 6px;
    pointer-events: none;
    white-space: nowrap;
    opacity: 0;
    transition: opacity .15s ease;
    z-index: 99;
  }
  .sv-map-tip.show { opacity: 1; }
  .map-static.ready { opacity: 1; }
  .map-static.map-clickable {
    pointer-events: all;
    cursor: pointer;
    transition: fill .20s ease, opacity .30s ease;
  }
  .map-static.map-clickable:focus        { outline: none; }
  .map-static.map-clickable:hover        { fill: #b0c8cc; }
  .map-static.map-clickable.selected     { stroke: #fff !important; stroke-width: 2.5 !important; filter: drop-shadow(0 0 5px rgba(255,255,255,.55)); }

  /* Bottom stats strip on map */
  .sv-map-bottom {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 10px 22px;
    background: linear-gradient(to top, rgba(13,37,53,.88) 0%, transparent 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
    z-index: 100;
  }
  .sv-stats {
    font-family: var(--ff-sans);
    font-size: .70rem;
    color: rgba(255,255,255,.60);
    letter-spacing: .06em;
  }
  .sv-stats strong { color: rgba(255,255,255,.88); font-weight: 600; }
  .sv-quiz-link {
    font-family: var(--ff-sans);
    font-size: .70rem;
    color: rgba(255,255,255,.60);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,.25);
    padding-bottom: 1px;
    pointer-events: all;
    transition: color .18s;
  }
  .sv-quiz-link:hover { color: var(--sv-coral); border-color: var(--sv-coral); }

  /* Tooltip */
  .sv-tip {
    position: fixed;
    background: var(--sv-primary-xdk);
    color: #fff;
    padding: 7px 13px 8px;
    font-family: var(--ff-sans);
    font-size: .74rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity .10s;
    white-space: nowrap;
    z-index: 9999;
    transform: translate(14px, -50%);
    box-shadow: 0 4px 20px rgba(0,0,0,.35);
    border-radius: 4px;
  }
  .sv-tip.show { opacity: 1; }
  .sv-tip strong { display: block; font-weight: 600; font-size: .78rem; margin-bottom: 1px; }
  .sv-tip span   { color: rgba(255,255,255,.52); font-size: .66rem; }

  /* ── OUTPUT PANEL (30%) ────────────────────────────────── */
  .sv-panel-close { display: none; } /* desktop: hidden */
  .sv-backdrop    { display: none; } /* desktop: hidden */
  .sv-panel {
    flex: 0 0 30%;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    background: var(--sv-bg);
    border-left: 1px solid rgba(255,255,255,.08);
    overflow: hidden;
  }

  /* Welcome / placeholder state */
  .sv-welcome {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 36px 28px;
    text-align: center;
    gap: 20px;
  }
  .sv-welcome-icon {
    font-size: 3rem;
    line-height: 1;
    animation: float 3s ease-in-out infinite;
  }
  @keyframes float {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
  }
  .sv-welcome h2 {
    font-family: var(--ff-serif);
    font-size: 1.45rem;
    font-weight: 400;
    font-style: italic;
    color: var(--sv-primary);
    line-height: 1.3;
  }
  .sv-welcome-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    text-align: left;
  }
  .sv-welcome-step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(14,93,108,.06);
    border: 1px solid rgba(14,93,108,.12);
    border-radius: 10px;
    padding: 12px 14px;
  }
  .sv-welcome-step-num {
    background: var(--sv-primary);
    color: #fff;
    font-family: var(--ff-sans);
    font-size: .75rem;
    font-weight: 700;
    width: 24px; height: 24px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .sv-welcome-step p {
    font-family: var(--ff-sans);
    font-size: .92rem;
    color: #2c3e44;
    line-height: 1.55;
  }
  .sv-welcome-step p strong {
    display: block;
    font-weight: 700;
    color: var(--sv-primary);
    margin-bottom: 3px;
    font-size: .82rem;
    letter-spacing: .04em;
    text-transform: uppercase;
  }

  /* Region info panel */
  .sv-region-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 0;
  }

  /* Hero image */
  .sv-region-img-wrap {
    position: relative;
    height: 175px;
    flex-shrink: 0;
    overflow: hidden;
    background: var(--sv-primary);
  }
  .sv-region-img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
  }
  .sv-region-panel.loaded .sv-region-img { transform: scale(1.04); }
  .sv-region-img-gradient {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.08) 0%, rgba(0,0,0,.60) 100%);
  }
  .sv-region-hero-text {
    position: absolute;
    bottom: 16px; left: 18px; right: 18px;
  }
  .sv-region-eyebrow {
    font-family: var(--ff-sans);
    font-size: .75rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255,255,255,.92);
    margin-bottom: 7px;
    text-shadow: 0 1px 5px rgba(0,0,0,.5);
  }
  .sv-region-name {
    font-family: var(--ff-serif);
    font-size: 2.1rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0,0,0,.5);
  }

  .sv-region-tags {
    display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px;
  }
  .sv-region-tag {
    font-family: var(--ff-sans);
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--sv-primary);
    background: rgba(14,93,108,.10);
    padding: 5px 11px;
    border-radius: 4px;
  }
  .sv-region-tagline {
    font-family: var(--ff-sans);
    font-size: 1.08rem;
    font-weight: 500;
    color: #1c3035;
    line-height: 1.55;
    margin-bottom: 15px;
  }
  /* ── Main CTA button (inside body, clear button look) ─── */
  .sv-region-desc {
    font-family: var(--ff-sans);
    font-size: 1.0rem;
    font-weight: 400;
    color: #1e3035;
    line-height: 1.75;
    margin-top: 0;
    margin-bottom: 18px;
  }

  /* Temperature table */
  .sv-temps {
    margin-top: 18px;
    margin-bottom: 22px;
  }
  .sv-temps-title {
    font-family: var(--ff-sans);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
    color: #3e6570;
    margin-bottom: 10px;
  }
  .sv-section-label {
    font-family: var(--ff-sans);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
    color: #3e6570;
    margin-bottom: 10px;
    display: block;
  }
  .sv-highlights {
    margin-bottom: 20px;
  }
  .sv-highlights-list {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .sv-highlights-list li {
    font-size: 1.0rem;
    color: #1a3038;
    padding: 8px 0 8px 22px;
    position: relative;
    border-bottom: 1px solid #edf2f3;
    line-height: 1.5;
  }
  .sv-highlights-list li:last-child { border-bottom: none; }
  .sv-highlights-list li::before {
    content: '▸';
    position: absolute;
    left: 2px;
    color: var(--sv-coral);
    font-size: .85rem;
    top: 9px;
  }
  .sv-temps-inner {
    margin-top: 4px;
  }
  .sv-temps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 7px;
  }
  .sv-temp-cell {
    background: #f2f7f8;
    border-radius: 9px;
    padding: 12px 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
  }
  .sv-temp-icon  { font-size: 1.45rem; line-height: 1; }
  .sv-temp-season {
    font-family: var(--ff-sans);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #3e6570;
  }
  .sv-temp-val {
    font-family: var(--ff-sans);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--sv-primary);
  }

  .sv-region-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 15px 20px;
    background: var(--sv-primary);
    color: #fff;
    text-decoration: none;
    font-family: var(--ff-sans);
    font-size: 1.0rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    border-radius: 8px;
    transition: background .18s, transform .15s, box-shadow .18s;
    box-shadow: 0 3px 12px rgba(14,93,108,.28);
  }
  .sv-region-cta:hover {
    background: var(--sv-primary-dk);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 5px 18px rgba(14,93,108,.38);
  }
  .sv-region-cta-arrow {
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: transform .18s;
  }
  .sv-region-cta:hover .sv-region-cta-arrow { transform: translateX(4px); }
  .sv-no-villas {
    font-family: var(--ff-sans);
    font-size: 1.0rem;
    color: #2c4a52;
    background: #eef5f7;
    border: 1px solid #c4dce2;
    border-radius: 8px;
    padding: 16px 20px;
    line-height: 1.65;
  }

  /* ── Airport cards (Getting There tab) ──────────────────── */
  .sv-airport-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
  }
  .sv-airport-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f4f8f9;
    border: 1px solid #dce8ea;
    border-radius: 10px;
    padding: 13px 16px;
  }
  .sv-airport-left {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .sv-airport-code {
    font-family: var(--ff-sans);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--sv-primary);
    background: rgba(14,93,108,.11);
    padding: 4px 9px;
    border-radius: 5px;
    letter-spacing: .05em;
  }
  .sv-airport-city {
    font-family: var(--ff-sans);
    font-size: 1.0rem;
    font-weight: 500;
    color: #1e3035;
  }
  .sv-airport-right {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .sv-airport-drive-icon { font-size: 1rem; }
  .sv-airport-drive {
    font-family: var(--ff-sans);
    font-size: .92rem;
    font-weight: 600;
    color: #3e6570;
  }
  .sv-airport-note {
    font-family: var(--ff-sans);
    font-size: .80rem;
    color: #7a9fa8;
    font-style: italic;
    line-height: 1.5;
  }

  /* ── Tab bar ─────────────────────────────────────────────── */
  .sv-tabs {
    flex-shrink: 0;
    display: flex;
    background: #f7fafb;
    border-bottom: 2px solid #e0eaec;
  }
  .sv-tab {
    flex: 1;
    font-family: var(--ff-sans);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #5a8490;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    padding: 11px 2px;
    cursor: pointer;
    white-space: nowrap;
    transition: color .18s, border-color .18s, background .18s;
  }
  .sv-tab:hover { color: var(--sv-primary); background: rgba(14,93,108,.04); }
  .sv-tab.active {
    color: var(--sv-primary);
    border-bottom-color: var(--sv-primary);
    background: #fff;
  }

  /* ── Tab body (scrollable area) ─────────────────────────── */
  .sv-tab-body {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 0;
  }
  .sv-tab-pane {
    display: none;
    padding: 18px 22px 14px;
  }
  .sv-tab-pane.active { display: block; }

  /* ── Sticky CTA footer ───────────────────────────────────── */
  .sv-cta-footer {
    flex-shrink: 0;
    padding: 12px 16px 14px;
    background: #fff;
    border-top: 1px solid #e0eaec;
    box-shadow: 0 -4px 16px rgba(0,0,0,.08);
  }

  /* ══════════════════════════════════════════════════════════
     SEASONS TAB — month strip, season accordion, avoid card
  ══════════════════════════════════════════════════════════ */

  /* Month strip */
  .sv-month-strip {
    display: flex; gap: 4px; overflow-x: auto;
    scrollbar-width: none; padding-bottom: 2px; margin-bottom: 14px;
  }
  .sv-month-strip::-webkit-scrollbar { display: none; }
  .sv-month-btn {
    flex-shrink: 0;
    font-family: var(--ff-sans); font-size: .72rem; font-weight: 700;
    color: #5a8490; background: #f2f7f8;
    border: 1.5px solid #dce8ea; border-radius: 20px;
    padding: 5px 10px; cursor: pointer;
    transition: background .16s, color .16s, border-color .16s;
    position: relative;
  }
  .sv-month-btn:hover { background: #e0eff2; color: var(--sv-primary); }
  .sv-month-btn.has-event::after {
    content: ''; position: absolute; top: 3px; right: 3px;
    width: 5px; height: 5px; border-radius: 50%;
    background: var(--sv-gold);
  }
  .sv-month-btn.best {
    background: rgba(14,93,108,.10);
    border-color: var(--sv-primary);
    color: var(--sv-primary);
  }
  .sv-month-btn.active {
    background: var(--sv-primary); color: #fff;
    border-color: var(--sv-primary-dk);
  }
  .sv-month-detail {
    background: #f4f8f9; border: 1px solid #dce8ea;
    border-radius: 10px; padding: 14px 16px;
    margin-bottom: 18px; display: none;
    animation: fadeSlide .18s ease;
  }
  .sv-month-detail.show { display: block; }
  @keyframes fadeSlide {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .sv-month-detail-vibe {
    font-family: var(--ff-sans); font-size: .90rem;
    color: #1e3035; line-height: 1.6; margin-bottom: 10px;
  }
  .sv-month-event-list { display: flex; flex-direction: column; gap: 7px; }
  .sv-month-event {
    display: flex; align-items: flex-start; gap: 10px;
    background: #fff; border: 1px solid #e0eaec;
    border-radius: 8px; padding: 10px 12px; text-decoration: none;
    transition: border-color .16s, box-shadow .16s;
  }
  .sv-month-event:hover {
    border-color: var(--sv-primary);
    box-shadow: 0 2px 8px rgba(14,93,108,.12);
  }
  .sv-month-event-icon { font-size: 1.2rem; flex-shrink: 0; line-height: 1.3; }
  .sv-month-event-body { flex: 1; }
  .sv-month-event-name {
    font-family: var(--ff-sans); font-size: .92rem;
    font-weight: 600; color: var(--sv-primary); display: block;
  }
  .sv-month-event-city {
    font-family: var(--ff-sans); font-size: .80rem;
    color: #5a8490; margin-top: 1px; display: block;
  }
  .sv-month-event-link {
    font-family: var(--ff-sans); font-size: .74rem;
    color: var(--sv-coral); font-weight: 600; margin-top: 3px;
    display: inline-block;
  }
  .sv-month-no-events {
    font-family: var(--ff-sans); font-size: .86rem;
    color: #7a9fa8; font-style: italic;
  }

  /* Season accordion */
  .sv-season-accordion {
    margin-bottom: 18px;
    border-top: 1px solid #dce8ea;
  }
  .sv-season-row {
    border-bottom: 1px solid #dce8ea;
    overflow: hidden;
  }
  .sv-season-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 4px; cursor: pointer; user-select: none;
    transition: background .15s;
  }
  .sv-season-header:hover { background: #f4f8f9; }
  .sv-season-header-left { display: flex; align-items: center; gap: 10px; }
  .sv-season-icon { font-size: 1.2rem; }
  .sv-season-name {
    font-family: var(--ff-sans); font-size: 1.0rem;
    font-weight: 800; color: #1e3035;
    text-transform: uppercase; letter-spacing: .07em;
  }
  .sv-season-months {
    font-family: var(--ff-sans); font-size: .78rem;
    color: #5a8490; margin-left: 4px;
  }
  .sv-season-chevron {
    font-size: .75rem; color: #5a8490;
    transition: transform .22s; flex-shrink: 0;
  }
  .sv-season-row.open .sv-season-chevron { transform: rotate(180deg); }
  .sv-season-body {
    max-height: 0; overflow: hidden;
    transition: max-height .28s cubic-bezier(.4,0,.2,1);
  }
  .sv-season-row.open .sv-season-body { max-height: 300px; }
  .sv-season-text {
    font-family: var(--ff-sans); font-size: .90rem;
    color: #2c3e44; line-height: 1.7;
    padding: 0 16px 14px;
  }

  /* Events tab — accordion */
  .sv-events-accordion { border-top: 1px solid #dce8ea; }
  .sv-event-row { border-bottom: 1px solid #dce8ea; overflow: hidden; }
  .sv-event-header {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 4px; cursor: pointer; user-select: none;
    transition: background .15s;
  }
  .sv-event-header:hover { background: #f4f8f9; }
  .sv-event-icon { font-size: 1.1rem; flex-shrink: 0; line-height: 1; }
  .sv-event-name {
    flex: 1; font-family: var(--ff-sans); font-size: .87rem;
    font-weight: 700; color: #1e3035; line-height: 1.3;
  }
  .sv-event-month {
    flex-shrink: 0; font-family: var(--ff-sans); font-size: .62rem;
    font-weight: 800; text-transform: uppercase; letter-spacing: .07em;
    color: var(--sv-primary); background: rgba(14,93,108,.10);
    border-radius: 5px; padding: 3px 6px; white-space: nowrap;
  }
  .sv-event-chevron {
    flex-shrink: 0; font-size: .70rem; color: #93b8c0;
    transition: transform .22s;
  }
  .sv-event-row.open .sv-event-chevron { transform: rotate(180deg); }
  .sv-event-body {
    max-height: 0; overflow: hidden;
    transition: max-height .3s ease;
    padding: 0 4px;
  }
  .sv-event-row.open .sv-event-body { max-height: 240px; padding: 0 4px 14px; }
  .sv-event-desc {
    font-family: var(--ff-serif); font-size: .87rem;
    color: #3a5a60; line-height: 1.6; margin: 0 0 11px;
  }
  .sv-event-link-btn {
    display: inline-block; font-family: var(--ff-sans);
    font-size: .70rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: .07em; color: var(--sv-primary);
    border: 1.5px solid var(--sv-primary); border-radius: 5px;
    padding: 5px 11px; text-decoration: none;
    transition: background .15s, color .15s;
  }
  .sv-event-link-btn:hover { background: var(--sv-primary); color: #fff; }
  .sv-events-empty {
    font-family: var(--ff-sans); font-size: .90rem;
    color: #7a9fa8; padding: 24px 0; text-align: center;
  }

  /* Avoid card */
  .sv-avoid-card {
    display: flex; gap: 12px; align-items: flex-start;
    background: #fff8ec; border: 1.5px solid #f0c96a;
    border-radius: 10px; padding: 14px 16px; margin-bottom: 4px;
  }
  .sv-avoid-icon { font-size: 1.3rem; flex-shrink: 0; line-height: 1.2; }
  .sv-avoid-text {
    font-family: var(--ff-sans); font-size: .92rem;
    color: #5a3e00; line-height: 1.6;
  }

  /* ══════════════════════════════════════════════════════════
     EXPERIENCES TAB — headline, experience cards, restaurant
  ══════════════════════════════════════════════════════════ */

  /* Luxury headline */
  .sv-lux-headline {
    font-family: var(--ff-serif); font-size: 1.15rem;
    font-style: italic; font-weight: 400;
    color: var(--sv-primary-dk); line-height: 1.45;
    border-left: 3px solid var(--sv-gold);
    padding: 4px 0 4px 14px; margin-bottom: 20px;
  }

  /* Experience cards */
  .sv-exp-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
  .sv-exp-card {
    border: 1px solid #dce8ea; border-radius: 10px;
    overflow: hidden; background: #fff;
  }
  .sv-exp-header {
    display: flex; align-items: center; gap: 12px;
    padding: 13px 16px; cursor: pointer; user-select: none;
    transition: background .15s;
  }
  .sv-exp-header:hover { background: #f4f8f9; }
  .sv-exp-icon { font-size: 1.3rem; flex-shrink: 0; }
  .sv-exp-title {
    font-family: var(--ff-sans); font-size: .95rem;
    font-weight: 800; color: #1e3035; flex: 1;
    text-transform: uppercase; letter-spacing: .05em;
  }
  .sv-exp-chevron {
    font-size: .72rem; color: #5a8490;
    transition: transform .22s; flex-shrink: 0;
  }
  .sv-exp-card.open .sv-exp-chevron { transform: rotate(180deg); }
  .sv-exp-body {
    max-height: 0; overflow: hidden;
    transition: max-height .28s cubic-bezier(.4,0,.2,1);
    border-top: 1px solid transparent;
  }
  .sv-exp-card.open .sv-exp-body {
    max-height: 160px;
    border-top-color: #e8f0f2;
  }
  .sv-exp-desc {
    font-family: var(--ff-sans); font-size: .88rem;
    color: #2c3e44; line-height: 1.65;
    padding: 12px 16px 14px;
  }


  /* Property type badge */
  .sv-prop-type-badge {
    display: inline-block;
    font-family: var(--ff-sans); font-size: .72rem; font-weight: 700;
    letter-spacing: .07em; text-transform: uppercase;
    color: #3e6570; background: #eef5f7;
    border: 1px solid #c8dde2; border-radius: 4px;
    padding: 4px 10px; margin-bottom: 10px;
  }

  /* Getting There — extra links */
  .sv-travel-links {
    display: flex; flex-direction: column; gap: 8px; margin-top: 16px;
  }
  .sv-travel-link {
    display: flex; align-items: center; gap: 10px;
    background: #f4f8f9; border: 1px solid #dce8ea;
    border-radius: 10px; padding: 12px 16px;
    text-decoration: none; color: #1e3035;
    font-family: var(--ff-sans); font-size: .92rem; font-weight: 500;
    transition: border-color .16s, box-shadow .16s;
  }
  .sv-travel-link:hover {
    border-color: var(--sv-primary);
    box-shadow: 0 2px 8px rgba(14,93,108,.12);
    color: var(--sv-primary);
  }
  .sv-travel-link-icon { font-size: 1.1rem; flex-shrink: 0; }
  .sv-travel-link-label { flex: 1; }
  .sv-travel-link-arrow { color: #5a8490; font-size: .85rem; }

  /* ── Sub-region section ────────────────────────────────── */
  .sv-region-sub-section {
    flex-shrink: 0;
    background: #f4f8f9;
    border-top: 2px solid #e0eaec;
  }
  .sv-region-sub-label {
    font-family: var(--ff-sans);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #3e6570;
    padding: 12px 22px 8px;
    display: block;
  }
  /* Each sub-region as a full-width tappable button */
  .sv-region-sub-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px 22px;
    background: #fff;
    border: none;
    border-top: 1px solid #e8eeef;
    color: var(--sv-primary);
    text-decoration: none;
    font-family: var(--ff-sans);
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .16s, padding-left .16s;
    text-align: left;
  }
  .sv-region-sub-btn:hover {
    background: rgba(14,93,108,.06);
    padding-left: 28px;
    color: var(--sv-primary-dk);
  }
  .sv-region-sub-btn-meta {
    font-size: .85rem;
    font-weight: 400;
    color: #3e6570;
    white-space: nowrap;
    margin-left: 8px;
  }


  /* ── Responsive ────────────────────────────────────────── */
  @media (max-width: 800px) {

    /* Header: slim down */
    .sv-header { padding: 10px 14px; }
    .sv-logo img { height: 28px; }
    .sv-header-title h1 { font-size: .95rem; }
    .sv-header-title p { display: none; }

    /* Filter bar: label on own line, chips scroll horizontally */
    .sv-filterbar {
      flex-direction: column;
      align-items: flex-start;
      padding: 8px 12px;
      gap: 6px;
    }
    .sv-filterbar-question { font-size: .78rem; margin-right: 0; }
    .sv-tag-group {
      flex-wrap: nowrap;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      width: 100%;
      padding-bottom: 2px;
    }
    .sv-tag-group::-webkit-scrollbar { display: none; }
    .sv-tag { font-size: .72rem; padding: 5px 12px; flex-shrink: 0; }
    .sv-match-badge { font-size: .72rem; flex-shrink: 0; }

    /* Map takes all content area */
    .sv-content { flex-direction: column; position: relative; }
    .sv-map-col { flex: 1; min-height: 0; }

    /* Panel: fixed bottom-sheet modal */
    .sv-panel {
      position: fixed;
      bottom: 0; left: 0; right: 0;
      height: 82vh;
      transform: translateY(110%);
      transition: transform .34s cubic-bezier(.4,0,.2,1);
      z-index: 200;
      border-left: none;
      border-radius: 18px 18px 0 0;
      box-shadow: 0 -6px 40px rgba(0,0,0,.30);
      width: 100%;
    }
    .sv-panel.mobile-open { transform: translateY(0); }

    /* Backdrop */
    .sv-backdrop {
      display: none;
      position: fixed; inset: 0;
      background: rgba(0,0,0,.45);
      z-index: 199;
    }
    .sv-backdrop.show { display: block; }

    /* Mobile close button */
    .sv-panel-close {
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      top: 12px; right: 14px;
      width: 32px; height: 32px;
      background: rgba(0,0,0,.12);
      border: none;
      border-radius: 50%;
      color: #fff;
      font-size: 1.1rem;
      cursor: pointer;
      z-index: 10;
      line-height: 1;
    }

    /* Drag handle visual cue */
    .sv-panel::before {
      content: '';
      display: block;
      width: 36px; height: 4px;
      background: rgba(255,255,255,.35);
      border-radius: 2px;
      position: absolute;
      top: 8px; left: 50%;
      transform: translateX(-50%);
    }

    /* Compact welcome */
    .sv-welcome { padding: 28px 16px 20px; gap: 14px; }
    .sv-welcome h2 { font-size: 1.15rem; }
    .sv-welcome-step { padding: 10px 12px; }
    .sv-welcome-steps { gap: 8px; }
    .sv-tab { font-size: .78rem; padding: 10px 3px; }
    .sv-tab-pane { padding: 16px 18px 12px; }
    .sv-meta-strip { padding: 10px 16px 9px; }
    .sv-cta-footer { padding: 10px 14px 12px; }
  }

  /* Very small phones */
  @media (max-width: 380px) {
    .sv-panel { height: 88vh; }
  }
