  :root {
    --bg:        #f8f4ea;
    --panna:     #f0e6cf;
    --sage:      #dde6c8;
    --sage-dark: #87A554;
    --sage-deep: #4d6230;
    --ink:       #1f2418;
    --ink-soft:  #566048;
    --rule:      #d2cdb6;
    --rule-soft: #e8e1cb;
    --accent:    #87A554;
    --accent-ink:#ffffff;
    --accent-soft:#dfe8c5;
    --lemon:     #e9bb2a;
    --surface:   #ffffff;
    --dark:      #2c3a1f;
    --darkest:   #1f2a14;

    --serif: "Fraunces", Georgia, serif;
    --sans:  "DM Sans", system-ui, sans-serif;
    --w-title: 400;
    --tr-title: -0.015em;

    --section-y: 64px;
    --section-y-lg: 96px;
  }

  html, body { margin: 0; padding: 0; background: var(--bg); }
  body {
    font-family: var(--sans);
    color: var(--ink-soft);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  *, *::before, *::after { box-sizing: border-box; }

  .h-serif {
    font-family: var(--serif);
    font-weight: var(--w-title);
    letter-spacing: var(--tr-title);
    line-height: 1.05;
  }
  .h-italic { font-family: var(--serif); font-style: italic; font-weight: var(--w-title); }

  .label {
    font-family: var(--sans);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 11px;
    font-weight: 500;
    color: var(--ink-soft);
  }
  .label-accent { color: var(--sage-dark); }

  .container { max-width: 1240px; margin: 0 auto; padding: 0 48px; }

  /* Header — sticky, frosted */
  .bs-header {
    position: sticky; top: 0; z-index: 50;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: background .3s ease, backdrop-filter .3s ease;
  }
  .bs-header.is-scrolled {
    background: color-mix(in srgb, var(--bg) 86%, transparent);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
  }
  .bs-header-row {
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
  }
  .bs-nav { display: flex; gap: 32px; align-items: center; }

  /* Hamburger — visibile solo su mobile */
  .bs-hamburger {
    display: none;
    width: 40px; height: 40px;
    background: transparent;
    border: 0;
    padding: 8px;
    cursor: pointer;
    align-items: center; justify-content: center;
    flex-direction: column;
    gap: 5px;
  }
  .bs-hamburger span {
    display: block;
    width: 22px; height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: background .25s, transform .25s, opacity .25s;
    box-shadow: 0 1px 2px rgba(0,0,0,0.18);
  }
  .bs-header.is-scrolled .bs-hamburger span {
    background: var(--ink); box-shadow: none;
  }
  .bs-hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .bs-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .bs-hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .bs-nav a {
    color: #fff; text-decoration: none;
    font-size: 13.5px; letter-spacing: 0.01em;
    transition: color .25s; white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0,0,0,0.18);
  }
  .bs-nav a:hover { color: rgba(255,255,255,0.72); }
  .bs-header.is-scrolled .bs-nav a {
    color: var(--ink-soft);
    text-shadow: none;
  }
  .bs-header.is-scrolled .bs-nav a:hover { color: var(--sage-dark); }
  .bs-cta {
    background: var(--accent);
    color: var(--accent-ink);
    padding: 11px 20px;
    border-radius: 999px;
    font-size: 12.5px; letter-spacing: 0.06em; font-weight: 500;
    text-transform: uppercase; text-decoration: none;
    transition: transform .2s, box-shadow .2s;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .bs-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px color-mix(in srgb, var(--accent) 45%, transparent);
  }
  .bs-logo {
    display: inline-flex; align-items: center;
    text-decoration: none;
    line-height: 0;
  }
  .bs-logo img { height: 52px; width: auto; display: block; }

  /* HERO — dome cupola fissa, si restringe in altezza con lo scroll */
  :root {
    --hero-h: 80vh;
  }
  .bs-hero {
    position: fixed;
    top: 0; left: 0; right: 0;
    width: 100vw;
    height: var(--hero-h);
    background: var(--sage);
    z-index: 10;
    overflow: hidden;
    will-change: height;
  }
  .bs-hero-video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
    -webkit-clip-path: url(#dome-mask);
    clip-path: url(#dome-mask);
  }
  .bs-content-wrap {
    position: relative;
    margin-top: var(--hero-h);
    z-index: 5;
    background: var(--bg);
  }
  .bs-hero-veil {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.30) 0%, rgba(0,0,0,.10) 30%, rgba(0,0,0,.10) 55%, rgba(0,0,0,.55) 100%);
    -webkit-clip-path: url(#dome-mask);
    clip-path: url(#dome-mask);
    z-index: 1;
    pointer-events: none;
  }
  .bs-hero-content {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 0 0 64px;
    color: #fff;
    z-index: 2;
    -webkit-clip-path: url(#dome-mask);
    clip-path: url(#dome-mask);
    will-change: opacity;
  }
  /* SVG defs holder, invisibile */
  .bs-svg-defs {
    position: absolute; width: 0; height: 0;
    overflow: hidden;
    pointer-events: none;
  }
  .bs-hero-claim {
    font-family: var(--serif);
    font-size: clamp(48px, 6.6vw, 92px);
    line-height: 1.02;
    letter-spacing: var(--tr-title);
    max-width: 920px;
    color: #fff;
    font-weight: var(--w-title);
    margin: 0;
  }
  .bs-hero-claim em { font-style: italic; color: var(--accent); }
  .bs-hero-sub {
    font-family: var(--sans);
    font-size: 17px;
    color: rgba(255,255,255,.92);
    margin-top: 22px;
    max-width: 560px;
    line-height: 1.5;
  }
  .bs-hero-bottom {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 40px;
  }
  .bs-hero-meta {
    display: flex; gap: 14px; align-items: center;
    font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(255,255,255,.85);
  }
  .bs-hero-meta .dot {
    width: 3px; height: 3px; border-radius: 50%; background: var(--accent);
    display: inline-block;
  }
  .bs-hero-tag {
    display: flex; align-items: center; gap: 8px;
    font-size: 11.5px; letter-spacing: 0.22em; text-transform: uppercase;
    color: rgba(255,255,255,.85);
    margin-bottom: 28px;
  }
  .bs-hero-tag .pill {
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.22);
    padding: 6px 12px; border-radius: 999px;
    backdrop-filter: blur(8px);
    white-space: nowrap;
  }

  /* Quick search bar — sovrapposto fra fine hero e welcome */
  .bs-quicksearch-wrap {
    position: relative;
    max-width: 1144px;
    margin: -44px auto 0;
    padding: 0 48px;
    z-index: 20;
  }
  .bs-quicksearch {
    background: var(--surface);
    border: 1px solid var(--rule-soft);
    border-radius: 14px;
    padding: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr auto;
    gap: 4px;
    box-shadow: 0 24px 60px rgba(40,30,10,.12);
  }
  .bs-qs-cell {
    padding: 10px 18px;
    display: flex; flex-direction: column; gap: 4px;
    border-right: 1px solid var(--rule-soft);
  }
  .bs-qs-cell:nth-child(4) { border-right: 0; }
  .bs-qs-cell label {
    font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--ink-soft); font-weight: 500;
  }
  .bs-qs-cell input,
  .bs-qs-cell select {
    appearance: none; -webkit-appearance: none;
    border: 0; background: transparent; outline: none;
    font-family: var(--sans); font-size: 14.5px;
    color: var(--ink-soft); padding: 0;
    letter-spacing: -0.005em;
  }
  .bs-qs-cell select {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='%231f1d16' opacity='.55' d='M0 0h10L5 6z'/></svg>");
    background-repeat: no-repeat; background-position: right 0 center; padding-right: 16px;
  }
  .bs-qs-submit {
    background: var(--accent); color: var(--accent-ink);
    border: 0; padding: 0 28px; border-radius: 10px;
    font-family: var(--sans); font-size: 12.5px;
    letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
    cursor: pointer; transition: background .15s, transform .15s;
    display: inline-flex; align-items: center; gap: 10px;
    white-space: nowrap;
  }
  .bs-qs-submit:hover {
    background: color-mix(in srgb, var(--accent) 88%, white);
    transform: translateY(-1px);
  }

  /* Welcome */
  .bs-welcome {
    padding: var(--section-y-lg) 0 var(--section-y);
    background: var(--panna);
  }
  .bs-welcome-row {
    display: grid;
    grid-template-columns: 0.9fr 1.3fr;
    gap: 96px;
    align-items: start;
  }
  .bs-welcome h2 {
    font-family: var(--serif);
    font-weight: var(--w-title);
    letter-spacing: var(--tr-title);
    font-size: clamp(40px, 4.8vw, 64px);
    line-height: 1.04;
    margin: 14px 0 0;
    color: var(--ink-soft);
  }
  .bs-welcome h2 em { font-style: italic; color: var(--sage-dark); }
  .bs-welcome p {
    font-size: 18px; line-height: 1.6;
    color: var(--ink-soft); margin: 0 0 16px; max-width: 56ch;
  }
  .bs-welcome p.lead {
    font-size: 21px; line-height: 1.5;
    letter-spacing: -0.005em;
  }
  .bs-welcome p.muted { color: var(--ink-soft); font-size: 16px; }
  .bs-welcome-atmos {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--rule);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 56ch;
  }
  .bs-welcome-atmos .item {
    display: flex; flex-direction: column; gap: 8px;
  }
  .bs-welcome-atmos .item .ico {
    color: var(--sage-dark);
    width: 22px; height: 22px;
  }
  .bs-welcome-atmos .item .lbl {
    font-family: var(--serif);
    font-style: italic;
    font-size: 17px;
    line-height: 1.25;
    color: var(--ink-soft);
  }
  .bs-welcome-atmos .item .sub {
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-soft);
    font-weight: 500;
  }

  /* Lemon — fixed bottom-right, stessa pill style dei tag della hero
     (bg translucido bianco + border + backdrop blur), con padding interno */
  .bs-lemon {
    position: fixed;
    right: 20px; bottom: 20px;
    width: 140px; height: 140px;
    z-index: 100;
    display: inline-flex; align-items: center; justify-content: center;
    text-decoration: none; cursor: pointer;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 50%;
    backdrop-filter: blur(12px) saturate(140%);
    -webkit-backdrop-filter: blur(12px) saturate(140%);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
    isolation: isolate;
  }
  .bs-lemon svg.spinner {
    position: absolute; inset: 0; margin: auto;
    width: 88%; height: 88%;
    animation: lemon-spin 26s linear infinite;
    transform-origin: 50% 50%;
    pointer-events: none;
  }
  .bs-lemon .lemon-art {
    width: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: transform .4s cubic-bezier(.2,.7,.3,1);
  }
  .bs-lemon .lemon-art svg { width: 100%; height: auto; display: block; }
  .bs-lemon:hover .lemon-art { transform: scale(1.04) rotate(-3deg); }
  @keyframes lemon-spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }

  /* Spheres */
  .bs-spheres {
    padding: var(--section-y-lg) 0;
    background: var(--sage);
  }
  .bs-spheres-head {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 56px;
    gap: 40px;
  }
  .bs-spheres-title {
    font-family: var(--serif);
    font-weight: var(--w-title);
    letter-spacing: var(--tr-title);
    font-size: clamp(40px, 4.8vw, 64px);
    line-height: 1.04;
    max-width: 640px;
    margin: 16px 0 0;
  }
  .bs-spheres-title em { font-style: italic; color: var(--sage-dark); }
  .bs-spheres-intro {
    max-width: 380px; font-size: 15px; line-height: 1.6;
    color: var(--ink-soft); margin: 0;
  }
  .bs-spheres-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .bs-sphere-card {
    background: var(--surface);
    border-radius: 18px;
    overflow: hidden;
    display: flex; flex-direction: column;
    cursor: pointer;
    transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s;
    box-shadow: 0 1px 0 rgba(40,30,10,.04);
    text-decoration: none; color: inherit;
  }
  .bs-sphere-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(40,30,10,.14);
  }
  .bs-sphere-photo {
    aspect-ratio: 5 / 4;
    overflow: hidden;
    position: relative;
    background: var(--rule);
  }
  .bs-sphere-photo .photo-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transition: transform .8s cubic-bezier(.2,.7,.3,1);
  }
  .bs-sphere-card:hover .photo-bg { transform: scale(1.05); }
  .bs-sphere-photo .num {
    position: absolute; top: 18px; left: 20px;
    font-family: var(--sans); font-size: 11px; letter-spacing: 0.2em;
    color: rgba(255,255,255,.92); font-weight: 500;
    background: rgba(0,0,0,.22);
    padding: 5px 10px; border-radius: 999px;
    backdrop-filter: blur(8px);
    white-space: nowrap;
  }
  .bs-sphere-photo .badge {
    position: absolute; top: 18px; right: 20px;
    font-family: var(--sans); font-size: 10.5px; letter-spacing: 0.2em;
    color: var(--accent-ink); font-weight: 600;
    background: var(--accent);
    padding: 5px 10px; border-radius: 999px;
    text-transform: uppercase; white-space: nowrap;
  }
  .bs-sphere-info {
    padding: 28px 28px 24px;
    display: flex; flex-direction: column; gap: 0;
  }
  .bs-sphere-name {
    font-family: var(--serif); font-weight: var(--w-title);
    letter-spacing: var(--tr-title);
    font-size: 34px; line-height: 1.05;
    margin: 0;
  }
  .bs-sphere-loc {
    margin-top: 6px; font-size: 13px;
    color: var(--ink-soft); letter-spacing: 0.01em;
  }
  .bs-sphere-meta {
    display: grid; grid-template-columns: repeat(4, 1fr);
    margin-top: 22px;
    font-size: 12.5px;
    color: var(--ink-soft);
    border-top: 1px solid var(--rule-soft);
  }
  .bs-sphere-meta-cell {
    padding: 14px 0 0;
    display: flex; flex-direction: column; align-items: flex-start; gap: 6px;
  }
  .bs-sphere-meta-cell svg { color: var(--sage-dark); }
  .bs-sphere-meta-cell .v {
    color: var(--ink-soft); font-size: 13px; font-weight: 500; white-space: nowrap;
  }
  .bs-sphere-link {
    display: inline-flex; align-items: center; justify-content: space-between;
    margin-top: 22px;
    padding: 14px 18px;
    background: var(--bg);
    border-radius: 10px;
    font-family: var(--sans); font-size: 13px;
    letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500;
    color: var(--ink-soft); text-decoration: none;
    transition: background .2s, color .2s;
    white-space: nowrap;
  }
  .bs-sphere-card:hover .bs-sphere-link {
    background: var(--ink); color: var(--bg);
  }
  .bs-sphere-link .arr { transition: transform .25s; }
  .bs-sphere-card:hover .bs-sphere-link .arr { transform: translateX(4px); }

  /* Gallery — carosello orizzontale */
  .bs-gallery {
    padding: var(--section-y-lg) 0 calc(var(--section-y-lg) - 12px);
    background: var(--bg);
    overflow: hidden;
  }
  .bs-gallery-head {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 48px; gap: 40px;
  }
  .bs-gallery-head h3 {
    font-family: var(--serif); font-weight: var(--w-title);
    letter-spacing: var(--tr-title);
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.05; margin: 14px 0 0;
    max-width: 640px;
  }
  .bs-gallery-head h3 em { font-style: italic; color: var(--sage-dark); }
  .bs-gallery-controls {
    display: flex; gap: 10px;
  }
  .bs-gallery-arrow {
    width: 48px; height: 48px;
    border-radius: 999px;
    border: 1px solid var(--rule);
    background: var(--surface);
    color: var(--ink-soft);
    cursor: pointer;
    font-size: 18px; line-height: 1;
    display: inline-flex; align-items: center; justify-content: center;
    transition: background .18s, color .18s, transform .18s;
  }
  .bs-gallery-arrow:hover { background: var(--ink); color: var(--bg); transform: translateY(-1px); }
  .bs-gallery-track {
    display: flex; gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 48px 12px;
    scrollbar-width: none;
    cursor: grab;
    user-select: none;
  }
  .bs-gallery-track:active { cursor: grabbing; }
  .bs-gallery-track::-webkit-scrollbar { display: none; }
  .bs-gallery-track.is-dragging { scroll-snap-type: none; }
  .bs-gallery-slide img,
  .bs-gallery-slide a,
  .bs-quote * { -webkit-user-drag: none; user-drag: none; }
  .bs-gallery-slide {
    flex: 0 0 auto;
    width: clamp(320px, 46vw, 620px);
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    scroll-snap-align: start;
    box-shadow: 0 12px 30px rgba(40,30,10,.08);
    position: relative;
  }
  .bs-gallery-slide .cap {
    position: absolute; left: 18px; bottom: 16px;
    color: rgba(255,255,255,.92);
    font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500;
    text-shadow: 0 1px 8px rgba(0,0,0,.4);
  }

  /* Testimonials — bianco/panna leggero */
  .bs-testimonials {
    padding: var(--section-y-lg) 0;
    background: var(--bg);
  }
  .bs-testimonials-head {
    text-align: center; margin-bottom: 56px;
  }
  .bs-testimonials-head h3 {
    font-family: var(--serif); font-weight: var(--w-title);
    letter-spacing: var(--tr-title);
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.05; margin: 14px 0 0;
  }
  .bs-testimonials-head h3 em { font-style: italic; color: var(--sage-dark); }
  .bs-testimonials-track {
    display: flex; gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 4px 48px 12px;
    scrollbar-width: none;
    cursor: grab;
    user-select: none;
  }
  .bs-testimonials-track:active { cursor: grabbing; }
  .bs-testimonials-track::-webkit-scrollbar { display: none; }
  .bs-quote {
    flex: 0 0 auto;
    width: clamp(280px, 30vw, 400px);
    scroll-snap-align: start;
    background: var(--surface);
    border: 1px solid var(--rule-soft);
    border-radius: 16px;
    padding: 32px 28px 26px;
    display: flex; flex-direction: column; gap: 18px;
    transition: transform .25s, box-shadow .25s;
  }
  .bs-quote:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(40,30,10,.08); }
  .bs-quote .mark {
    font-family: var(--serif); font-style: italic;
    font-size: 56px; line-height: 0.4; color: var(--sage-dark);
    height: 22px;
  }
  .bs-quote blockquote {
    margin: 0;
    font-family: var(--serif);
    font-size: 19px; line-height: 1.45;
    color: var(--ink-soft);
    letter-spacing: -0.005em;
  }
  .bs-quote cite {
    font-style: normal;
    font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--ink-soft); font-weight: 500;
  }
  .bs-quote .stars { color: var(--lemon); letter-spacing: 2px; font-size: 14px; }

  /* Entrance effects */
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s ease, transform .9s ease; }
  .reveal.is-in { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 80ms; }
  .reveal-delay-2 { transition-delay: 160ms; }
  .reveal-delay-3 { transition-delay: 240ms; }
  .reveal-stagger > * { opacity: 0; transform: translateY(22px); transition: opacity .8s ease, transform .8s ease; }
  .reveal-stagger.is-in > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0ms; }
  .reveal-stagger.is-in > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 90ms; }
  .reveal-stagger.is-in > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 180ms; }
  .reveal-stagger.is-in > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 270ms; }
  .reveal-stagger.is-in > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 360ms; }
  .reveal-stagger.is-in > *:nth-child(n+6) { opacity: 1; transform: translateY(0); transition-delay: 440ms; }
  @media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; transition: none !important; }
    .bs-lemon svg.spinner { animation: none !important; }
  }

  /* Amenities */
  .bs-amenities {
    padding: var(--section-y-lg) 0;
    background: var(--panna);
  }
  .bs-amenities-head {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
    align-items: end; margin-bottom: 64px;
  }
  .bs-amenities h3 {
    font-family: var(--serif);
    font-weight: var(--w-title);
    letter-spacing: var(--tr-title);
    font-size: clamp(38px, 4.4vw, 60px);
    line-height: 1.04;
    margin: 14px 0 0;
  }
  .bs-amenities h3 em { font-style: italic; color: var(--sage-dark); }
  .bs-amenities .head-text {
    font-size: 16px; line-height: 1.55; color: var(--ink-soft);
    max-width: 42ch; margin: 0;
  }
  .bs-amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
  .bs-amenity {
    background: var(--bg);
    border-radius: 14px;
    padding: 22px 22px 24px;
    display: flex; flex-direction: column; gap: 14px;
    transition: background .2s, transform .25s;
    min-height: 134px;
  }
  .bs-amenity:hover { background: var(--surface); transform: translateY(-2px); }
  .bs-amenity .ico {
    color: var(--sage-dark);
    width: 28px; height: 28px;
    display: inline-flex; align-items: center; justify-content: center;
  }
  .bs-amenity .lbl {
    font-size: 14.5px; line-height: 1.3;
    color: var(--ink-soft); letter-spacing: -0.005em;
  }

  /* Closing */
  .bs-closing {
    padding: var(--section-y-lg) 0;
    background: var(--sage);
    text-align: center;
    position: relative;
  }
  .bs-closing-quote {
    font-family: var(--serif);
    font-style: italic;
    font-weight: var(--w-title);
    font-size: clamp(36px, 4.6vw, 60px);
    line-height: 1.18;
    letter-spacing: var(--tr-title);
    max-width: 1000px;
    margin: 0 auto;
    color: var(--ink-soft);
  }
  .bs-closing-quote em { color: var(--accent); font-style: italic; }
  .bs-closing-attr {
    margin-top: 32px;
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--sage-dark); font-weight: 500;
  }

  /* Booking */
  .bs-prenota {
    padding: var(--section-y-lg) 0;
    background: var(--dark);
    color: #fff;
  }
  .bs-prenota-row {
    display: grid; grid-template-columns: 1fr 1.15fr; gap: 96px;
    align-items: end;
  }
  .bs-prenota h2 {
    font-family: var(--serif);
    font-weight: var(--w-title);
    letter-spacing: var(--tr-title);
    font-size: clamp(40px, 4.8vw, 64px);
    line-height: 1.04;
    margin: 18px 0 0;
    color: #fff;
  }
  .bs-prenota h2 em { font-style: italic; color: var(--accent); }
  .bs-prenota p {
    font-size: 16px; line-height: 1.6;
    color: rgba(255,255,255,.7);
    margin: 22px 0 0; max-width: 42ch;
  }
  .bs-prenota .label { color: rgba(255,255,255,.55); }

  .bs-form {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    padding: 32px;
    display: grid; gap: 18px;
  }
  .bs-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .bs-form label {
    display: flex; flex-direction: column; gap: 8px;
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(255,255,255,.6); font-weight: 500;
  }
  .bs-form input,
  .bs-form select {
    appearance: none; -webkit-appearance: none;
    background: transparent;
    border: 0; border-bottom: 1px solid rgba(255,255,255,.22);
    padding: 8px 0;
    color: #fff;
    font-family: var(--sans);
    font-size: 15px;
    letter-spacing: -0.005em;
    outline: none;
    transition: border-color .2s;
  }
  .bs-form input:focus,
  .bs-form select:focus { border-color: var(--accent); }
  .bs-form select {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='%23ffffff' opacity='.7' d='M0 0h10L5 6z'/></svg>");
    background-repeat: no-repeat; background-position: right 0 center; padding-right: 18px;
  }
  .bs-form input::placeholder { color: rgba(255,255,255,.32); }
  .bs-form-submit {
    background: var(--accent); color: var(--accent-ink);
    border: 0; padding: 16px 24px;
    font-family: var(--sans); font-size: 13px;
    letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600;
    cursor: pointer;
    transition: background .15s, transform .15s;
    border-radius: 999px;
    margin-top: 8px;
    display: inline-flex; align-items: center; justify-content: center; gap: 12px;
    white-space: nowrap;
  }
  .bs-form-submit:hover {
    background: color-mix(in srgb, var(--accent) 88%, white);
    transform: translateY(-1px);
  }
  .bs-form-note {
    font-size: 11px; color: rgba(255,255,255,.45);
    letter-spacing: 0.04em; line-height: 1.55;
  }

  /* Footer */
  .bs-footer {
    background: var(--darkest);
    color: rgba(255,255,255,.78);
    padding: 88px 0 36px;
  }
  .bs-footer-row {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 56px;
  }
  .bs-footer h4 {
    font-family: var(--sans); font-weight: 500;
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    color: rgba(255,255,255,.5);
    margin: 0 0 20px;
  }
  .bs-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
  .bs-footer a {
    color: rgba(255,255,255,.78);
    text-decoration: none;
    font-size: 14px;
    transition: color .15s;
  }
  .bs-footer a:hover { color: var(--accent); }
  .bs-footer-brand {
    display: inline-flex; align-items: center;
    line-height: 0;
  }
  .bs-footer-brand img {
    height: 42px; width: auto; display: block;
  }
  .bs-footer-tag {
    font-size: 14px; line-height: 1.55;
    color: rgba(255,255,255,.6);
    margin-top: 16px;
    max-width: 32ch;
  }
  .bs-footer-bottom {
    margin-top: 64px;
    padding-top: 26px;
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex; justify-content: space-between;
    font-size: 12px; color: rgba(255,255,255,.4);
    letter-spacing: 0.04em;
  }

  /* Responsive */
  /* TABLET / MOBILE — ≤960px */
  @media (max-width: 960px) {
    :root { --hero-h: 70vh; --section-y: 56px; --section-y-lg: 80px; }
    .container { padding: 0 24px; }

    /* Header — nav diventa drawer, appare hamburger */
    .bs-nav {
      display: none;
      position: fixed; inset: 72px 0 auto 0;
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      background: color-mix(in srgb, var(--bg) 96%, transparent);
      backdrop-filter: blur(20px) saturate(140%);
      -webkit-backdrop-filter: blur(20px) saturate(140%);
      padding: 16px 24px 28px;
      border-bottom: 1px solid var(--rule-soft);
      box-shadow: 0 18px 32px rgba(40,30,10,0.10);
    }
    .bs-nav.is-open { display: flex; }
    .bs-nav a {
      color: var(--ink-soft) !important;
      text-shadow: none !important;
      padding: 14px 4px;
      border-bottom: 1px solid var(--rule-soft);
      font-size: 16px;
    }
    .bs-nav a:last-child { border-bottom: 0; }
    .bs-hamburger { display: inline-flex; }
    .bs-cta { padding: 9px 16px; font-size: 11.5px; }

    /* Hero — niente altezza statica, lascia fare al JS+var --hero-h */
    .bs-hero-content { padding: 0 0 48px; }
    .bs-hero-claim { font-size: clamp(34px, 8vw, 56px); }
    .bs-hero-sub { font-size: 15px; margin-top: 14px; }
    .bs-hero-bottom { flex-direction: column; align-items: flex-start; gap: 18px; }
    .bs-hero-meta { display: none; }
    .bs-hero-tag { flex-wrap: wrap; margin-bottom: 18px; }

    /* Quicksearch — 1 colonna piena, submit full-width sotto */
    .bs-quicksearch-wrap { padding: 0 24px; margin-top: -32px; }
    .bs-quicksearch {
      grid-template-columns: 1fr 1fr;
      padding: 8px;
    }
    .bs-qs-cell { border-right: 0; border-bottom: 1px solid var(--rule-soft); padding: 10px 14px; }
    .bs-qs-cell:nth-child(3),
    .bs-qs-cell:nth-child(4) { border-right: 0; }
    .bs-qs-submit { grid-column: 1 / -1; padding: 14px; margin-top: 6px; }

    /* Welcome */
    .bs-welcome-row,
    .bs-prenota-row,
    .bs-amenities-head { grid-template-columns: 1fr; gap: 28px; }
    .bs-welcome p { font-size: 16px; }
    .bs-welcome p.lead { font-size: 19px; }
    .bs-welcome-atmos { grid-template-columns: 1fr; gap: 18px; max-width: none; }

    /* Sfere — stack + meta a 2 col */
    .bs-spheres-grid { grid-template-columns: 1fr; }
    .bs-spheres-head,
    .bs-gallery-head { flex-direction: column; align-items: flex-start; gap: 16px; }
    .bs-sphere-meta { grid-template-columns: repeat(2, 1fr); gap: 10px 14px; }
    .bs-sphere-info { padding: 22px 22px 20px; }

    /* Amenities */
    .bs-amenities-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .bs-amenity { padding: 18px 16px 18px; min-height: 0; }
    .bs-amenity .lbl { font-size: 13.5px; }

    /* Carousel padding */
    .bs-gallery-track,
    .bs-testimonials-track { padding: 4px 24px 12px; }

    /* Booking form — tutto in colonna */
    .bs-prenota { padding: 64px 0; }
    .bs-form { padding: 24px; }
    .bs-form-row { grid-template-columns: 1fr; gap: 14px; }

    /* Footer */
    .bs-footer { padding: 64px 0 28px; }
    .bs-footer-row { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
    .bs-footer-bottom { flex-direction: column; gap: 8px; }

    /* Limone */
    .bs-lemon { width: 110px; height: 110px; right: 12px; bottom: 12px; }
  }

  /* SMARTPHONE STRETTO — ≤480px */
  @media (max-width: 480px) {
    .bs-hero-claim { font-size: clamp(30px, 9.5vw, 42px); }
    .bs-quicksearch { grid-template-columns: 1fr; }
    .bs-qs-cell { border-bottom: 1px solid var(--rule-soft); }
    .bs-qs-submit { grid-column: 1; }
    .bs-amenities-grid { grid-template-columns: 1fr; }
    .bs-footer-row { grid-template-columns: 1fr; gap: 28px; }
    .bs-spheres-title,
    .bs-amenities h3,
    .bs-prenota h2,
    .bs-welcome h2 { font-size: clamp(32px, 7.6vw, 44px); }
    .bs-lemon { width: 96px; height: 96px; right: 10px; bottom: 10px; }
  }

/* ========================================================================
   PAGINE INTERNE — page-hero statico, header sempre solido, componenti
   ======================================================================== */

/* Body class .bs-page = inner page — il header rimane trasparente con voci
   bianche finché non si scrolla oltre la page-hero (gestito via JS). */
.bs-page .bs-page-hero {
  /* Tira sotto l'header così la cupola parte da y=0 del viewport, come home */
  margin-top: -72px;
}

/* Page hero — stessa maschera cupola e stessa altezza della home */
.bs-page-hero {
  position: relative;
  height: var(--hero-h);
  background: var(--sage);
  overflow: hidden;
  margin-top: 0;
}
.bs-page-hero .photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  -webkit-clip-path: url(#dome-mask);
  clip-path: url(#dome-mask);
}
.bs-page-hero .veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.30) 0%, rgba(0,0,0,.10) 40%, rgba(0,0,0,.55) 100%);
  -webkit-clip-path: url(#dome-mask);
  clip-path: url(#dome-mask);
  pointer-events: none;
}
.bs-page-hero .container {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-bottom: 56px;
  color: #fff;
}
.bs-page-hero .crumb {
  font-family: var(--sans);
  font-size: 11.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin-bottom: 18px;
}
.bs-page-hero .crumb a { color: rgba(255,255,255,.7); text-decoration: none; }
.bs-page-hero .crumb a:hover { color: #fff; }
.bs-page-hero .crumb .sep { margin: 0 10px; opacity: .5; }
.bs-page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(44px, 6.4vw, 88px);
  line-height: 1.04;
  letter-spacing: var(--tr-title);
  margin: 0;
  font-weight: var(--w-title);
  color: #fff;
}
.bs-page-hero h1 em { font-style: italic; color: var(--accent); }
.bs-page-hero .lead {
  font-size: 17px; line-height: 1.5;
  color: rgba(255,255,255,.9);
  margin: 18px 0 0; max-width: 600px;
}

/* Generic section spacing for inner pages */
.bs-page-section { padding: var(--section-y-lg) 0; }
.bs-page-section.alt { background: var(--panna); }
.bs-page-section.sage { background: var(--sage); }

.bs-section-head {
  margin-bottom: 48px;
  max-width: 720px;
}
.bs-section-head h2 {
  font-family: var(--serif);
  font-weight: var(--w-title);
  letter-spacing: var(--tr-title);
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.04;
  margin: 14px 0 0;
}
.bs-section-head h2 em { font-style: italic; color: var(--sage-dark); }
.bs-section-head p {
  font-size: 17px; line-height: 1.6;
  color: var(--ink-soft);
  margin: 18px 0 0; max-width: 60ch;
}

/* FAQ accordion */
.bs-faq-list {
  max-width: 880px; margin: 0 auto;
  border-top: 1px solid var(--rule);
}
.bs-faq-item {
  border-bottom: 1px solid var(--rule);
}
.bs-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: var(--w-title);
  letter-spacing: var(--tr-title);
  color: var(--ink-soft);
  transition: color .15s;
}
.bs-faq-item summary:hover { color: var(--sage-dark); }
.bs-faq-item summary::-webkit-details-marker { display: none; }
.bs-faq-item summary::after {
  content: '';
  width: 14px; height: 14px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><path d='M7 0v14M0 7h14' stroke='%2387A554' stroke-width='1.6'/></svg>") no-repeat center;
  flex: 0 0 auto;
  transition: transform .25s;
}
.bs-faq-item[open] summary::after { transform: rotate(45deg); }
.bs-faq-item .answer {
  padding: 0 0 22px;
  font-size: 16px; line-height: 1.65;
  color: var(--ink-soft);
  max-width: 75ch;
}

/* Comparison table /le-sfere */
.bs-compare {
  background: var(--surface);
  border: 1px solid var(--rule-soft);
  border-radius: 18px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
}
.bs-compare > div {
  padding: 16px 22px;
  border-top: 1px solid var(--rule-soft);
  font-size: 14.5px;
  color: var(--ink-soft);
}
.bs-compare > div:nth-child(-n+3) { border-top: 0; }
.bs-compare > .head {
  background: var(--panna);
  font-family: var(--serif);
  font-size: 22px;
  padding: 26px 22px 22px;
  letter-spacing: var(--tr-title);
}
.bs-compare > .head:first-child { background: var(--sage); }
.bs-compare > .lbl {
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}

/* Step cards */
.bs-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bs-step {
  background: var(--surface);
  border: 1px solid var(--rule-soft);
  border-radius: 16px;
  padding: 28px 26px 26px;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform .25s, box-shadow .25s;
}
.bs-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(40,30,10,.08);
}
.bs-step-num {
  font-family: var(--serif);
  font-size: 38px;
  color: var(--sage-dark);
  font-style: italic;
  line-height: 1;
}
.bs-step h4 {
  font-family: var(--serif);
  font-weight: var(--w-title);
  font-size: 22px;
  margin: 0;
}
.bs-step p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 4px 0 0;
}

/* Travel cards */
.bs-travel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.bs-travel-card {
  background: var(--surface);
  border: 1px solid var(--rule-soft);
  border-radius: 16px;
  padding: 26px 26px 24px;
}
.bs-travel-card h4 {
  font-family: var(--serif);
  font-weight: var(--w-title);
  font-size: 22px;
  margin: 0 0 4px;
  color: var(--ink-soft);
  display: flex; align-items: center; gap: 12px;
  letter-spacing: var(--tr-title);
}
.bs-travel-card h4 .ico { color: var(--sage-dark); flex: 0 0 auto; }
.bs-travel-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 6px 0 0;
}

/* Distance pills */
.bs-distances {
  display: flex; flex-wrap: wrap; gap: 14px;
}
.bs-distance {
  display: inline-flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--rule-soft);
  border-radius: 14px;
  padding: 16px 20px;
  min-width: 150px;
}
.bs-distance .place {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink-soft);
  letter-spacing: var(--tr-title);
  line-height: 1.1;
}
.bs-distance .meta {
  font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 8px;
}

/* Sphere features key list */
.bs-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.bs-feature {
  display: flex; flex-direction: column; gap: 8px;
  padding: 22px 22px 22px;
  background: var(--bg);
  border-radius: 14px;
}
.bs-feature .ico { color: var(--sage-dark); }
.bs-feature .v {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: var(--tr-title);
  line-height: 1.05;
}
.bs-feature .lbl {
  font-size: 11px; letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}

/* Page CTA banner */
.bs-cta-banner {
  background: var(--dark);
  color: #fff;
  padding: var(--section-y-lg) 0;
  text-align: center;
}
.bs-cta-banner h3 {
  font-family: var(--serif);
  font-weight: var(--w-title);
  letter-spacing: var(--tr-title);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  margin: 0 0 18px;
  color: #fff;
  max-width: 800px; margin-left: auto; margin-right: auto;
}
.bs-cta-banner h3 em { font-style: italic; color: var(--accent); }
.bs-cta-banner p {
  font-size: 16px; line-height: 1.55;
  color: rgba(255,255,255,.7);
  margin: 0 auto 32px;
  max-width: 56ch;
}
.bs-cta-banner .btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 16px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
  transition: transform .15s, box-shadow .15s;
}
.bs-cta-banner .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px color-mix(in srgb, var(--accent) 50%, transparent);
}

/* Two-column intro layout (text + photo) */
.bs-twocol {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.bs-twocol h3 {
  font-family: var(--serif);
  font-weight: var(--w-title);
  letter-spacing: var(--tr-title);
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.05;
  margin: 14px 0 0;
}
.bs-twocol h3 em { font-style: italic; color: var(--sage-dark); }
.bs-twocol p {
  font-size: 16.5px; line-height: 1.65;
  color: var(--ink-soft); margin: 18px 0 0;
}
.bs-twocol .photo {
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  overflow: hidden;
  background-size: cover; background-position: center;
  background-color: var(--rule);
  box-shadow: 0 16px 36px rgba(40,30,10,.08);
}

/* Mobile responsive for new components */
@media (max-width: 960px) {
  .bs-page-hero .container { padding-bottom: 36px; }
  .bs-faq-item summary { font-size: 18px; padding: 18px 0; gap: 16px; }
  .bs-faq-item .answer { font-size: 15px; padding-bottom: 18px; }
  .bs-compare { grid-template-columns: 1fr; }
  .bs-compare > div { padding: 12px 18px; border-top: 1px solid var(--rule-soft); }
  .bs-compare > div:nth-child(-n+3) { border-top: 1px solid var(--rule-soft); }
  .bs-compare > div:first-child { border-top: 0; }
  .bs-compare > .head { padding: 20px 18px 16px; font-size: 19px; }
  .bs-steps { grid-template-columns: 1fr; }
  .bs-travel { grid-template-columns: 1fr; }
  .bs-features { grid-template-columns: repeat(2, 1fr); }
  .bs-twocol { grid-template-columns: 1fr; gap: 32px; }
  .bs-section-head { margin-bottom: 32px; }
}
@media (max-width: 480px) {
  .bs-features { grid-template-columns: 1fr; }
  .bs-distances { gap: 10px; }
  .bs-distance { min-width: 130px; padding: 12px 16px; }
}

/* ========================================================================
   COMPONENTI AGGIUNTIVI
   ======================================================================== */

/* Confronto sfere — versione minimale, due colonne tipografiche */
.bs-compare-min {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 8px 0;
}
.bs-compare-min .col {
  display: flex; flex-direction: column;
}
.bs-compare-min .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  color: var(--sage-dark);
  margin-bottom: 14px;
  letter-spacing: var(--tr-title);
}
.bs-compare-min h3 {
  font-family: var(--serif);
  font-weight: var(--w-title);
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.04;
  letter-spacing: var(--tr-title);
  margin: 0 0 8px;
}
.bs-compare-min .sub {
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--sage-dark);
  font-weight: 500;
  margin-bottom: 28px;
}
.bs-compare-min .row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  padding: 16px 0;
  border-top: 1px solid var(--rule);
  gap: 24px;
}
.bs-compare-min .row:last-child {
  border-bottom: 1px solid var(--rule);
}
.bs-compare-min .lbl {
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.bs-compare-min .val {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--ink-soft);
  text-align: right;
  letter-spacing: var(--tr-title);
}
.bs-compare-min .col-actions {
  margin-top: 32px;
}
.bs-compare-min .btn-link {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
  font-size: 12.5px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500;
  text-decoration: none;
  transition: background .15s, transform .15s;
}
.bs-compare-min .btn-link:hover {
  background: var(--sage-dark);
  transform: translateY(-1px);
}

/* Timeline "una notte tipo" */
.bs-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}
.bs-timeline::before {
  content: '';
  position: absolute;
  top: 6px; left: 6px; right: 6px;
  height: 1px;
  background: var(--rule);
  z-index: 0;
}
.bs-moment {
  position: relative;
  z-index: 1;
  display: flex; flex-direction: column;
  padding-top: 24px;
}
.bs-moment::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--sage-dark);
}
.bs-moment .time {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--sage-dark);
  letter-spacing: var(--tr-title);
  line-height: 1;
  margin-bottom: 12px;
}
.bs-moment h4 {
  font-family: var(--serif);
  font-weight: var(--w-title);
  font-size: 19px;
  letter-spacing: var(--tr-title);
  margin: 0;
  color: var(--ink-soft);
}
.bs-moment p {
  font-size: 14px; line-height: 1.55;
  color: var(--ink-soft);
  margin: 8px 0 0;
}

/* Bigshot — foto a tutta larghezza con didascalia */
.bs-bigshot {
  position: relative;
  height: 95vh; min-height: 580px;
  overflow: hidden;
  display: flex; align-items: flex-end;
}
.bs-bigshot-photo {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.bs-bigshot::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.55) 100%);
  pointer-events: none;
}
.bs-bigshot > .container {
  position: relative; z-index: 2;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 80px;
}
.bs-bigshot-cap {
  max-width: 720px;
  color: #fff;
}
.bs-bigshot-cap .label-accent { color: rgba(255,255,255,.85); }
.bs-bigshot-cap h3 {
  font-family: var(--serif);
  font-weight: var(--w-title);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: var(--tr-title);
  margin: 14px 0 0;
  color: #fff;
}
.bs-bigshot-cap h3 em { color: var(--accent); font-style: italic; }
.bs-bigshot-cap p {
  font-size: 17px; line-height: 1.55;
  color: rgba(255,255,255,.92);
  margin: 18px 0 0;
}

/* Pull quote / citazione decorativa */
.bs-quote-block {
  padding: var(--section-y-lg) 0;
  background: var(--bg);
  text-align: center;
}
.bs-quote-block .orn {
  font-family: var(--serif);
  font-size: 30px;
  color: var(--sage-dark);
  display: block;
  margin-bottom: 18px;
  font-style: italic;
  line-height: 1;
}
.bs-pull-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.3;
  letter-spacing: var(--tr-title);
  color: var(--ink-soft);
  max-width: 880px;
  margin: 0 auto;
}
.bs-pull-quote em {
  color: var(--accent);
}
.bs-quote-block .attr {
  display: block;
  margin-top: 22px;
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-dark);
  font-weight: 500;
  font-style: normal;
}

/* Responsive */
@media (max-width: 960px) {
  .bs-compare-min { grid-template-columns: 1fr; gap: 56px; }
  .bs-timeline { grid-template-columns: 1fr; gap: 24px; }
  .bs-timeline::before { display: none; }
  .bs-moment { padding-top: 18px; }
  .bs-bigshot { height: 70vh; min-height: 420px; }
  .bs-bigshot-photo { background-attachment: scroll; }
  .bs-bigshot > .container { padding-bottom: 48px; }
}

/* === Form: anti-spam honeypot, consenso, success === */
.bs-honey {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px; overflow: hidden;
}
.bs-form-consent {
  display: flex !important; flex-direction: row !important;
  align-items: flex-start; gap: 10px;
  font-family: var(--sans);
  font-size: 12.5px !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: rgba(255,255,255,.78) !important;
  font-weight: 400 !important;
  line-height: 1.5;
  margin-top: 2px;
}
.bs-form-consent input[type="checkbox"] {
  appearance: auto; -webkit-appearance: auto;
  width: 16px; height: 16px;
  margin-top: 2px;
  accent-color: var(--accent);
  flex: 0 0 auto;
}
.bs-form-consent a { color: var(--accent); text-decoration: underline; }
.bs-form-consent a:hover { color: #fff; }

.bs-form-success {
  padding: 12px 0 6px;
  display: flex; flex-direction: column; gap: 14px;
  align-items: flex-start;
}
.bs-form-success[hidden] { display: none; }
.bs-form-success h3 {
  font-family: var(--serif);
  font-weight: var(--w-title);
  letter-spacing: var(--tr-title);
  font-size: 30px;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}
.bs-form-success h3 em { font-style: italic; color: var(--accent); }
.bs-form-success p {
  color: rgba(255,255,255,.78) !important;
  font-size: 15px !important;
  line-height: 1.55 !important;
  margin: 0 !important;
  max-width: none !important;
}
.bs-form-success p strong { color: #fff; font-weight: 500; }

/* Skip link per a11y */
.bs-skip {
  position: absolute;
  left: -9999px; top: 0;
  background: var(--ink); color: var(--bg);
  padding: 12px 18px;
  font-family: var(--sans); font-size: 13px;
  text-decoration: none;
  border-radius: 0 0 8px 0;
  z-index: 200;
}
.bs-skip:focus {
  left: 0; top: 0;
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Focus visibile su elementi interattivi */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Sezioni distanti dal viewport: rendering deferred */
.bs-page-section,
.bs-gallery,
.bs-testimonials,
.bs-bigshot,
.bs-amenities,
.bs-spheres,
.bs-cta-banner {
  content-visibility: auto;
  contain-intrinsic-size: 1px 600px;
}

/* ============================================================
   RESPONSIVE POLISH — override finale per i breakpoint mancanti
   ============================================================ */

/* --- LAPTOP / SMALL DESKTOP --- */
@media (max-width: 1280px) {
  .container { padding: 0 32px; }
}

/* --- TABLET LANDSCAPE / SMALL LAPTOP --- */
@media (max-width: 1024px) {
  .bs-spheres-grid { gap: 28px; }
  .bs-compare-min { gap: 56px; }
  .bs-bigshot { min-height: 420px; }
}

/* --- TABLET / MOBILE LARGO --- */
@media (max-width: 768px) {
  .bs-features { grid-template-columns: repeat(2, 1fr); }
  .bs-distances { gap: 10px 14px; }
  .bs-distance { min-width: 0; flex: 1 1 calc(50% - 10px); padding: 12px 14px; }
  .bs-travel { gap: 18px; }
  .bs-page-section { padding: var(--section-y) 0; }
  .bs-page-hero h1 { font-size: clamp(32px, 6.4vw, 56px); }
  .bs-page-hero .lead { font-size: 16px; max-width: 100%; }
}

/* --- MOBILE LARGO (intermedio 540) --- */
@media (max-width: 540px) {
  .container { padding: 0 20px; }
  :root { --section-y: 48px; --section-y-lg: 64px; }
  .bs-quicksearch-wrap { padding: 0 20px; }
  .bs-gallery-track,
  .bs-testimonials-track { padding: 4px 20px 12px; }
  .bs-form { padding: 22px 20px; }
  .bs-prenota { padding: 56px 0; }
  .bs-footer { padding: 56px 0 24px; }
  .bs-section-head { margin-bottom: 24px; }
  .bs-page-hero h1 { font-size: clamp(28px, 8.4vw, 44px); }
  .bs-page-hero .lead { font-size: 15px; line-height: 1.5; }
  .bs-page-hero .crumb { font-size: 10.5px; margin-bottom: 12px; }
  .bs-page-hero .container { padding-bottom: 32px; }
  .bs-distance { flex: 1 1 100%; }
  .bs-twocol .photo { aspect-ratio: 4 / 3; }
  .bs-compare-min { gap: 36px; }
  .bs-compare-min .num { font-size: 22px; margin-bottom: 10px; }
  .bs-compare-min h3 { font-size: clamp(28px, 7.6vw, 38px); }
  .bs-bigshot { height: 60vh; min-height: 380px; }
  .bs-bigshot > .container { padding-bottom: 36px; }
  .bs-faq-item summary { font-size: 16px; padding: 16px 0; gap: 14px; }
  .bs-faq-item .answer { font-size: 14.5px; padding-bottom: 16px; }
  .bs-form-success h3 { font-size: 26px; }
}

/* --- MOBILE STANDARD (≤480) — estensione dell'esistente --- */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .bs-quicksearch-wrap { padding: 0 16px; margin-top: -24px; }
  .bs-gallery-track,
  .bs-testimonials-track { padding: 4px 16px 12px; }
  .bs-quote { min-width: 78vw; padding: 22px 22px 20px; }
  .bs-quote blockquote { font-size: 17px; line-height: 1.55; }
  .bs-gallery-slide { min-width: 78vw; }
  .bs-form { padding: 20px 16px; }
  .bs-form input,
  .bs-form select { padding: 11px 0; font-size: 16px; }
  .bs-form-row { gap: 12px; }
  .bs-form-submit { padding: 14px 20px; font-size: 12.5px; letter-spacing: 1.6px; }
  .bs-form-note { font-size: 12px; line-height: 1.5; }
  .bs-form-consent { font-size: 12px !important; }
  .bs-hero-claim { font-size: clamp(28px, 9vw, 40px); }
  .bs-hero-sub { font-size: 14px; margin-top: 12px; }
  .bs-hero-content { padding: 0 0 36px; }
  .bs-hero-tag { gap: 6px; margin-bottom: 14px; }
  .bs-hero-tag .pill { font-size: 10.5px; padding: 5px 10px; }
  .bs-welcome p { font-size: 15px; }
  .bs-welcome p.lead { font-size: 17px; }
  .bs-welcome-atmos .item .ico { font-size: 26px; }
  .bs-amenities-grid { gap: 10px; }
  .bs-amenity { padding: 16px 14px; }
  .bs-amenity .lbl { font-size: 13px; }
  .bs-closing-quote { font-size: clamp(22px, 6.6vw, 30px); line-height: 1.3; }
  .bs-prenota { padding: 48px 0; }
  .bs-prenota-row > div { margin-bottom: 8px; }
  .bs-prenota h2 { font-size: clamp(28px, 7.4vw, 40px); }
  .bs-spheres-title,
  .bs-amenities h3,
  .bs-welcome h2,
  .bs-gallery-head h3,
  .bs-testimonials-head h3 { font-size: clamp(28px, 7.4vw, 40px); }
  .bs-page-hero h1 { font-size: clamp(28px, 8.6vw, 40px); }
  .bs-footer-row { gap: 24px; }
  .bs-section-head h2 { font-size: clamp(26px, 7vw, 38px); }
  .bs-steps { gap: 18px; }
  .bs-step { padding: 22px 20px; }
  .bs-travel-card { padding: 22px 20px; }
  .bs-cta-banner { padding: 36px 20px; }
  .bs-footer-brand img { height: 36px; width: auto; }
}

/* --- SMALL PHONE (≤360) --- */
@media (max-width: 360px) {
  .container { padding: 0 14px; }
  .bs-lemon { width: 80px; height: 80px; right: 8px; bottom: 8px; }
  .bs-hero-claim { font-size: clamp(26px, 9vw, 36px); }
  .bs-hero-tag { margin-bottom: 12px; }
  .bs-page-hero h1 { font-size: clamp(24px, 8.6vw, 36px); }
  .bs-quote { min-width: 84vw; padding: 20px 20px 18px; }
  .bs-form-success h3 { font-size: 22px; }
  .bs-amenity { padding: 14px 12px; }
  .bs-amenity .ico { font-size: 22px; }
  .bs-amenity .lbl { font-size: 12.5px; }
}

/* --- iOS Safari fix: input non zoom-in al focus --- */
@media (max-width: 768px) {
  input, select, textarea { font-size: 16px !important; }
  .bs-form input,
  .bs-form select { font-size: 16px; }
}

/* --- Evita scroll orizzontale fantasma --- */
html, body { overflow-x: hidden; }
img, video, svg { max-width: 100%; }
