/* ============================================================
   TIME 4 VACATION — RESORT draft (Caladan-style, tours-focused)
   Scoped under .t4v-rs. Brand tokens from Content/colors.pdf.
   ============================================================ */

.t4v-rs{
  --indigo:#3F51B5; --indigo-d:#303F9F;
  --green:#8BC34A;  --green-d:#7CB342;
  --ink:#16202E;          /* near-black navy for dark elements */
  --slate:#1E293B;
  --body:#475569; --muted:#8A97A8; --soft:#B7C0CC;
  --line:#E7EBF0; --paper:#FFFFFF; --mist:#F5F7F9;
  --head:"Moderustic","Segoe UI",system-ui,sans-serif;
  --sans:"Google Sans","Inter","Segoe UI",system-ui,sans-serif;
  --maxw:1380px; --rad:20px; --rad-lg:28px;   /* sections widened +200px (100 each side); hero uses its own .in, unaffected */
  --secpad:80px;   /* section spacing — matches wine-museum reference (80 / 60 / 50) */
  --shadow:0 16px 50px rgba(22,32,46,.10);
  --shadow-lg:0 40px 90px rgba(22,32,46,.20);
}
.t4v-rs,.t4v-rs p,.t4v-rs li,.t4v-rs input,.t4v-rs select,.t4v-rs textarea{ font-family:var(--sans); color:var(--body); }
.t4v-rs{ font-size:16px; line-height:1.7; background:var(--paper); -webkit-font-smoothing:antialiased; }
.t4v-rs *,.t4v-rs *::before,.t4v-rs *::after{ box-sizing:border-box; }
.t4v-rs img{ display:block; max-width:100%; }
.t4v-rs a{ text-decoration:none; color:var(--ink); transition:color .2s,opacity .2s; }
.t4v-rs h1,.t4v-rs h2,.t4v-rs h3,.t4v-rs h4{ color:var(--ink); margin:0; font-family:var(--head); font-weight:500; letter-spacing:-.02em; }

.rs-wrap{ max-width:var(--maxw); margin:0 auto; padding:0 28px; }
.rs-sec{ padding:var(--secpad) 0; }
.rs-sec.tight{ padding:calc(var(--secpad) - 24px) 0; }
@media (max-width:1024px){ .t4v-rs{ --secpad:60px; } }
@media (max-width:549px){ .t4v-rs{ --secpad:50px; } }
.rs-mist{ background:var(--mist); }
.rs-eyebrow{ display:inline-block; font-family:var(--head); font-weight:600; font-size:12px; text-transform:uppercase; letter-spacing:.14em;
  color:#fff; background:var(--green); border-radius:12px; padding:7px 14px; margin-bottom:15px; }
.rs-h2{ font-size:46px; line-height:1.08; font-weight:500; }
.rs-h2 .mut{ color:var(--soft); }
.rs-lead{ font-size:18px; color:var(--body); }
.rs-muted{ color:var(--muted); }

/* buttons / pills */
.rs-btn{ position:relative; isolation:isolate; overflow:hidden; display:inline-flex; align-items:center; justify-content:center; gap:9px;
  font-family:var(--head); font-weight:600; font-size:13px; text-transform:uppercase; letter-spacing:.06em;
  height:44px; padding:0 22px; margin:0; border-radius:12px; cursor:pointer; border:none; outline:none; box-sizing:border-box;
  transition:color .3s ease, border-color .35s ease; white-space:nowrap; }
.t4v-rs .rs-btn:focus{ outline:none; }
/* impressive reveal: indigo fill slides up, text fades to white */
.rs-btn::before{ content:""; position:absolute; inset:0; z-index:-1; background:var(--indigo);
  transform:translateY(101%); transition:transform .45s cubic-bezier(.45,0,.15,1); }
.t4v-rs .rs-btn:hover{ color:#fff; }
.rs-btn:hover::before{ transform:translateY(0); }
.t4v-rs .rs-btn--cta{ background:var(--green); color:#fff; }
.t4v-rs .rs-btn--dark{ background:var(--ink); color:#fff; }
.t4v-rs .rs-btn--ghost{ background:transparent; border:1px solid #1A237E; color:#1A237E; }
.t4v-rs .rs-btn--ghost:hover{ border-color:var(--indigo); }
.t4v-rs .rs-btn--white{ background:#fff; color:var(--ink); }
.rs-link{ font-family:var(--head); font-weight:600; font-size:14px; color:var(--ink); display:inline-flex; align-items:center; gap:8px; border-bottom:1.5px solid var(--ink); padding-bottom:3px; }
.rs-link .ar,.rs-arrow{ transition:transform .2s; }
.rs-link:hover .ar{ transform:translateX(5px); }

/* ============================================================ FLOATING HEADER (inside hero) */
.rs-header{ position:fixed; top:0; left:0; right:0; z-index:90; padding:22px 22px 0; }
.rs-headbar{ position:relative; width:100%; background:rgba(255,255,255,.96); backdrop-filter:blur(12px);
  border-radius:16px; box-shadow:var(--shadow); padding:0 20px; height:68px; display:flex; align-items:center; gap:14px; }
.rs-nav{ display:flex; align-items:center; gap:1px; margin:10px 0 0 0; padding:0; }
.rs-nav>li{ list-style:none; position:relative; }
.rs-nav>li>a{ font-family:var(--head); font-weight:600; font-size:14px; text-transform:uppercase; letter-spacing:.02em;
  color:var(--slate); display:inline-flex; align-items:center; gap:4px; white-space:nowrap; padding:8px 6px; border-radius:10px; transition:background .2s,color .2s; }
.rs-nav>li>a:hover{ background:var(--mist); color:var(--indigo); }
.rs-nav .ca{ display:inline-block; width:9px; height:9px; opacity:.5; }
.rs-logo{ position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); }
.rs-logo img{ height:32px; width:auto; display:block; }
.rs-dd{ position:absolute; top:calc(100% + 16px); left:0; min-width:248px; background:#fff; border:1px solid var(--line);
  border-radius:14px; box-shadow:var(--shadow-lg); padding:8px; opacity:0; visibility:hidden; transform:translateY(8px); transition:.2s; }
.rs-nav>li::after{ content:""; position:absolute; left:0; right:0; top:100%; height:18px; }
.rs-nav>li:hover .rs-dd{ opacity:1; visibility:visible; transform:translateY(0); }
.rs-dd a{ display:block; padding:12px 15px; border-radius:9px; font-size:16px; color:var(--body); font-family:var(--sans); }
.rs-dd a:hover{ background:var(--mist); color:var(--indigo); }
.rs-dd a.all{ color:var(--indigo); font-weight:600; font-family:var(--head); border-top:1px solid var(--line); margin-top:6px; padding-top:12px; }
.t4v-rs .rs-act{ margin-left:auto; display:flex; align-items:center; gap:10px; flex-shrink:0; align-self:center; }
.t4v-rs .rs-act .rs-btn{ padding:0 20px; height:44px; }
.t4v-rs .rs-act > *{ align-self:center; }
.t4v-rs .rs-icon{ width:38px; height:38px; min-height:0; margin:0; line-height:1; padding:0; box-sizing:border-box; border-radius:50%; border:1.5px solid var(--soft);
  background:#fff; color:var(--ink); display:flex; align-items:center; justify-content:center; cursor:pointer; transition:.2s; flex-shrink:0; }
.t4v-rs .rs-icon:hover{ background:var(--mist); border-color:var(--indigo); }
.t4v-rs .rs-icon svg{ display:block; width:18px !important; height:18px !important; margin:0 !important; fill:none !important; stroke:var(--ink) !important; stroke-width:2.2; }
.t4v-rs .rs-lang{ display:flex; align-items:center; height:40px; }
.t4v-rs .rs-lang button{ width:32px; height:32px; min-width:0; min-height:0; margin:0; border-radius:50%; overflow:hidden; border:none; padding:0; cursor:pointer;
  background:none; line-height:0; transition:transform .2s; flex-shrink:0; box-sizing:border-box; }
.t4v-rs .rs-lang button:hover{ transform:translateY(-1px); }
.t4v-rs .rs-lang svg{ width:100% !important; height:100% !important; display:block; }
.rs-support{ gap:7px; }
.t4v-rs .rs-burger{ display:none; background:none; border:none; color:var(--slate); cursor:pointer; padding:6px; margin:0; min-width:0; min-height:0; line-height:0; box-sizing:border-box; flex-shrink:0; }
.t4v-rs .rs-burger svg{ display:block; margin:0; }

/* mobile drawer */
.rs-drawer{ position:fixed; inset:0; z-index:100; background:rgba(16,24,34,.985); backdrop-filter:blur(10px); display:none; flex-direction:column; padding:18px 12px 32px; overflow-y:auto; }
.rs-drawer.open{ display:flex; }
.rs-drawer-head{ display:flex; align-items:center; justify-content:flex-end; margin-bottom:10px; padding:0; }
.rs-dlogo{ font-family:var(--head); font-weight:700; font-size:21px; color:#fff; letter-spacing:-.01em; margin-left:8px; }
.rs-dlogo .g{ color:var(--green); }
.t4v-rs .rs-drawer .x{ width:42px; height:42px; min-width:0; min-height:0; margin:0; padding:0; box-sizing:border-box; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.18); border-radius:50%; color:#fff; font-size:24px; line-height:1; cursor:pointer; transition:.2s; }
.t4v-rs .rs-drawer .x:hover{ background:rgba(255,255,255,.18); }
.rs-mnav{ display:flex; flex-direction:column; }
.rs-mnav .lnk, .rs-mnav summary{ color:#fff; font-family:var(--head); font-weight:600; font-size:19px; padding:15px 14px; border-bottom:1px solid rgba(255,255,255,.1);
  border-radius:10px; cursor:pointer; list-style:none; display:flex; align-items:center; justify-content:space-between; transition:background .2s,color .2s; }
.rs-mnav .lnk:hover, .rs-mnav summary:hover, .rs-mnav details[open] > summary{ background:rgba(255,255,255,.07); color:var(--green); }
.rs-mnav summary::-webkit-details-marker{ display:none; }
.rs-mnav summary::after{ content:"+"; color:var(--green); font-size:24px; font-weight:300; line-height:1; transition:transform .25s; }
.rs-mnav details[open] > summary::after{ transform:rotate(45deg); }
.rs-mnav .sub{ display:flex; flex-direction:column; padding:4px 0 10px; }
.rs-mnav .sub a{ color:rgba(255,255,255,.72); font-family:var(--sans); font-weight:400; font-size:15px; padding:11px 16px; border-radius:9px; transition:background .2s,color .2s; }
.rs-mnav .sub a:hover{ background:rgba(255,255,255,.07); color:#fff; }
.rs-mnav .sub a.all{ color:var(--green); font-family:var(--head); font-weight:600; font-size:14px; }
.rs-mactions{ margin-top:26px; display:flex; flex-direction:column; gap:12px; }
.rs-mactions .rs-btn{ width:100%; height:50px; }
.t4v-rs .rs-btn--ghost-light{ background:transparent; border:1.5px solid rgba(255,255,255,.55); color:#fff; }
/* drawer footer: social (left) + language (right), pinned to bottom */
.rs-mfoot{ margin-top:auto; padding-top:24px; display:flex; align-items:center; justify-content:space-between; border-top:1px solid rgba(255,255,255,.12); }
.rs-msoc{ display:flex; gap:10px; }
.t4v-rs .rs-msoc a{ width:40px; height:40px; border-radius:50%; border:1px solid rgba(255,255,255,.22); display:flex; align-items:center; justify-content:center; color:#fff; transition:.2s; }
.t4v-rs .rs-msoc a:hover{ background:var(--green); color:var(--ink); border-color:var(--green); }
.t4v-rs .rs-mlang{ display:flex; align-items:center; gap:9px; min-height:0; margin:0; padding:9px 16px; border-radius:999px; border:1px solid rgba(255,255,255,.3);
  background:transparent; color:#fff; font-family:var(--head); font-weight:600; font-size:14px; letter-spacing:.02em; cursor:pointer; transition:.2s; }
.t4v-rs .rs-mlang:hover{ border-color:var(--green); color:var(--green); }
.t4v-rs .rs-mlang svg{ width:24px; height:16px; border-radius:3px; display:block; }

/* ============================================================ HERO (rounded inset) */
.rs-herowrap{ padding:14px; }
.rs-hero{ position:relative; border-radius:var(--rad-lg); overflow:hidden; min-height:calc(100vh - 28px); display:flex; align-items:flex-end; color:#fff; }
/* faint vertical social bar inside hero */
.rs-social{ position:absolute; right:34px; top:50%; transform:translateY(-50%); z-index:3; display:flex; flex-direction:column; gap:12px; }
.rs-social a{ width:42px; height:42px; border-radius:50%; display:flex; align-items:center; justify-content:center; color:#fff;
  background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.28); backdrop-filter:blur(6px); opacity:.55; transition:opacity .2s, background .2s, transform .2s; }
.rs-social a:hover{ opacity:1; background:rgba(255,255,255,.28); transform:translateY(-2px); }
.rs-hero video,.rs-hero .bg{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; }
.rs-hero .scrim{ position:absolute; inset:0; z-index:1; background:linear-gradient(180deg, rgba(16,24,34,.45) 0%, rgba(16,24,34,.12) 32%, rgba(16,24,34,.22) 60%, rgba(16,24,34,.66) 100%); }
.rs-hero .in{ position:relative; z-index:2; width:100%; padding:48px; }
.rs-hero .eq{ color:rgba(255,255,255,.85); letter-spacing:.22em; background:transparent; padding:0; margin-bottom:0; border-radius:0; }
.rs-hero h1{ color:#fff; font-weight:300; font-size:78px; line-height:1.0; letter-spacing:-.02em; margin:18px 0 0; max-width:14ch; }
.rs-hero h1 .mut{ color:rgba(255,255,255,.55); }
.rs-hero .sub{ color:rgba(255,255,255,.9); font-size:18px; max-width:440px; margin:18px 0 0; }

/* glass booking bar */
.rs-book{ margin-top:34px; background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.26);
  backdrop-filter:blur(20px); border-radius:20px; padding:16px; display:flex; gap:14px; align-items:flex-end; flex-wrap:wrap; box-shadow:0 24px 60px rgba(0,0,0,.28); }
.rs-bf{ flex:1 1 160px; }
.rs-bf label{ display:block; font-family:var(--head); font-weight:600; font-size:10.5px; text-transform:uppercase; letter-spacing:.12em; color:rgba(255,255,255,.85); margin:0 0 7px 4px; }
.t4v-rs .rs-bf input,.t4v-rs .rs-bf select{ width:100%; border:none; outline:none; background:#fff; color:var(--ink); border-radius:12px; padding:0 16px; margin:0; font-size:15px; line-height:1.3; font-family:var(--sans); height:44px; box-sizing:border-box; }
.rs-book .rs-btn{ flex:0 0 auto; height:44px; }
/* guests picker (Travellers) */
.rs-guests{ position:relative; }
.t4v-rs .rs-guests-toggle{ width:100%; height:44px; min-height:0; margin:0; border:none; outline:none; background:#fff; color:var(--ink) !important;
  border-radius:12px; padding:0 16px; font-size:15px; font-family:var(--sans); font-weight:400; text-transform:none; letter-spacing:0; text-align:left; cursor:pointer; box-sizing:border-box; transition:none; }
.t4v-rs .rs-guests-toggle.is-empty{ color:var(--muted) !important; }
.rs-guests-pop{ position:absolute; bottom:calc(100% + 8px); left:0; z-index:40; width:300px; max-width:78vw; background:#fff; border:1px solid var(--line);
  border-radius:16px; box-shadow:var(--shadow-lg); padding:6px 18px; display:none; }
.rs-guests-pop.open{ display:block; }
.rs-grow{ display:flex; align-items:center; justify-content:space-between; gap:14px; padding:16px 0; border-bottom:1px solid var(--line); }
.rs-grow:last-child{ border-bottom:none; }
.rs-grow-txt b{ font-family:var(--head); font-weight:600; font-size:16px; color:var(--ink); display:block; }
.rs-grow-txt span{ font-size:13px; color:var(--muted); }
.rs-step{ display:flex; align-items:center; gap:14px; flex-shrink:0; }
.t4v-rs .rs-step button{ width:32px; height:32px; min-height:0; margin:0; padding:0; border-radius:50%; border:1.5px solid var(--soft);
  background:#fff; color:var(--ink); font-size:18px; line-height:1; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:.2s; box-sizing:border-box; }
.t4v-rs .rs-step button:hover{ border-color:var(--indigo); color:var(--indigo); }
.t4v-rs .rs-step button:disabled{ opacity:.35; cursor:not-allowed; border-color:var(--line); color:var(--muted); }
.rs-step .val{ font-family:var(--head); font-weight:600; font-size:16px; color:var(--ink); min-width:18px; text-align:center; }

/* hero mini trust row */
.rs-hmini{ display:flex; gap:30px; flex-wrap:wrap; margin-top:22px; color:rgba(255,255,255,.88); font-size:13.5px; }
.rs-hmini b{ font-family:var(--head); }
.rs-hmini .st{ color:var(--green); }

/* ============================================================ EDITORIAL TWO-COL INTRO */
.rs-intro{ display:grid; grid-template-columns:1fr 1fr; column-gap:56px; align-items:end; }   /* 50/50 · title left · text+button right (bottom) */
.rs-intro-l{ display:flex; flex-direction:column; align-items:flex-start; }
.rs-intro h2{ font-size:50px; line-height:1.06; }
.rs-intro .rt{ display:flex; flex-direction:column; align-items:flex-start; }
.rs-intro .rt p{ font-size:19px; line-height:1.7; color:var(--body); margin:0; }
.rs-intro .rt .rs-intro-btn{ margin-top:24px; }

/* ============================================================ BENTO FEATURE GRID */
.rs-bento{ display:grid; grid-template-columns:repeat(4,1fr); grid-auto-rows:minmax(230px,auto); gap:18px; margin-top:46px; }
.rs-cell{ border-radius:var(--rad); overflow:hidden; position:relative; }
.rs-cell img{ width:100%; height:100%; object-fit:cover; transition:transform .7s; }
.rs-cell:hover img{ transform:scale(1.05); }
.rs-cell.big{ grid-column:span 2; grid-row:span 2; }
.rs-cell.wide{ grid-column:span 2; }
.rs-cell .ov{ position:absolute; left:0; bottom:0; padding:22px; z-index:2; color:#fff; }
.rs-cell.img::after{ content:""; position:absolute; inset:0; background:linear-gradient(180deg,rgba(16,24,34,0) 45%,rgba(16,24,34,.7)); }
.rs-cell .ov b{ font-family:var(--head); font-weight:600; font-size:20px; display:block; }
.rs-cell .ov span{ font-size:16px; color:rgba(255,255,255,.85); }
.rs-feat{ background:var(--mist); border-radius:var(--rad); padding:26px; display:flex; flex-direction:column; justify-content:flex-end; }
.rs-feat .ic{ width:60px; height:60px; border-radius:var(--rad); background:#fff; color:var(--indigo); display:flex; align-items:center; justify-content:center; margin-bottom:16px; box-shadow:var(--shadow); }
.rs-feat h4{ font-size:20px; font-weight:600; }
.rs-feat p{ font-size:16px; color:var(--muted); margin:6px 0 0; }
/* explore CTA filling the bento empty space: faint watermark quote + green button */
/* "collection" CTA: fanned photo stack + headline + arrow; adapts row↔column to its OWN width (container query) */
.t4v-rs a.rs-explore{ grid-column:span 2; background:var(--mist); border-radius:var(--rad); position:relative; overflow:hidden;
  container-type:inline-size; display:flex; align-items:center; text-decoration:none; transition:background .3s ease; }
.t4v-rs a.rs-explore:hover{ background:#EEF1F5; }
.rs-explore-inner{ display:flex; flex-direction:column; align-items:flex-start; gap:18px; width:100%; box-sizing:border-box; padding:26px 30px; }
@container (min-width:470px){ .rs-explore-inner{ flex-direction:row; align-items:center; gap:30px; } }
.rs-explore-stack{ position:relative; flex:0 0 auto; width:188px; height:128px; }
.rs-explore-stack img{ position:absolute; top:0; width:100px; height:124px; object-fit:cover; border-radius:14px; border:4px solid #fff;
  box-shadow:0 12px 26px rgba(22,32,46,.20); transition:transform .55s cubic-bezier(.2,.7,.2,1); }
.rs-explore-stack img:nth-child(1){ left:0; top:4px; transform:rotate(-9deg); z-index:1; }
.rs-explore-stack img:nth-child(2){ left:38px; top:0; transform:rotate(-1deg); z-index:2; }
.rs-explore-stack img:nth-child(3){ left:76px; top:6px; transform:rotate(8deg); z-index:3; }
.t4v-rs a.rs-explore:hover .rs-explore-stack img:nth-child(1){ transform:rotate(-15deg) translateX(-9px); }
.t4v-rs a.rs-explore:hover .rs-explore-stack img:nth-child(3){ transform:rotate(14deg) translateX(9px); }
.rs-explore-body{ display:flex; flex-direction:column; align-items:flex-start; gap:8px; min-width:0; }
.rs-explore-kick{ font-family:var(--head); font-weight:600; font-size:12px; text-transform:uppercase; letter-spacing:.16em; color:var(--indigo); }
.t4v-rs .rs-explore-h{ font-family:var(--head); font-weight:600; font-size:clamp(21px,2.1vw,27px); line-height:1.12; color:var(--ink); margin:0; }
.rs-explore-cta{ display:inline-flex; align-items:center; gap:10px; margin-top:4px; font-family:var(--head); font-weight:600; font-size:13px; text-transform:uppercase; letter-spacing:.06em; color:var(--ink); }
.rs-explore-arrow{ display:inline-flex; align-items:center; justify-content:center; flex:0 0 auto; width:34px; height:34px; border-radius:50%; background:var(--green); color:#fff; font-size:17px; line-height:1; transition:transform .35s ease; }
.t4v-rs a.rs-explore:hover .rs-explore-arrow{ transform:translateX(5px); }
@media (prefers-reduced-motion:reduce){ .rs-explore-stack img,.rs-explore-arrow{ transition:none; } }

/* ============================================================ SIGNATURE TOURS — editorial list */
.rs-listhead{ display:flex; justify-content:space-between; align-items:flex-end; gap:20px; margin-bottom:18px; }
/* slider of slides — each slide = 4 tour rows (12 total → 3 slides), slides horizontally */
.rs-tslider{ display:flex; overflow-x:auto; scroll-snap-type:x mandatory; scrollbar-width:none; }
.rs-tslider::-webkit-scrollbar{ display:none; }
.rs-tslide{ flex:0 0 100%; min-width:0; scroll-snap-align:start; border-top:1px solid var(--line); }
.rs-row{ display:grid; grid-template-columns:48px 1.5fr 1fr auto 160px; gap:24px; align-items:center;
  padding:24px 14px; border-bottom:1px solid var(--line); border-radius:14px; transition:background .25s; position:relative; }
.rs-row:hover{ background:#fff; }                                  /* visible on the mist section · no shadow */
.rs-row .idx{ width:40px; height:40px; border-radius:50%; background:var(--indigo); color:#fff;
  display:flex; align-items:center; justify-content:center; font-family:var(--head); font-weight:600; font-size:13px; }
.rs-row .nm h3{ font-size:25px; font-weight:500; }
.rs-row .nm p{ font-size:16px; color:var(--muted); margin:4px 0 0; }
.rs-row .meta{ font-size:13.5px; color:var(--body); }
.rs-row .meta b{ font-family:var(--head); color:var(--ink); }
.rs-row .price{ font-family:var(--head); font-weight:600; font-size:20px; color:var(--ink); text-align:right; white-space:nowrap; }
.rs-row .price small{ display:block; font-weight:400; font-size:12px; color:var(--muted); }
.rs-row .th{ width:160px; height:108px; border-radius:var(--rad); overflow:hidden; }
.rs-row .th img{ width:100%; height:100%; object-fit:cover; transition:transform .6s; }
.rs-row:hover .th img{ transform:scale(1.08); }
.rs-tours-foot{ text-align:center; margin-top:34px; }

/* ===== VIDEO TESTIMONIAL QUOTE ===== */
.rs-vquote-sec{ padding:0 14px; }                          /* full-bleed; neighbours' section padding gives the spacing (avoids a double-white gap) */
.rs-vquote{ position:relative; border-radius:var(--rad-lg); overflow:hidden; min-height:600px; display:flex; align-items:center; justify-content:center; }
.rs-vquote-bg{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; }
.rs-vquote-ov{ position:absolute; inset:0; z-index:1; background:linear-gradient(180deg, rgba(9,17,28,.58) 0%, rgba(9,17,28,.50) 42%, rgba(9,17,28,.80) 100%); }
.rs-vquote-inner{ position:relative; z-index:2; max-width:760px; margin:0 auto; padding:64px 30px; text-align:center; color:#fff; text-shadow:0 2px 22px rgba(6,14,24,.45); }
.rs-vquote-mark{ display:block; font-family:Georgia,"Times New Roman",serif; font-size:96px; line-height:1; height:48px; color:var(--green); }
.t4v-rs .rs-vquote-text{ margin:0; padding:0; border:none; background:none; quotes:none; font-style:normal; color:#fff !important;
  font-family:var(--head); font-weight:400; font-size:clamp(24px,3vw,38px); line-height:1.32; letter-spacing:-.01em; }
.rs-vquote-by{ margin-top:24px; }
.rs-vquote-name{ display:block; font-family:var(--head); font-weight:500; font-size:16px; font-style:italic; letter-spacing:.01em; color:var(--green); }

/* ============================================================ COLLECTION CAROUSEL */
.rs-carohead{ display:flex; justify-content:space-between; align-items:flex-end; gap:20px; margin-bottom:30px; }
.rs-caro{ display:flex; gap:20px; overflow-x:auto; padding-bottom:10px; scroll-snap-type:x mandatory; scrollbar-width:none; }
.rs-caro::-webkit-scrollbar{ display:none; }
.rs-exp{ flex:0 0 calc((100% - 40px)/3); scroll-snap-align:start; border-radius:var(--rad); overflow:hidden; background:#fff; border:1.5px solid var(--line); transition:border-color .3s ease; }
.rs-exp:hover{ border-color:var(--indigo); }                          /* no shadow — indigo ring + image zoom */
.rs-exp .ph{ aspect-ratio:4/3; overflow:hidden; }
.rs-exp .ph img{ width:100%; height:100%; object-fit:cover; transition:transform .6s; }
.rs-exp:hover .ph img{ transform:scale(1.07); }
.rs-exp .tx{ padding:20px 22px 24px; }
.rs-exp .k{ font-family:var(--head); font-weight:600; font-size:11px; text-transform:uppercase; letter-spacing:.1em; color:var(--indigo); }
.rs-exp h3{ font-size:21px; font-weight:500; margin:7px 0 5px; }
.rs-exp p{ font-size:16px; color:var(--muted); }
/* featured "MOST POPULAR" card — emphasised, dark, brand colours */
.rs-exp.feat{ flex:0 0 calc((100% - 40px)/3); background:var(--ink); border:2px solid var(--green); color:#fff; display:flex; flex-direction:column; }
.rs-exp.feat:hover{ border-color:var(--green); }
.rs-exp.feat .tx{ padding:26px; margin-top:auto; }
.rs-exp.feat h3{ color:#fff; font-size:23px; }
.rs-exp.feat p{ color:rgba(255,255,255,.82); }
.rs-exp.feat .k{ display:inline-block; background:var(--green); color:#fff; border-radius:20px; padding:6px 13px; font-size:10.5px; letter-spacing:.12em; margin-bottom:12px; }
.rs-exp.feat .ph{ aspect-ratio:16/10; }
@media (max-width:1023px){ .rs-exp,.rs-exp.feat{ flex-basis:calc((100% - 20px)/2); } }   /* tablet: 2, no peek */
@media (max-width:640px){ .rs-exp,.rs-exp.feat{ flex-basis:100%; } }                       /* mobile: 1, no peek */
.rs-caro-nav{ display:flex; gap:10px; }
.rs-cbtn{ width:48px; height:48px; border-radius:50%; border:2px solid var(--indigo); background:var(--indigo); cursor:pointer; display:flex; align-items:center; justify-content:center; color:#fff; transition:background .2s, color .2s; }
.rs-cbtn:hover{ background:transparent; color:var(--indigo); }   /* outline on hover, no zoom */
.t4v-rs .rs-cbtn svg{ stroke:currentColor !important; width:20px !important; height:20px !important; margin:0 !important; flex:none; }

/* ===== TRAVEL SERVICES SWITCHER (fly tickets · ferry · transfers · car rentals) ===== */
.rs-svc{ display:grid; grid-template-columns:0.9fr 1.5fr; gap:48px; align-items:stretch; margin-top:6px; }
.rs-svc-list{ display:flex; flex-direction:column; gap:12px; }
.t4v-rs .rs-svc-item{ flex:1; display:flex; align-items:center; gap:16px; width:100%; background:#fff; border:1.5px solid var(--line); border-radius:var(--rad); margin:0; padding:16px 20px; cursor:pointer; text-align:left; text-transform:none; transition:background .25s ease, border-color .25s ease; }
.t4v-rs .rs-svc-item:hover{ border-color:var(--indigo); }
.t4v-rs .rs-svc-item.is-active{ background:var(--indigo); border-color:var(--indigo); }
.rs-svc-ic{ flex:none; width:46px; height:46px; border-radius:13px; background:var(--mist); color:var(--indigo); display:flex; align-items:center; justify-content:center; transition:.25s ease; }
.t4v-rs .rs-svc-item.is-active .rs-svc-ic{ background:rgba(255,255,255,.16); color:#fff; }
.t4v-rs .rs-svc-ic svg{ width:23px !important; height:23px !important; flex:none; }
.t4v-rs .rs-svc-name{ font-family:var(--head); font-weight:600; font-size:18px; line-height:1.2; color:var(--ink); transition:color .25s ease; }
.t4v-rs .rs-svc-item.is-active .rs-svc-name{ color:#fff; }
.rs-svc-stage{ position:relative; }
.rs-svc-imgs{ position:relative; aspect-ratio:16/11; border-radius:var(--rad-lg); overflow:hidden; background:var(--mist); }
.rs-svc-img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:0; transition:opacity .5s ease; }
.rs-svc-img.is-active{ opacity:1; }
.rs-svc-card{ position:absolute; left:-40px; bottom:28px; width:360px; max-width:46%; background:var(--ink); color:#fff; border-radius:var(--rad-lg); padding:30px 32px; }
.t4v-rs .rs-svc-card h3{ font-family:var(--head); font-weight:600; font-size:22px; color:#fff; margin:0 0 10px; }
.rs-svc-desc{ display:none; }
.rs-svc-desc.is-active{ display:block; }
.rs-svc-desc p{ font-size:16px; line-height:1.6; color:rgba(255,255,255,.82); margin:0; }
.rs-svc-cta{ margin-top:22px; }
@media (prefers-reduced-motion:reduce){ .rs-svc-img{ transition:none; } }
@media (max-width:1199px){   /* tablets & folds (Surface Pro, Zenbook Fold): stack — card below the image, not a cramped overlap */
  .rs-svc{ grid-template-columns:1fr; gap:22px; align-items:stretch; }
  .rs-svc-list{ display:grid; grid-template-columns:1fr 1fr; gap:12px; }
  .t4v-rs .rs-svc-item{ flex:none; padding:14px 18px; gap:12px; }
  .rs-svc-ic{ width:42px; height:42px; border-radius:11px; }
  .t4v-rs .rs-svc-name{ font-size:16px; }
  .rs-svc-card{ position:static; left:auto; bottom:auto; width:auto; max-width:none; border-radius:var(--rad); margin-top:18px; }
}
@media (max-width:560px){   /* phones: shrink icon + label so each service fits on one line */
  .t4v-rs .rs-svc-item{ padding:12px 12px; gap:10px; }
  .rs-svc-ic{ width:34px; height:34px; border-radius:10px; }
  .t4v-rs .rs-svc-ic svg{ width:18px !important; height:18px !important; }
  .t4v-rs .rs-svc-name{ font-size:13px; white-space:nowrap; }
}

/* ===== HOTELS (search + trust + featured stays) ===== */
.rs-hotel-lead{ max-width:none; margin-top:14px; }
.rs-hotel-search{ display:flex; align-items:stretch; background:#fff; border:1px solid var(--line); border-radius:var(--rad); padding:0; margin-top:30px; }
.rs-hf{ flex:1 1 0; display:flex; flex-direction:column; justify-content:center; gap:3px; padding:6px 18px; border-right:1px solid var(--line); min-width:0; }   /* 5 equal columns (incl. button) */
.rs-hf label{ font-family:var(--head); font-weight:600; font-size:11px; text-transform:uppercase; letter-spacing:.12em; color:var(--muted); }
.t4v-rs .rs-hotel-search input{ border:none !important; outline:none; background:none !important; margin:0 !important; padding:0 !important; height:auto !important; box-shadow:none !important; font-size:15px; color:var(--ink); width:100%; }
.t4v-rs .rs-hotel-search input::placeholder{ color:var(--soft); }
.t4v-rs .rs-hotel-search .rs-btn{ flex:1 1 0; align-self:center; height:44px; padding:0; margin:0 11px; }   /* normal 44px height, centred, equal ~11px white all around */
/* guests popover reused from the hero, but opens downward inside the search bar + looks like a plain field */
.rs-hotel-search .rs-hf.rs-guests{ position:relative; }
.t4v-rs .rs-hotel-search .rs-guests-toggle{ background:none !important; width:100%; height:26px; line-height:26px; min-height:0; padding:0; border-radius:0; text-align:left; font-size:15px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.rs-hotel-search .rs-guests-pop{ top:calc(100% + 16px); bottom:auto; }
/* nights stepper */
.rs-hf-nights{ flex:1 1 0; }
.rs-nights{ display:flex; align-items:center; gap:12px; }
.t4v-rs .rs-nights button{ width:26px; height:26px; min-height:0; margin:0; padding:0; border-radius:50%; border:1.5px solid var(--soft); background:#fff; color:var(--ink); cursor:pointer; font-size:16px; line-height:1; display:flex; align-items:center; justify-content:center; transition:.2s ease; }
.t4v-rs .rs-nights button:hover{ border-color:var(--indigo); color:var(--indigo); }
.t4v-rs .rs-nights button:disabled{ opacity:.35; cursor:not-allowed; }
.rs-nights .val{ font-family:var(--head); font-weight:600; font-size:15px; color:var(--ink); min-width:14px; text-align:center; }
.rs-hotel-trust{ display:flex; flex-wrap:wrap; gap:14px 28px; margin-top:18px; }
.rs-hotel-trust span{ display:inline-flex; align-items:center; gap:9px; font-size:14px; color:var(--body); }
.rs-hotel-nav{ display:flex; justify-content:center; gap:12px; margin-top:28px; }   /* slider arrows: centred, below */
.t4v-rs .rs-hotel-trust svg{ width:18px !important; height:18px !important; flex:none; color:var(--green); }
.rs-hotel-grid{ display:flex; gap:18px; overflow-x:auto; scroll-snap-type:x mandatory; scrollbar-width:none; margin-top:32px; padding-bottom:4px; }
.rs-hotel-grid::-webkit-scrollbar{ display:none; }
.t4v-rs a.rs-hotel-card{ flex:0 0 calc((100% - 54px)/4); scroll-snap-align:start; position:relative; display:block; aspect-ratio:3/4; border-radius:var(--rad); overflow:hidden; text-decoration:none; }
.rs-hotel-card img{ width:100%; height:100%; object-fit:cover; transition:transform .6s ease; }
.t4v-rs a.rs-hotel-card:hover img{ transform:scale(1.06); }
.rs-hotel-card::after{ content:""; position:absolute; inset:0; background:linear-gradient(180deg, rgba(16,24,34,0) 42%, rgba(16,24,34,.78)); }
.rs-hotel-card .ov{ position:absolute; left:0; bottom:0; z-index:2; padding:18px 20px; color:#fff; }
.t4v-rs .rs-hotel-card .ov b{ font-family:var(--head); font-weight:600; font-size:18px; display:block; color:#fff; }
.rs-hotel-card .ov span{ font-size:13px; color:rgba(255,255,255,.85); }
@media (max-width:1024px){ .t4v-rs a.rs-hotel-card{ flex-basis:calc((100% - 36px)/3); } }   /* 3 per view */
@media (max-width:1024px){ .rs-hotel-search{ flex-direction:column; padding:10px; } .rs-hf{ border-right:none; border-bottom:1px solid var(--line); padding:12px 14px; } .t4v-rs .rs-hotel-search .rs-btn{ flex:0 0 auto; margin:12px 0 0; width:100%; justify-content:center; padding:0 22px; height:44px; align-self:stretch; } }
@media (max-width:767px){ .t4v-rs a.rs-hotel-card{ flex-basis:calc((100% - 18px)/2); } }   /* 2 per view */
@media (max-width:560px){ .rs-hotel-grid{ gap:12px; } .t4v-rs a.rs-hotel-card{ flex-basis:calc((100% - 12px)/2); } }

/* ===== YACHT CHARTER (cinematic spotlight, single yacht) ===== */
.rs-yacht-sec{ padding:0 14px; }
.rs-yacht{ position:relative; border-radius:var(--rad-lg); overflow:hidden; min-height:560px; display:flex; align-items:center; }
.rs-yacht-bg{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; }
.rs-yacht-ov{ position:absolute; inset:0; z-index:1; background:linear-gradient(105deg, rgba(8,16,28,.82) 0%, rgba(8,16,28,.6) 45%, rgba(8,16,28,.34) 100%); }
.rs-yacht-inner{ position:relative; z-index:2; max-width:640px; padding:56px; color:#fff; }
.t4v-rs .rs-yacht-name{ font-family:var(--head); font-weight:300; font-size:clamp(40px,5vw,64px); line-height:1; letter-spacing:-.02em; color:#fff; margin:16px 0 0; }
.t4v-rs .rs-yacht-sub{ font-family:var(--head); font-weight:600; font-size:13px; text-transform:uppercase; letter-spacing:.18em; color:#fff; margin:10px 0 0; }
.t4v-rs .rs-yacht-tag{ font-size:18px; line-height:1.6; color:#fff; margin:18px 0 0; max-width:480px; }
.rs-yacht-specs{ display:flex; flex-wrap:wrap; gap:14px 34px; margin:30px 0 0; }
.t4v-rs .rs-yacht-specs b{ font-family:var(--head); font-weight:600; font-size:26px; color:#fff; display:block; line-height:1; }
.rs-yacht-specs b i{ font-style:normal; font-weight:400; font-size:14px; opacity:.8; margin-left:2px; }
.rs-yacht-specs span{ font-size:11.5px; text-transform:uppercase; letter-spacing:.1em; color:#fff; margin-top:6px; display:block; }
.rs-yacht-specs b i{ opacity:.95; }
.rs-yacht-foot{ display:flex; align-items:center; gap:28px; flex-wrap:wrap; margin-top:34px; }
.rs-yacht-price{ font-size:14px; color:#fff; }
.t4v-rs .rs-yacht-price b{ font-family:var(--head); font-weight:600; font-size:24px; color:#fff; }
.rs-yacht-price i{ font-style:normal; font-size:13px; opacity:.9; }
@media (max-width:849px){
  .rs-yacht{ min-height:0; }
  .rs-yacht-ov{ background:linear-gradient(180deg, rgba(8,16,28,.5) 0%, rgba(8,16,28,.74) 100%); }
  .rs-yacht-inner{ padding:44px 28px; max-width:none; }
  .rs-yacht-specs{ gap:14px 24px; }
}
@media (max-width:560px){
  .rs-yacht-inner{ padding:34px 22px; }
  .t4v-rs .rs-yacht-specs b{ font-size:21px; }
  .rs-yacht-foot{ gap:16px; }
}

/* ===== SELECT YOUR ADVENTURE TYPE — category picker ===== */
#adventure{ background-color:var(--mist); background-image:url('assets/images/adventure-pattern.webp?v=2'); background-size:cover; background-position:center; background-repeat:no-repeat; }
.rs-advrow{ display:flex; gap:18px; overflow-x:auto; scroll-snap-type:x mandatory; scrollbar-width:none; padding:14px 0 4px; }
.rs-advrow::-webkit-scrollbar{ display:none; }
/* cards fill an exact number per view (no partial next card peeking); 6 → 5 → 4 → 3 → 2 down the breakpoints */
.t4v-rs a.rs-adv{ flex:0 0 calc((100% - 90px)/6); scroll-snap-align:start; background:var(--tint); border:2px solid transparent; border-radius:var(--rad);
  padding:30px 16px 26px; display:flex; flex-direction:column; align-items:center; gap:18px; text-decoration:none;
  transition:border-color .3s ease, background .3s ease; }
.t4v-rs a.rs-adv:hover{ border-color:var(--c); background:#fff; }                 /* no shadow: colored ring + lift the tint to white */
.rs-adv-ic{ width:96px; height:96px; border-radius:50%; background:var(--c); color:#fff; display:flex; align-items:center; justify-content:center; transition:transform .35s ease; }
.t4v-rs a.rs-adv:hover .rs-adv-ic{ transform:scale(1.09); }
.rs-adv-ic svg{ width:46px; height:46px; }
.rs-adv-label{ font-family:var(--head); font-weight:600; font-size:16px; color:var(--ink); text-align:center; transition:color .3s ease; }
.t4v-rs a.rs-adv:hover .rs-adv-label{ color:var(--c); }
@media (max-width:1199px){ .t4v-rs a.rs-adv{ flex-basis:calc((100% - 72px)/5); } }                                  /* 5 per view */
@media (max-width:991px){ .t4v-rs a.rs-adv{ flex-basis:calc((100% - 54px)/4); } .rs-adv-ic{ width:80px; height:80px; } .rs-adv-ic svg{ width:40px; height:40px; } }   /* 4 per view · smaller icons */
@media (max-width:767px){ .t4v-rs a.rs-adv{ flex-basis:calc((100% - 36px)/3); } }                                  /* 3 per view */
@media (max-width:559px){ .t4v-rs a.rs-adv{ flex-basis:calc((100% - 18px)/2); padding:24px 14px 22px; } .rs-adv-ic{ width:72px; height:72px; } .rs-adv-ic svg{ width:34px; height:34px; } }   /* 2 per view */
@media (prefers-reduced-motion:reduce){ .t4v-rs a.rs-adv,.rs-adv-ic{ transition:none; } }

/* ============================================================ SCATTERED GALLERY */
.rs-gal{ position:relative; margin-top:30px; }
.rs-gal .g{ position:relative; border-radius:var(--rad); overflow:hidden; }
.rs-gal .g img{ width:100%; height:100%; object-fit:cover; transition:transform .7s; }
.rs-gal .g:hover img{ transform:scale(1.06); }
.rs-gal .cap{ margin-top:10px; font-family:var(--head); font-weight:600; font-size:13px; color:var(--ink); }
.rs-gal .cap span{ display:block; font-family:var(--sans); font-weight:400; font-size:12px; color:var(--muted); }
/* desktop scatter via grid */
.rs-galgrid{ display:grid; grid-template-columns:repeat(12,1fr); gap:26px 26px; align-items:start; }
.rs-g1{ grid-column:1 / 4; margin-top:40px; }
.rs-g2{ grid-column:5 / 9; }
.rs-g3{ grid-column:10 / 13; margin-top:80px; }
.rs-g4{ grid-column:2 / 6; margin-top:30px; }
.rs-g5{ grid-column:7 / 11; margin-top:-10px; }
.rs-g1 img{ height:240px; } .rs-g2 img{ height:320px; } .rs-g3 img{ height:240px; } .rs-g4 img{ height:300px; } .rs-g5 img{ height:260px; }

/* ============================================================ STORIES / TESTIMONIAL */
.rs-stories{ display:grid; grid-template-columns:1.3fr 1fr; gap:40px; align-items:stretch; }
.rs-quote{ background:var(--mist); border-radius:var(--rad); padding:46px; display:flex; flex-direction:column; justify-content:center; }
.rs-quote .qm{ font-family:var(--head); font-size:60px; line-height:.6; color:var(--soft); }
.rs-quote q{ quotes:none; font-size:26px; line-height:1.4; color:var(--ink); font-family:var(--head); font-weight:400; display:block; margin:18px 0 0; }
.rs-quote .who{ margin-top:26px; font-size:14px; color:var(--muted); }
.rs-quote .who b{ font-family:var(--head); color:var(--ink); display:block; }
.rs-storyimg{ border-radius:var(--rad); overflow:hidden; min-height:340px; }
.rs-storyimg img{ width:100%; height:100%; object-fit:cover; }

/* ============================================================ STATS */
.rs-stats{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.rs-stat{ background:var(--mist); border-radius:var(--rad); padding:38px 30px; }
.rs-stat b{ font-family:var(--head); font-weight:500; font-size:46px; line-height:1; color:var(--ink); display:block; letter-spacing:-.02em; }
.rs-stat .st{ color:var(--green); }
.rs-stat span{ font-size:14px; color:var(--muted); display:block; margin-top:8px; }

/* ============================================================ FAQ */
/* FAQ + contact form, two columns */
.rs-faqwrap{ display:grid; grid-template-columns:1.15fr 1fr; gap:54px; align-items:start; }
.rs-faq-col .rs-faq{ margin-top:18px; }
.rs-form-card{ background:#fff; border:1px solid var(--line); border-radius:var(--rad-lg); padding:34px 34px 36px; }
.t4v-rs .rs-form-card h3{ font-family:var(--head); font-weight:600; font-size:28px; color:var(--ink); margin:0; }
.rs-form-card > p{ font-size:18px; color:var(--muted); margin:8px 0 22px; line-height:1.55; }
.rs-cform{ display:flex; flex-direction:column; gap:13px; }
.t4v-rs .rs-cform input,.t4v-rs .rs-cform select,.t4v-rs .rs-cform textarea{ width:100%; border:1.5px solid var(--line); border-radius:12px; background:#fff; padding:13px 16px; margin:0; font-size:15px; line-height:1.3; color:var(--ink); font-family:var(--sans); outline:none; box-shadow:none; box-sizing:border-box; }
.t4v-rs .rs-cform input:focus,.t4v-rs .rs-cform select:focus,.t4v-rs .rs-cform textarea:focus{ border-color:var(--indigo); }
.t4v-rs .rs-cform input::placeholder,.t4v-rs .rs-cform textarea::placeholder{ color:var(--soft); }
.rs-cform textarea{ min-height:108px; resize:vertical; }
.rs-check{ display:flex; align-items:center; gap:8px; margin:4px 0 2px; font-size:12.5px; color:var(--body); line-height:1.4; cursor:pointer; }
.rs-check span{ min-width:0; }
.t4v-rs .rs-check input{ width:18px; height:18px; min-height:0; flex:none; margin:0; padding:0; accent-color:var(--indigo); }
.rs-check a{ color:var(--indigo); text-decoration:underline; }
.t4v-rs .rs-cform select{ height:48px; padding:0 16px; line-height:normal; }   /* fix: dropdown text was clipping */
.t4v-rs .rs-cform select:has(option[value=""]:checked){ color:var(--soft); }   /* placeholder same muted colour as inputs */
.t4v-rs .rs-cform select option{ color:var(--ink); }   /* dropdown options dark/readable */
.t4v-rs .rs-cform .rs-btn{ width:100%; height:50px; margin-top:6px; }
@media (max-width:900px){ .rs-faqwrap{ grid-template-columns:1fr; gap:36px; } .rs-form-card{ padding:28px 22px 30px; } }
.rs-faq{ max-width:860px; margin:0 auto; }
.rs-faq details{ border:1px solid var(--line); border-radius:14px; margin-bottom:12px; transition:background .25s ease, box-shadow .25s ease, border-color .25s ease; }
.rs-faq details:last-child{ margin-bottom:0; }
.rs-faq details:hover{ background:#fff; border-color:transparent; box-shadow:0 10px 26px rgba(22,32,46,.08); }
.rs-faq details[open]{ background:#fff; }
.rs-faq summary{ list-style:none; cursor:pointer; padding:16px 18px; font-family:var(--head); font-weight:500; font-size:18px; color:var(--ink); display:flex; justify-content:space-between; gap:20px; align-items:center; transition:color .2s ease; }
.rs-faq summary::-webkit-details-marker{ display:none; }
.rs-faq summary:hover{ color:var(--indigo); }
.rs-faq summary::after{ content:"+"; color:var(--indigo); font-size:26px; font-weight:300; transition:transform .25s; }
.rs-faq summary:hover::after{ transform:scale(1.18); }
.rs-faq details[open] summary::after{ transform:rotate(45deg); }
.rs-faq details p{ padding:0 18px 18px; margin:0; font-size:16px; color:var(--body); max-width:760px; }

/* ============================================================ CTA BAND (flanking thumbs) */
.rs-cta{ position:relative; }
.rs-ctabar{ display:grid; grid-template-columns:170px 1fr 170px; gap:30px; align-items:center; background:var(--mist); border-radius:var(--rad-lg); padding:46px; }
.rs-ctabar .thumb{ border-radius:var(--rad); overflow:hidden; height:200px; }
.rs-ctabar .thumb img{ width:100%; height:100%; object-fit:cover; }
.rs-ctabar .mid{ text-align:center; }
.rs-ctabar .stars{ color:var(--green); letter-spacing:3px; font-size:14px; }
.rs-ctabar h2{ font-size:38px; font-weight:500; margin:12px 0 8px; }
.rs-ctabar p{ color:var(--muted); max-width:440px; margin:0 auto 22px; }
.rs-ctabar .btns{ display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }

/* ============================================================ FOOTER */
.rs-footer{ background:var(--ink); color:#C9D2DD; padding:64px 0 30px; overflow:hidden; }
.rs-footer a{ color:#C9D2DD; } .rs-footer a:hover{ color:var(--green); }
.rs-foot-top{ display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr; gap:36px; padding-bottom:40px; border-bottom:1px solid rgba(255,255,255,.1); }
.rs-foot-news h4{ color:#fff; font-size:24px; font-weight:500; max-width:320px; line-height:1.2; }
.rs-foot-about{ font-size:14.5px; color:#9aa7b6; line-height:1.65; margin:14px 0 0; max-width:330px; }
.t4v-rs .rs-foot-news .rs-btn{ margin-top:20px; }
.rs-footer h5{ color:#fff; font-family:var(--head); font-weight:600; font-size:16px; letter-spacing:.02em; margin:0 0 16px; }
.rs-footer ul{ list-style:none; padding:0; margin:0; }
.rs-footer li{ margin-bottom:10px; font-size:14.5px; }
.rs-foot-contact li{ display:flex; align-items:center; gap:10px; margin-bottom:13px; color:#fff; }
.t4v-rs .rs-foot-contact a{ display:flex; align-items:center; gap:10px; color:#fff; }
.t4v-rs .rs-foot-contact a:hover{ color:var(--green); }
.t4v-rs .rs-foot-contact svg{ width:17px; height:17px; flex:none; stroke:#fff; color:#fff; }
.rs-foot-mid{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:16px; padding:26px 0; }
.rs-foot-mid .badges{ display:flex; gap:12px; align-items:center; }
.rs-foot-mid .badges img{ height:46px; background:#fff; border-radius:8px; padding:4px 8px; }
.rs-foot-mid .social{ display:flex; gap:10px; }
.rs-foot-mid .social a{ width:38px; height:38px; border-radius:50%; background:rgba(255,255,255,.08); display:flex; align-items:center; justify-content:center; color:#fff; transition:.2s; }
.rs-foot-mid .social a:hover{ background:var(--green); color:var(--ink); }
.rs-foot-brand{ display:flex; justify-content:space-between; align-items:flex-end; gap:30px; margin-top:14px; }
.rs-wordmark{ font-family:var(--head); font-weight:700; color:#fff; line-height:.82; letter-spacing:-.045em;
  font-size:clamp(30px,10.4vw,148px); white-space:nowrap; margin:0; min-width:0; }
.rs-foot-copy{ font-size:12.5px; color:#5d6b7c; margin:14px 0 0; }
.t4v-rs .rs-foot-copy a{ color:#8a97a8; text-decoration:none; }
.t4v-rs .rs-foot-copy a:hover{ color:#fff; text-decoration:underline; }
.t4v-rs a.rs-foot-lithos{ display:inline-flex; align-items:center; flex:none; text-decoration:none; opacity:.75; transition:opacity .2s; padding-bottom:10px; }
.t4v-rs a.rs-foot-lithos:hover{ opacity:1; }
.rs-foot-lithos img{ height:22px; width:auto; display:block; }

/* ===== REVIEWS (Google) ===== */
.rs-revhead{ display:flex; justify-content:space-between; align-items:flex-end; gap:24px; flex-wrap:wrap; margin-bottom:32px; }
.rs-rev-score{ display:flex; align-items:center; gap:12px; flex-wrap:wrap; }
.t4v-rs .rs-rev-score > b{ font-family:var(--head); font-weight:600; font-size:18px; color:var(--ink); }
.rs-rev-stars{ color:#FBBC05; letter-spacing:2px; font-size:16px; }
.rs-rev-count{ font-size:14px; color:var(--muted); }
.t4v-rs .rs-rev-count b{ color:var(--ink); }
.rs-rev-google{ display:inline-flex; align-items:center; gap:6px; font-family:var(--head); font-weight:600; font-size:15px; color:var(--ink); }
.rs-revslider{ display:flex; gap:18px; overflow-x:auto; scroll-snap-type:x mandatory; scrollbar-width:none; padding-bottom:4px; }
.rs-revslider::-webkit-scrollbar{ display:none; }
.rs-rev{ flex:0 0 calc((100% - 54px)/4); scroll-snap-align:start; background:#fff; border:1px solid var(--line); border-radius:var(--rad); padding:22px 22px 24px; }
.rs-rev-nav{ display:flex; justify-content:center; gap:12px; margin-top:28px; }
.rs-rev-top{ display:flex; align-items:center; gap:12px; margin-bottom:12px; }
.rs-rev-av{ width:42px; height:42px; border-radius:50%; background:var(--c,var(--indigo)); color:#fff; display:flex; align-items:center; justify-content:center; font-family:var(--head); font-weight:600; font-size:17px; flex:none; }
.rs-rev-id{ flex:1; min-width:0; }
.t4v-rs .rs-rev-id b{ display:block; font-family:var(--head); font-weight:600; font-size:15px; color:var(--ink); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.rs-rev-id span{ font-size:12.5px; color:var(--muted); }
.rs-rev-g{ flex:none; }
.rs-rev .rs-rev-stars{ display:block; margin-bottom:10px; }
.rs-rev p{ font-size:14.5px; line-height:1.6; color:var(--body); margin:0; }
@media (max-width:1024px){ .rs-rev{ flex-basis:calc((100% - 36px)/3); } }
@media (max-width:767px){ .rs-rev{ flex-basis:calc((100% - 18px)/2); } }
@media (max-width:560px){ .rs-rev{ flex-basis:100%; } .rs-revhead{ align-items:flex-start; } }

/* ===== PARTNERS (rotating ribbon marquee) ===== */
.rs-marquee{ overflow:hidden; margin-top:40px; -webkit-mask-image:linear-gradient(90deg,transparent,#000 7%,#000 93%,transparent); mask-image:linear-gradient(90deg,transparent,#000 7%,#000 93%,transparent); }
.rs-marquee-track{ display:flex; align-items:center; gap:30px; width:max-content; animation:rs-mq 34s linear infinite; }
.rs-marquee:hover .rs-marquee-track{ animation-play-state:paused; }
@keyframes rs-mq{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }
.t4v-rs .rs-mq-item{ position:relative; display:flex; align-items:center; justify-content:center; flex:none; width:210px; height:96px; }
.rs-mq-text{ font-family:var(--head); font-weight:700; font-size:20px; letter-spacing:.01em; color:var(--soft); white-space:nowrap; transition:opacity .3s ease; }
.rs-mq-logo{ position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:auto; height:100%; max-width:100%; object-fit:contain; opacity:0; transition:opacity .3s ease; pointer-events:none; }
.t4v-rs .rs-mq-item:hover .rs-mq-text{ opacity:0; }
.t4v-rs .rs-mq-item:hover .rs-mq-logo{ opacity:1; }
@media (prefers-reduced-motion:reduce){ .rs-marquee-track{ animation:none; } }
@media (max-width:560px){ .rs-marquee-track{ gap:18px; } .t4v-rs .rs-mq-item{ width:160px; height:72px; } .rs-mq-text{ font-size:17px; } }

/* floating action buttons (WhatsApp left · back-to-top right) */
.t4v-rs .rs-fab{ position:fixed; bottom:22px; z-index:60; width:46px; height:46px; min-height:0; margin:0; border-radius:50%; display:flex; align-items:center; justify-content:center;
  border:none; cursor:pointer; box-shadow:0 8px 22px rgba(16,24,34,.25); transition:transform .25s ease, background .25s ease, opacity .25s ease; }
.rs-fab:hover{ transform:translateY(-3px); }
.t4v-rs a.rs-fab-wa{ left:22px; background:#25D366; color:#fff; }
.rs-fab-wa svg{ width:27px; height:27px; }
.t4v-rs .rs-fab-top svg{ width:18px !important; height:18px !important; flex:none; }
.t4v-rs .rs-fab-top{ right:22px; background:#3F51B5; border:2px solid #3F51B5; color:#fff; opacity:0; visibility:hidden; pointer-events:none; }
.rs-fab-top.show{ opacity:1; visibility:visible; pointer-events:auto; }
.t4v-rs .rs-fab-top:hover{ background:transparent; color:#3F51B5; transform:none; }
@media (max-width:560px){ .t4v-rs .rs-fab{ width:48px; height:48px; bottom:16px; } .t4v-rs a.rs-fab-wa{ left:16px; } .t4v-rs .rs-fab-top{ right:16px; } .rs-fab-wa svg{ width:28px; height:28px; } }

/* ============================================================ PAGE PRELOADER (load screen)
   Shows immediately (in HTML, no JS needed). JS hides it (.rs-done) once the DOM is ready;
   a CSS failsafe auto-hides it at 4s so it can never trap the user. */
.rs-preload{ position:fixed; inset:0; z-index:9999; animation:rs-pl-fail .01s linear 3.4s forwards; }
.rs-pl-panel{ position:absolute; left:0; width:100%; height:50.5%; background:#fff; will-change:transform;
  transition:transform .8s cubic-bezier(.76,0,.24,1); }
.rs-pl-top{ top:0; }
.rs-pl-bot{ bottom:0; }
.rs-preload-in{ position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:22px;
  transition:opacity .3s ease, transform .45s cubic-bezier(.16,.84,.44,1); }
.rs-preload-logo{ height:50px; width:auto; display:block; animation:rs-pl-logo .55s ease both; }
.rs-pl-ring{ width:34px; height:34px; border-radius:50%; border:3px solid #E3E7EE; border-top-color:var(--indigo); animation:rs-pl-spin .7s linear infinite; }
/* exit — curtain splits open, logo lifts & fades */
.rs-preload.rs-done .rs-pl-top{ transform:translateY(-101%); }
.rs-preload.rs-done .rs-pl-bot{ transform:translateY(101%); }
.rs-preload.rs-done .rs-preload-in{ opacity:0; transform:translateY(-14px); }
.rs-preload.rs-gone{ visibility:hidden; pointer-events:none; }
@keyframes rs-pl-logo{ from{ opacity:0; transform:translateY(10px) scale(.96); } to{ opacity:1; transform:none; } }
@keyframes rs-pl-spin{ to{ transform:rotate(360deg); } }
@keyframes rs-pl-fail{ to{ opacity:0; visibility:hidden; pointer-events:none; } }
@media (prefers-reduced-motion:reduce){
  .rs-pl-ring{ animation:none; } .rs-preload-logo{ animation:none; }
  .rs-pl-panel{ transition:opacity .3s ease; } .rs-preload.rs-done{ opacity:0; visibility:hidden; }
}

/* ============================================================ MOTION — load intro + scroll reveal
   Safe by design: states apply only while <html class="rs-anim"> (added by JS, removed if JS fails),
   only under no-preference (respects reduced-motion), and use translate/scale (not transform) so
   hover transforms keep working. Reveal class is .rs-in (NOT .in — that's the hero inner box). */
@media (prefers-reduced-motion:no-preference){
  .rs-anim .rs-sec .rs-eyebrow,
  .rs-anim .rs-sec .rs-h2,
  .rs-anim .rs-sec h2,
  .rs-anim .rs-bento>*,
  .rs-anim .rs-adv,
  .rs-anim .rs-sec article,
  .rs-anim .rs-stat,
  .rs-anim .rs-faq details,
  .rs-anim .rs-form-card,
  .rs-anim .rs-tslide,
  .rs-anim .rs-yacht-sec .rs-eyebrow,
  .rs-anim .rs-yacht-sec h2,
  .rs-anim .rs-herowrap .rs-eyebrow,
  .rs-anim .rs-herowrap h1,
  .rs-anim .rs-herowrap .sub,
  .rs-anim .rs-herowrap .rs-book,
  .rs-anim .rs-herowrap .rs-social{
    opacity:0; translate:0 30px;
    transition:opacity .7s cubic-bezier(.16,.84,.44,1), translate .7s cubic-bezier(.16,.84,.44,1), scale .7s cubic-bezier(.16,.84,.44,1);
    transition-delay:var(--d,0s); will-change:opacity, translate, scale;
  }
  .rs-anim .rs-adv{ scale:.9; }
  .rs-anim .rs-form-card{ translate:44px 0; }
  .rs-anim .rs-herowrap .rs-book{ translate:0 42px; }
  .rs-anim .rs-herowrap .rs-social{ translate:24px 0; }
  .rs-anim .rs-in{ opacity:1 !important; translate:0 0 !important; scale:1 !important; }  /* beats higher-specificity hidden rules; !important on translate/scale only — hover transform untouched */
  /* floating header drops in on load */
  .rs-anim .rs-header{ opacity:0; translate:0 -130%; transition:opacity .5s ease, translate .75s cubic-bezier(.16,.84,.44,1); }
  .rs-anim.rs-loaded .rs-header{ opacity:1; translate:0 0; }
  .rs-anim body{ overflow-x:clip; }   /* sideways slides never spawn a horizontal scrollbar */
}

/* ============================================================ RESPONSIVE */
@media (max-width:1199px){
  .rs-nav,.rs-act .rs-support,.rs-act .rs-btn--dark{ display:none; }
  .t4v-rs .rs-burger{ display:inline-flex; }
  .rs-headbar{ height:60px; padding:0 16px; gap:12px; }   /* keep rounded floating pill, like desktop */
  .rs-logo{ position:static; transform:translateY(-3px); }      /* logo left, nudge up so text centers */
  .rs-logo img{ height:30px; }
  .rs-nav{ margin-top:0; }
  .t4v-rs .rs-icon{ width:36px; height:36px; }
  .t4v-rs .rs-lang button{ width:30px; height:30px; }   /* flag a touch smaller so it looks equal */
  .t4v-rs .rs-icon svg{ width:16px !important; height:16px !important; }
  .rs-social{ right:14px; gap:10px; }
  .rs-social a{ width:38px; height:38px; }
  .rs-intro{ grid-template-columns:1fr; column-gap:0; gap:26px; }                 /* tablets: intro text full width */
  .rs-bento{ grid-template-columns:repeat(2,1fr); grid-auto-rows:minmax(200px,auto); }   /* card spans full width → never the narrow half */
  .rs-cell.big{ grid-column:span 2; grid-row:span 1; }
}
@media (max-width:849px){
  .rs-hero{ min-height:720px; }                  /* taller video on tablet */
  .rs-hero .in{ padding:96px 20px 44px; }        /* title clears the floating menu */
  .rs-hero h1{ font-size:52px; }
  .rs-hero .sub{ margin-top:16px; }
  .rs-social{ top:42%; }                          /* sit beside the title, above the booking box */
  .rs-book{ gap:10px; margin-top:20px; }         /* title + button grouped just above the box */
  .rs-hmini{ margin-top:22px; }
  .rs-h2,.rs-intro h2{ font-size:34px; }
  .rs-stats{ grid-template-columns:repeat(2,1fr); }
  .rs-stories{ grid-template-columns:1fr; }
  .rs-vquote{ min-height:480px; }
  /* tour rows: keep the photo (photo · name+meta · price); number → small badge on the photo */
  .rs-row{ grid-template-columns:120px 1fr auto; grid-template-areas:"th nm price" "th meta price"; gap:2px 16px; padding:18px 6px; align-items:center; }
  .rs-row{ align-items:start; }                                  /* top-align so photo + text + badge line up */
  .rs-row .th{ display:block; grid-area:th; grid-row:1 / 3; width:120px; height:100px; align-self:start; }
  .rs-row .nm{ grid-area:nm; }
  .rs-row .nm h3{ font-size:20px; }
  .rs-row .nm p{ display:none; }
  .rs-row .meta{ grid-area:meta; font-size:12.5px; align-self:start; }
  .rs-row .price{ grid-area:price; text-align:right; }
  .rs-row .idx{ position:absolute; top:26px; left:14px; width:28px; height:28px; font-size:11px; z-index:2; box-shadow:0 2px 8px rgba(22,32,46,.25); }   /* fixed on the photo's top-left corner (photo is top-pinned) */
  .rs-galgrid{ grid-template-columns:repeat(2,1fr); }
  .rs-galgrid > *{ grid-column:auto !important; margin-top:0 !important; }
  .rs-galgrid img{ height:240px !important; }
  .rs-ctabar{ grid-template-columns:1fr; }
  .rs-ctabar .thumb{ display:none; }
}
/* tablet: brand blurb full width, then the 3 link columns side by side (33/33/33) */
@media (min-width:561px) and (max-width:1024px){
  .rs-foot-top{ grid-template-columns:repeat(3,1fr); gap:30px 28px; }
  .rs-foot-news{ grid-column:1 / -1; }
}
@media (max-width:560px){
  .t4v-rs{ font-size:16px; }
  .rs-eyebrow{ font-size:10px; letter-spacing:.1em; padding:5px 11px; margin-bottom:12px; }   /* smaller chips on mobile */
  .rs-logo img{ height:24px; }
  .t4v-rs .rs-icon{ width:34px; height:34px; }
  .t4v-rs .rs-lang button{ width:28px; height:28px; }
  .t4v-rs .rs-icon svg{ width:15px !important; height:15px !important; }
  .rs-headbar{ height:56px; padding:0 12px; gap:8px; }
  .rs-hero{ min-height:auto; }
  .rs-hero .in{ padding:90px 15px 40px; }
  .rs-hero h1{ font-size:38px; }
  .rs-hero .sub{ margin-top:14px; }
  .rs-h2,.rs-intro h2,.rs-ctabar h2{ font-size:28px; }
  .rs-book{ flex-direction:column; align-items:stretch; gap:12px; margin-top:30px; }   /* a bit more air between fields */
  .rs-book .rs-bf{ flex:1 1 10px; }
  .rs-book .rs-btn{ width:100%; justify-content:center; }
  .rs-bf label{ margin:0 0 5px 4px; }
  .rs-social{ display:none; }   /* hide hero social on mobile (they overlap content; available in the drawer) */
  .rs-hmini{ display:grid; grid-template-columns:1fr 1fr; gap:12px 16px; margin-top:22px; }
  .rs-bento,.rs-stats,.rs-foot-top,.rs-galgrid{ grid-template-columns:1fr; }
  .rs-cell.big,.rs-cell.wide,.t4v-rs a.rs-explore{ grid-column:span 1; grid-row:auto; }
  .rs-wrap{ padding:0 18px; }
  .rs-quote,.rs-ctabar{ padding:28px; }
  .rs-row{ grid-template-columns:104px 1fr auto; }
  .rs-row .th{ width:104px; height:90px; }
  .rs-foot-brand{ flex-direction:column; align-items:flex-start; gap:16px; }
  .rs-vquote{ min-height:430px; }
  .rs-vquote-inner{ padding:44px 20px; }
  .rs-vquote-mark{ font-size:72px; height:36px; }
}
