    .nowrap { white-space: nowrap; }

    :root {
      --red: #ff0000;
      --red-dark: #c60000;
      --ink: #121212;
      --coal: #2f2f2f;
      --text: #464646;
      --muted: #767676;
      --line: #d6d2cd;
      --paper: #fff;
      --warm: #f5f1ec;
      --mist: #f7f7f7;
      --green: #1d6d3a;
      --serif: "IBM Plex Serif", Georgia, serif;
      --sans: "IBM Plex Sans", Arial, sans-serif;
      --max: 1180px;
      --pad: clamp(22px, 5vw, 60px);
    }

    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: var(--serif);
      color: var(--text);
      background: var(--paper);
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }
    a { color: inherit; text-decoration: none; }
    img, video, svg { display: block; max-width: 100%; }
    button, input, select, textarea { font: inherit; }
    button { border: 0; cursor: pointer; }

    .wrap {
      width: min(100%, var(--max));
      margin: 0 auto;
      padding: 0 var(--pad);
    }

    .label {
      font-family: var(--sans);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .13em;
      text-transform: uppercase;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      justify-content: center;
      min-height: 50px;
      padding: 15px 28px;
      border: 1px solid var(--red);
      background: var(--red);
      color: #fff;
      font-family: var(--serif);
      font-size: 16px;
      font-style: italic;
      font-weight: 600;
      line-height: 1;
      white-space: nowrap;
      transition: background .22s ease, border-color .22s ease, color .22s ease, transform .22s ease;
    }
    .btn svg {
      width: 23px;
      height: 23px;
      flex: 0 0 auto;
      stroke-width: 1.8;
    }
    .btn:hover { background: var(--ink); border-color: var(--ink); transform: translateY(-1px); }
    .btn--ghost {
      background: rgba(255,255,255,.08);
      border-color: rgba(255,255,255,.34);
      color: #fff;
    }
    .btn--ghost:hover { background: #fff; border-color: #fff; color: var(--ink); }
    .btn--dark { background: var(--coal); border-color: var(--coal); }
    .btn--full { width: 100%; }

    /* ---------- TOPBAR ---------- */
    .topbar {
      background: var(--red);
      color: #fff;
      text-align: center;
      padding: 10px var(--pad);
      font-family: var(--sans);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .02em;
    }

    /* ---------- HEADER ---------- */
    .header {
      position: sticky;
      top: 0;
      z-index: 50;
      height: 76px;
      background: rgba(33,33,33,.94);
      color: #fff;
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(255,255,255,.1);
      box-shadow: 0 14px 34px rgba(0,0,0,.14);
    }
    .header-inner {
      height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
    }
    .logo {
      display: inline-flex;
      align-items: baseline;
      font-size: 22px;
      font-weight: 700;
      letter-spacing: -.02em;
      line-height: 1;
    }
    .logo em { color: var(--red); font-style: normal; }
    .nav {
      display: flex;
      align-items: center;
      gap: 28px;
      margin-left: auto;
      font-family: var(--sans);
      font-size: 12px;
      font-weight: 500;
      color: rgba(255,255,255,.58);
    }
    .nav a {
      position: relative;
      display: inline-flex;
      align-items: center;
      min-height: 76px;
      transition: color .2s ease;
    }
    .nav a::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 2px;
      background: var(--red);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .22s ease;
    }
    .nav a:hover { color: #fff; }
    .nav a:hover::after { transform: scaleX(1); }
    .phone {
      position: relative;
      font-family: var(--sans);
      font-size: 13px;
      color: rgba(255,255,255,.72);
      white-space: nowrap;
    }
    .phone::before {
      content: "";
      position: absolute;
      left: -16px;
      top: 50%;
      width: 1px;
      height: 22px;
      transform: translateY(-50%);
      background: rgba(255,255,255,.14);
    }
    .header-actions {
      display: flex;
      align-items: center;
      gap: 22px;
    }
    .header-actions .btn {
      min-height: 48px;
      padding: 14px 24px;
      border-color: var(--red);
      box-shadow: 0 10px 22px rgba(255,0,0,.18);
    }
    .header-actions .btn:hover {
      background: #fff;
      border-color: #fff;
      color: var(--ink);
    }

    /* ---------- HERO (centered full-bleed) ---------- */
    .hero {
      position: relative;
      overflow: hidden;
      background: #0d0d0d;
      color: #fff;
      min-height: calc(100svh - 112px);
      display: grid;
      place-items: center;
      text-align: center;
    }
    .hero-bg { position: absolute; inset: 0; }
    .hero-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(.86) contrast(1.1) brightness(.82);
    }
    .hero-bg::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 50% 36%, rgba(0,0,0,.18), rgba(0,0,0,.62) 64%, rgba(0,0,0,.86) 100%),
        linear-gradient(0deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.18) 48%, rgba(0,0,0,.55) 100%),
        radial-gradient(circle at 50% 18%, rgba(255,132,55,.16), transparent 36%);
    }
    .hero-inner {
      position: relative;
      z-index: 1;
      width: min(100%, 920px);
      padding: clamp(86px, 13vh, 150px) var(--pad) clamp(58px, 9vh, 96px);
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .hero-kicker {
      margin: 0 0 26px;
      color: rgba(255,255,255,.78);
      font-family: var(--sans);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .16em;
      text-transform: uppercase;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 9px 18px;
      border: 1px solid rgba(255,255,255,.2);
      border-radius: 100px;
      background: rgba(255,255,255,.05);
      backdrop-filter: blur(6px);
    }
    .hero-kicker .dot {
      width: 7px; height: 7px; border-radius: 50%;
      background: var(--red);
      box-shadow: 0 0 0 4px rgba(255,0,0,.22);
    }
    h1 {
      margin: 0;
      max-width: 860px;
      font-size: clamp(40px, 5.4vw, 68px);
      line-height: 1.03;
      letter-spacing: -.034em;
      color: #fff;
      text-shadow: 0 0 26px rgba(0,0,0,.4);
    }
    h1 em {
      display: block;
      margin-top: .18em;
      font-weight: 400;
      font-style: italic;
      color: rgba(255,255,255,.86);
    }
    .hero-rule {
      width: 96px;
      height: 3px;
      margin: 30px auto 26px;
      background: var(--red);
    }
    .hero-sub {
      margin: 0 auto;
      max-width: 680px;
      color: rgba(255,255,255,.8);
      font-size: clamp(17px, 1.7vw, 20px);
      line-height: 1.6;
    }
    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 16px;
      margin: 38px 0 0;
    }
    .search-intent {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px 26px;
      margin-top: 42px;
      padding-top: 30px;
      border-top: 1px solid rgba(255,255,255,.14);
      width: min(100%, 760px);
    }
    .intent-pill {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: var(--sans);
      font-size: 13px;
      color: rgba(255,255,255,.82);
    }
    .intent-pill svg { width: 19px; height: 19px; stroke-width: 1.7; color: var(--red); flex: 0 0 auto; }

    /* ---------- PROOF STRIP ---------- */
    .proof {
      background: var(--coal);
      color: #fff;
    }
    .proof-grid {
      display: flex;
      flex-wrap: wrap;
      padding-top: clamp(44px, 6vw, 66px);
      padding-bottom: clamp(44px, 6vw, 66px);
    }
    .proof-item {
      flex: 1 1 200px;
      padding: 6px clamp(20px, 3vw, 40px);
      position: relative;
    }
    .proof-item + .proof-item::before {
      content: "";
      position: absolute;
      left: 0; top: 8px; bottom: 8px;
      width: 1px;
      background: rgba(255,255,255,.14);
    }
    .proof-value {
      display: block;
      font-size: clamp(52px, 6vw, 72px);
      font-weight: 600;
      line-height: .96;
      letter-spacing: -.03em;
      color: #fff;
    }
    .proof-label {
      display: block;
      margin-top: 16px;
      font-family: var(--sans);
      font-size: 13px;
      line-height: 1.5;
      color: rgba(255,255,255,.62);
    }

    /* ---------- SECTION SCAFFOLD ---------- */
    .section {
      padding: clamp(64px, 9vw, 116px) 0;
    }
    .section--warm { background: var(--warm); }
    .section--mist { background: var(--mist); }
    .section-head { max-width: 720px; margin: 0 0 clamp(40px, 5vw, 60px); }
    .section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
    .section-label {
      display: inline-block;
      margin-bottom: 18px;
      color: var(--red);
    }
    .section-title {
      margin: 0;
      font-size: clamp(30px, 3.6vw, 46px);
      line-height: 1.08;
      letter-spacing: -.028em;
      color: var(--ink);
    }
    .section-copy {
      margin: 18px 0 0;
      font-size: clamp(16px, 1.5vw, 19px);
      line-height: 1.62;
      color: var(--text);
    }

    /* ---------- TOUR EDITORIAL ---------- */
    .tour-feature {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
      background: var(--paper);
      border: 1px solid var(--line);
      box-shadow: 0 30px 64px rgba(18,18,18,.1);
      overflow: hidden;
      margin-bottom: clamp(28px, 4vw, 44px);
    }
    .tour-feature-media {
      position: relative;
      min-height: 380px;
    }
    .tour-feature-media img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .decision-badge {
      position: absolute;
      top: 20px;
      left: 20px;
      z-index: 2;
      background: var(--red);
      color: #fff;
      padding: 8px 14px;
      letter-spacing: .12em;
    }
    .tour-feature-body {
      padding: clamp(34px, 4vw, 56px);
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .card-tag {
      display: inline-block;
      margin-bottom: 18px;
      color: var(--muted);
    }
    .tour-feature-body h3,
    .decision-content h3 {
      margin: 0;
      font-size: clamp(26px, 2.7vw, 38px);
      line-height: 1.1;
      letter-spacing: -.026em;
      color: var(--ink);
    }
    .tour-feature-body p,
    .decision-content p {
      margin: 16px 0 0;
      font-size: 16px;
      line-height: 1.62;
      color: var(--text);
    }
    .mini-specs {
      display: flex;
      flex-wrap: wrap;
      gap: 12px 28px;
      margin: 24px 0 0;
      padding: 18px 0;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      font-family: var(--sans);
      font-size: 14px;
      color: var(--text);
    }
    .mini-specs strong { color: var(--ink); }
    .decision-footer {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      margin-top: 26px;
    }
    .decision-price {
      font-size: 30px;
      font-weight: 600;
      color: var(--ink);
      letter-spacing: -.02em;
    }
    .decision-price small {
      display: block;
      margin-top: 4px;
      font-family: var(--sans);
      font-size: 12px;
      font-weight: 400;
      color: var(--muted);
      letter-spacing: 0;
    }

    .decision-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: clamp(24px, 3vw, 36px);
    }
    .decision-card {
      display: flex;
      flex-direction: column;
      background: var(--paper);
      border: 1px solid var(--line);
      overflow: hidden;
      transition: transform .25s ease, box-shadow .25s ease;
    }
    .decision-card:hover { transform: translateY(-4px); box-shadow: 0 26px 50px rgba(18,18,18,.12); }
    .decision-media {
      position: relative;
      aspect-ratio: 16 / 10;
    }
    .decision-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .decision-content {
      padding: clamp(26px, 3vw, 36px);
      display: flex;
      flex-direction: column;
      flex: 1;
    }
    .decision-content .decision-footer { margin-top: auto; }

    /* ---------- VISUAL STORY MOSAIC ---------- */
    .visual-story { padding: clamp(64px, 9vw, 116px) 0; }
    .story-head {
      max-width: 760px;
      margin: 0 0 clamp(34px, 4vw, 50px);
    }
    .story-head h2 {
      margin: 16px 0 0;
      font-size: clamp(28px, 3.4vw, 44px);
      line-height: 1.1;
      letter-spacing: -.028em;
      color: var(--ink);
    }
    .story-head p { margin: 18px 0 0; font-size: 17px; line-height: 1.62; color: var(--text); max-width: 640px; }
    .story-head .label { color: var(--red); }
    .mosaic {
      display: grid;
      grid-template-columns: 1.4fr 1fr;
      grid-template-rows: repeat(2, 1fr);
      gap: 16px;
      min-height: 560px;
    }
    .mosaic-item {
      position: relative;
      overflow: hidden;
    }
    .mosaic-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .6s ease;
    }
    .mosaic-item:hover img { transform: scale(1.05); }
    .mosaic-item--lead {
      grid-row: span 2;
    }
    .mosaic-item::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(0deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.06) 56%);
    }
    .mosaic-caption {
      position: absolute;
      z-index: 2;
      left: clamp(18px, 2vw, 28px);
      right: clamp(18px, 2vw, 28px);
      bottom: clamp(18px, 2vw, 26px);
      color: #fff;
    }
    .mosaic-caption .label { color: rgba(255,255,255,.78); }
    .mosaic-caption h3 {
      margin: 8px 0 0;
      font-size: clamp(18px, 1.8vw, 24px);
      line-height: 1.15;
      letter-spacing: -.02em;
      color: #fff;
    }
    .mosaic-item--lead .mosaic-caption h3 { font-size: clamp(22px, 2.4vw, 30px); }

    /* ---------- SAFETY TIMELINE ---------- */
    .safety-head {
      max-width: 760px;
      margin: 0 auto clamp(48px, 6vw, 70px);
      text-align: center;
    }
    .safety-head h2 {
      margin: 16px 0 0;
      font-size: clamp(28px, 3.4vw, 44px);
      line-height: 1.1;
      letter-spacing: -.028em;
      color: var(--ink);
    }
    .safety-head p { margin: 18px auto 0; font-size: 17px; line-height: 1.62; color: var(--text); max-width: 620px; }
    .assurance-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: clamp(20px, 2.5vw, 34px);
    }
    .assurance-item {
      text-align: left;
    }
    .assurance-icon {
      width: 56px;
      height: 56px;
      display: grid;
      place-items: center;
      margin-bottom: 22px;
      background: rgba(193, 39, 45, .08);
      border: 1px solid rgba(193, 39, 45, .25);
      border-radius: 50%;
      color: var(--red);
    }
    .assurance-icon svg {
      width: 26px;
      height: 26px;
      stroke-width: 1.6;
    }
    .assurance-item h3 {
      margin: 0;
      font-size: 19px;
      line-height: 1.22;
      letter-spacing: -.018em;
      color: var(--ink);
    }
    .assurance-item p {
      margin: 12px 0 0;
      font-size: 15px;
      line-height: 1.58;
      color: var(--text);
    }

    /* ---------- COMPARISON TABLE ---------- */
    .ctable {
      border: 1px solid var(--line);
      background: var(--paper);
      overflow: hidden;
    }
    .ctable-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
    }
    .ctable-head {
      font-family: var(--sans);
      font-weight: 700;
      letter-spacing: .04em;
      text-transform: uppercase;
      font-size: 13px;
    }
    .ctable-head .ctable-cell {
      padding: 22px clamp(20px, 2.4vw, 32px);
      color: var(--ink);
    }
    .ctable-head .ctable-cell:last-child {
      background: var(--ink);
      color: #fff;
    }
    .ctable-cell {
      padding: 18px clamp(20px, 2.4vw, 32px);
      display: flex;
      align-items: flex-start;
      gap: 13px;
      font-size: 15.5px;
      line-height: 1.5;
    }
    .ctable-body .ctable-row:nth-child(odd) { background: var(--mist); }
    .ctable-body .ctable-cell:last-child {
      background: rgba(18,18,18,.035);
      color: var(--ink);
      font-weight: 500;
    }
    .ctable-icon {
      flex: 0 0 auto;
      width: 22px; height: 22px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      margin-top: 1px;
    }
    .ctable-icon svg { width: 14px; height: 14px; stroke-width: 2.4; }
    .ctable-icon--no { background: rgba(198,0,0,.12); color: var(--red-dark); }
    .ctable-icon--yes { background: rgba(29,109,58,.14); color: var(--green); }

    /* ---------- REVIEWS GRID ---------- */
    .reviews-head {
      display: flex;
      flex-wrap: wrap;
      align-items: flex-end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: clamp(36px, 4vw, 52px);
    }
    .reviews-score {
      display: flex;
      align-items: center;
      gap: 22px;
    }
    .review-score-num {
      font-size: clamp(54px, 6vw, 78px);
      font-weight: 600;
      line-height: .9;
      letter-spacing: -.03em;
      color: var(--ink);
    }
    .reviews-score-copy { max-width: 420px; }
    .reviews-score-copy p { margin: 0; font-size: 16px; line-height: 1.55; color: var(--text); }
    .reviews-score-copy .review-meta {
      margin-top: 8px;
      font-family: var(--sans);
      font-size: 12px;
      color: var(--muted);
    }
    .reviews-score .stars { color: var(--red); font-size: 18px; letter-spacing: 2px; }
    .review-track-mask { overflow: hidden; }
    .review-track {
      display: flex;
      transition: transform .5s cubic-bezier(.4, 0, .2, 1);
    }
    .review-card {
      flex: 0 0 calc((100% - 2 * clamp(20px, 2.5vw, 32px)) / 3);
      margin-right: clamp(20px, 2.5vw, 32px);
      background: var(--paper);
      border: 1px solid var(--line);
      box-shadow: 0 14px 34px rgba(18, 18, 18, .07);
      padding: clamp(26px, 3vw, 36px);
      display: flex;
      flex-direction: column;
    }
    .review-card .stars { color: var(--red); font-size: 16px; letter-spacing: 2px; margin-bottom: 16px; }
    .review-card blockquote {
      margin: 0;
      flex: 1;
      font-size: 17px;
      line-height: 1.55;
      color: var(--ink);
      font-style: italic;
    }
    .review-card cite {
      display: block;
      margin-top: 22px;
      padding-top: 18px;
      border-top: 1px solid var(--line);
      font-style: normal;
      font-weight: 600;
      color: var(--ink);
      font-size: 15px;
    }
    .review-source {
      display: block;
      margin-top: 4px;
      font-family: var(--sans);
      font-size: 12px;
      font-weight: 400;
      color: var(--muted);
    }
    .reviews-nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      margin-top: clamp(30px, 3.5vw, 42px);
    }
    .review-dots { display: flex; flex-wrap: wrap; gap: 9px; }
    .review-dot {
      width: 9px; height: 9px;
      border-radius: 50%;
      background: var(--line);
      transition: background .2s ease, transform .2s ease;
    }
    .review-dot.active { background: var(--red); transform: scale(1.25); }
    .review-controls { display: flex; gap: 12px; }
    .review-control {
      width: 50px; height: 50px;
      display: grid;
      place-items: center;
      border: 1px solid var(--line);
      background: var(--paper);
      color: var(--ink);
      transition: background .2s ease, color .2s ease, border-color .2s ease;
    }
    .review-control:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
    .review-control svg { width: 20px; height: 20px; stroke-width: 1.8; }

    /* ---------- BOOKING (dark) ---------- */
    .booking {
      background: var(--ink);
      color: #fff;
      padding: clamp(64px, 9vw, 116px) 0;
    }
    .booking-inner {
      display: grid;
      grid-template-columns: minmax(0, .82fr) minmax(0, 1fr);
      gap: clamp(40px, 5vw, 72px);
      align-items: start;
    }
    .booking-intro .section-label { color: var(--red); }
    .booking-intro h2 {
      margin: 16px 0 0;
      font-size: clamp(30px, 3.6vw, 46px);
      line-height: 1.08;
      letter-spacing: -.028em;
      color: #fff;
    }
    .booking-intro > p {
      margin: 18px 0 0;
      font-size: 17px;
      line-height: 1.62;
      color: rgba(255,255,255,.74);
    }
    .contact-rows {
      margin-top: 36px;
      display: grid;
      gap: 1px;
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.12);
    }
    .contact-row {
      background: var(--ink);
      padding: 18px 22px;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .contact-row .label { color: rgba(255,255,255,.5); }
    .contact-row strong { font-size: 18px; color: #fff; font-weight: 600; }
    .contact-row a:hover { color: var(--red); }

    .form {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
      background: var(--paper);
      padding: clamp(28px, 3.4vw, 44px);
      border: 1px solid rgba(255,255,255,.08);
      box-shadow: 0 40px 80px rgba(0,0,0,.4);
    }
    .field { display: flex; flex-direction: column; gap: 8px; }
    .field--full { grid-column: 1 / -1; }
    .field .label { color: var(--muted); }
    .field input,
    .field select,
    .field textarea {
      width: 100%;
      padding: 13px 15px;
      border: 1px solid var(--line);
      background: var(--paper);
      color: var(--ink);
      font-family: var(--serif);
      font-size: 16px;
      transition: border-color .2s ease, box-shadow .2s ease;
    }
    .field input:focus,
    .field select:focus,
    .field textarea:focus {
      outline: none;
      border-color: var(--red);
      box-shadow: 0 0 0 3px rgba(255,0,0,.12);
    }
    .field textarea { min-height: 96px; resize: vertical; }
    .form-small {
      grid-column: 1 / -1;
      margin: 2px 0 0;
      font-family: var(--sans);
      font-size: 13px;
      color: var(--muted);
      text-align: center;
    }

    /* ---------- FAQ ---------- */
    .faq-head { max-width: 720px; margin: 0 0 clamp(36px, 4vw, 52px); }
    .faq-head .section-label { color: var(--red); }
    .faq-head h2 {
      margin: 16px 0 0;
      font-size: clamp(28px, 3.4vw, 44px);
      line-height: 1.1;
      letter-spacing: -.028em;
      color: var(--ink);
    }
    .faq-head p { margin: 18px 0 0; font-size: 17px; line-height: 1.62; color: var(--text); max-width: 620px; }
    .faq-list { border-top: 1px solid var(--line); }
    .faq-item { border-bottom: 1px solid var(--line); }
    .faq-btn {
      width: 100%;
      background: none;
      text-align: left;
      padding: 26px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      font-family: var(--serif);
      font-size: clamp(18px, 1.8vw, 22px);
      font-weight: 500;
      color: var(--ink);
      line-height: 1.3;
    }
    .faq-plus {
      flex: 0 0 auto;
      font-size: 28px;
      line-height: 1;
      color: var(--red);
      transition: transform .25s ease;
    }
    .faq-item.open .faq-plus { transform: rotate(45deg); }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height .3s ease;
    }
    .faq-item.open .faq-answer { max-height: 320px; }
    .faq-answer p {
      margin: 0;
      padding: 0 0 26px;
      max-width: 760px;
      font-size: 16.5px;
      line-height: 1.62;
      color: var(--text);
    }

    /* ---------- FOOTER ---------- */
    .footer {
      background: var(--coal);
      color: rgba(255,255,255,.7);
      padding: clamp(48px, 6vw, 72px) 0 clamp(32px, 4vw, 48px);
    }
    .footer-inner {
      display: grid;
      grid-template-columns: 1.3fr 1fr 1fr;
      gap: 40px;
    }
    .footer-brand {
      font-size: 24px;
      font-weight: 700;
      letter-spacing: -.02em;
      color: #fff;
    }
    .footer-brand em { color: var(--red); font-style: normal; }
    .footer-col h4 {
      margin: 0 0 16px;
      font-family: var(--sans);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .13em;
      text-transform: uppercase;
      color: rgba(255,255,255,.5);
    }
    .footer-brand-block p { margin: 16px 0 0; font-size: 15px; line-height: 1.6; max-width: 320px; }
    .footer-col ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 11px; font-size: 15px; }
    .footer-col a:hover { color: var(--red); }
    .footer-credit {
      margin-top: clamp(34px, 4vw, 50px);
      padding-top: 26px;
      border-top: 1px solid rgba(255,255,255,.12);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      font-family: var(--sans);
      font-size: 13px;
      letter-spacing: .02em;
      color: rgba(255,255,255,.5);
    }
    .footer-credit img {
      height: 30px;
      width: auto;
      display: block;
      transition: opacity .2s ease;
    }
    .footer-credit a:hover img { opacity: .8; }
    .footer-privacy-link {
      display: inline-block;
      margin-top: 14px;
      font-family: var(--sans);
      font-size: 13px;
      color: rgba(255,255,255,.5);
      text-decoration: underline;
      transition: color .2s ease;
    }
    .footer-privacy-link:hover { color: rgba(255,255,255,.85); }

    /* ---------- FLOATING ELEMENTS ---------- */
    .wa {
      position: fixed;
      right: 22px;
      bottom: 86px;
      z-index: 60;
      width: 56px;
      height: 56px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: #25d366;
      box-shadow: 0 14px 30px rgba(37,211,102,.4);
      transition: transform .2s ease;
    }
    .wa:hover { transform: scale(1.08); }
    .sticky-cta {
      position: fixed;
      left: 0; right: 0; bottom: 0;
      z-index: 55;
      display: none;
      text-align: center;
      padding: 16px;
      background: var(--red);
      color: #fff;
      font-family: var(--serif);
      font-style: italic;
      font-weight: 600;
      font-size: 17px;
      box-shadow: 0 -10px 30px rgba(0,0,0,.18);
    }

    /* ---------- ANIMATIONS ---------- */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity .7s ease, transform .7s ease;
    }
    .reveal.in { opacity: 1; transform: none; }
    @media (prefers-reduced-motion: reduce) {
      .reveal { opacity: 1; transform: none; transition: none; }
      html { scroll-behavior: auto; }
    }

    /* ---------- RESPONSIVE ---------- */
    @media (max-width: 980px) {
      .nav, .phone { display: none; }
      .assurance-grid { grid-template-columns: repeat(2, 1fr); }
      .tour-feature { grid-template-columns: 1fr; }
      .tour-feature-media { min-height: 280px; }
      .booking-inner { grid-template-columns: 1fr; }
      .footer-inner { grid-template-columns: 1fr 1fr; }
      .footer-brand-block { grid-column: 1 / -1; }
    }
    @media (max-width: 760px) {
      .decision-grid { grid-template-columns: 1fr; }
      .mosaic { grid-template-columns: 1fr; grid-template-rows: none; min-height: 0; }
      .mosaic-item { aspect-ratio: 16 / 11; }
      .mosaic-item--lead { grid-row: auto; }
      .assurance-grid { grid-template-columns: 1fr; gap: 28px; }
      .ctable-row { grid-template-columns: 1fr; }
      .ctable-head { display: none; }
      .ctable-cell::before {
        content: attr(data-col);
        font-family: var(--sans);
        font-size: 10px;
        font-weight: 700;
        letter-spacing: .1em;
        text-transform: uppercase;
        color: var(--muted);
        margin-right: 4px;
      }
      .review-card { flex-basis: 100%; margin-right: 0; }
      .review-track { gap: 0; }
      .form { grid-template-columns: 1fr; }
      .footer-inner { grid-template-columns: 1fr; }
      .sticky-cta { display: block; }
      .wa { bottom: 78px; }
    }

    /* ---- Form: honeypot, consenso GDPR, messaggi di stato (aggiunte progetto) ---- */
    .hp-field {
      position: absolute !important;
      left: -9999px !important;
      width: 1px;
      height: 1px;
      overflow: hidden;
    }
    .consent {
      margin-top: 4px;
    }
    .consent-label {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.86rem;
      line-height: 1.5;
      color: var(--muted);
      cursor: pointer;
    }
    .consent-label input[type="checkbox"] {
      width: 18px;
      height: 18px;
      margin-top: 2px;
      flex: 0 0 auto;
      accent-color: var(--green);
      cursor: pointer;
    }
    .consent-label a {
      color: var(--coal);
      text-decoration: underline;
    }
    .form-status {
      margin: 10px 0 0;
      padding: 12px 14px;
      border-radius: 10px;
      font-size: 0.9rem;
      line-height: 1.45;
    }
    .form-status--ok {
      background: #e9f4ee;
      border: 1px solid #bfe0cb;
      color: var(--green);
    }
    .form-status--error {
      background: #fdeaea;
      border: 1px solid #f3c2c2;
      color: var(--red-dark);
    }
