/* ============================================================
   Blue Amalfi Charter — "Notte Mediterranea"
   Dark, elegant Mediterranean theme
   ============================================================ */

:root {
  --bg:         #0A1524;
  --surface:    #131F33;
  --surface-2:  #0F1B2C;
  --sand:       #15233A;
  --deep:       #050C18;
  --primary:    #2D6FA6;
  --accent:     #5AA4D8;
  --gold:       #BFA068;
  --heading:    #F6F3EC;
  --text:       #D6DBE5;
  --muted:      #AEB8C7;
  --line:       rgba(255,255,255,0.14);
  --btn-text:   #FFFFFF;

  --radius:     18px;
  --radius-sm:  12px;
  --shadow:     0 22px 54px -26px rgba(0,0,0,0.75);
  --shadow-sm:  0 14px 32px -20px rgba(0,0,0,0.65);

  --container:  1180px;
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'Jost', 'Helvetica Neue', Arial, sans-serif;
}

/* ---------- Reset / base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--primary); color: var(--btn-text); padding: .8rem 1.2rem; z-index: 200;
}
.skip-link:focus { left: 0; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.section { padding: clamp(0.3rem, 0.7vw, 0.6rem) 0; }
.section--sand { background: var(--sand); }
.section--mist { background: var(--surface-2); }
.section--white { background: var(--surface); }

section[id] { scroll-margin-top: 104px; }

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.1; color: var(--heading); }

.eyebrow {
  font-family: var(--sans);
  font-size: .76rem; font-weight: 600;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-head { max-width: 640px; margin-bottom: clamp(0.15rem, 0.4vw, 0.4rem); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(2.1rem, 4.4vw, 3.2rem); }
.section-head p { margin-top: 1rem; color: var(--muted); font-size: 1.08rem; }

.lead { font-size: 1.12rem; color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--sans); font-size: .82rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 1rem 1.9rem; border-radius: 999px;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .2s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary { background: var(--primary); color: var(--btn-text); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--deep); }

.btn-ghost { background: transparent; color: var(--heading); border-color: var(--primary); }
.btn-ghost:hover { background: var(--primary); color: var(--btn-text); }

.btn-ghost-light { background: rgba(255,255,255,.10); color: #fff; border-color: rgba(255,255,255,.7); }
.btn-ghost-light:hover { background: #fff; color: var(--btn-text); }

.btn-wa { background: #25D366; color: #073d24; }
.btn-wa:hover { background: #1ebe5a; }

.link-arrow {
  font-family: var(--sans); font-size: .82rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--primary);
  display: inline-flex; align-items: center; gap: .5rem;
}
.link-arrow::after { content: "\2192"; transition: transform .2s ease; }
.link-arrow:hover { color: var(--accent); }
.link-arrow:hover::after { transform: translateX(5px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
  padding: 18px 0;
}
.site-header.scrolled {
  background: var(--bg);
  box-shadow: 0 6px 28px -18px rgba(0,0,0,.8);
  backdrop-filter: blur(8px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }

.logo { display: flex; flex-direction: column; line-height: 1; color: #fff; transition: color .3s ease; }
.logo-img { width: 180px; height: auto; }
.logo .logo-name { font-family: var(--serif); font-size: 1.6rem; font-weight: 600; letter-spacing: .02em; }
.logo .logo-sub { font-family: var(--sans); font-size: .62rem; font-weight: 600; letter-spacing: .42em; text-transform: uppercase; margin-top: 4px; opacity: .85; }
.scrolled .logo { color: var(--heading); }

.main-nav ul { display: flex; gap: 2rem; }
.main-nav a {
  font-size: .82rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: #fff; padding: 6px 0; position: relative; transition: color .25s ease;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1.5px;
  background: var(--accent); transition: width .25s ease;
}
.main-nav a:hover::after { width: 100%; }
.scrolled .main-nav a { color: var(--text); }

.header-actions { display: flex; align-items: center; gap: 1rem; }
.lang { display: flex; gap: .35rem; font-size: .76rem; font-weight: 600; letter-spacing: .08em; color: #fff; }
.lang a, .lang button { background: none; border: 0; color: inherit; cursor: pointer; opacity: .6; padding: 4px; font: inherit; }
.lang a.active, .lang button.active { opacity: 1; text-decoration: underline; text-underline-offset: 4px; }
.scrolled .lang { color: var(--text); }

.header-actions .btn { padding: .7rem 1.35rem; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 6px;
}
.nav-toggle span { width: 26px; height: 2px; background: #fff; transition: background .3s ease; }
.scrolled .nav-toggle span { background: var(--heading); }

/* legibility for the transparent header over a bright hero photo */
.site-header:not(.scrolled) .main-nav a,
.site-header:not(.scrolled) .lang { text-shadow: 0 1px 7px rgba(0,0,0,.6); }
.site-header:not(.scrolled) .logo-img { filter: drop-shadow(0 2px 6px rgba(0,0,0,1)) drop-shadow(0 5px 24px rgba(0,0,0,.85)); }
.site-header:not(.scrolled) .nav-toggle span { box-shadow: 0 1px 5px rgba(0,0,0,.55); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-content { position: relative; z-index: 2; color: #fff; text-align: center; margin: 0 auto; max-width: 820px; padding: 1.5rem 0; text-shadow: 0 1px 4px rgba(0,0,0,.45), 0 4px 30px rgba(0,0,0,.55); }
.hero .eyebrow { color: #fff; opacity: .92; }
.hero h1 { color: #fff; font-size: clamp(2.8rem, 6.4vw, 5rem); font-style: italic; }
.hero p { margin: 1.3rem auto 0; font-size: 1.18rem; max-width: 540px; color: rgba(255,255,255,.92); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; justify-content: center; }
.hero-note { margin-top: 1.8rem; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.8); }

/* ---------- Trust bar ---------- */
.trust-bar { background: var(--deep); color: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 1.8rem 1.5rem; text-align: center; border-right: 1px solid rgba(255,255,255,.10); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; font-family: var(--serif); font-size: 1.65rem; font-weight: 600; color: var(--heading); }
.trust-item span { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

/* ---------- About ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.about-img { position: relative; }
.about-img img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.about-badge {
  position: absolute; bottom: -26px; right: -10px;
  background: var(--gold); color: #2A2008; font-family: var(--serif);
  padding: 1rem 1.6rem; border-radius: var(--radius-sm); box-shadow: var(--shadow-sm);
  text-align: center; line-height: 1.1;
}
.about-badge b { display: block; font-size: 1.9rem; font-weight: 600; }
.about-badge span { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; font-family: var(--sans); }
.about-text h2 { font-size: clamp(2rem, 4vw, 3rem); }
.about-text p { margin-top: 1.1rem; color: var(--muted); }
.about-list { margin-top: 1.6rem; display: grid; gap: .7rem; }
.about-list li { display: flex; gap: .7rem; align-items: flex-start; color: var(--text); }
.about-list li::before { content: "\2713"; color: var(--accent); font-weight: 700; }
.about-list.excluded li::before { content: "\2715"; color: var(--muted); }
.about-text .link-arrow { margin-top: 1.8rem; }

/* ---------- Tours ---------- */
.tours-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.8rem; }
.journal-grid { grid-template-columns: repeat(5, 1fr); }
.tours-grid--5 { grid-template-columns: repeat(5, 1fr); }
.tour-card {
  position: relative;
  background: var(--surface); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
/* whole tour card clickable — the card link stretched over the full card */
.tour-card .link-arrow::before { content: ""; position: absolute; inset: 0; z-index: 1; }
.tour-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.tour-media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.tour-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.tour-card:hover .tour-media img { transform: scale(1.05); }
.tour-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--gold); color: #2A2008; font-size: .68rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; padding: .4rem .8rem; border-radius: 999px;
}
.tour-body { padding: 0.6rem 1.2rem 0.7rem; display: flex; flex-direction: column; flex: 1; }
.tour-body h3 { font-size: 1.5rem; }
.tour-meta { margin: .2rem 0 .35rem; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; color: var(--primary); }
.tour-body p { font-size: .96rem; color: var(--muted); }
.tour-foot { margin-top: auto; padding-top: .55rem; display: flex; align-items: center; justify-content: space-between; }
.tour-price { font-family: var(--serif); font-size: 1.15rem; color: var(--heading); }
.tour-price small { font-family: var(--sans); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); display: block; }

.tailor-band {
  margin-top: 2.4rem; background: var(--deep); color: #fff; border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: clamp(1.8rem, 4vw, 2.6rem); display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between; gap: 1.4rem;
}
.tailor-band h3 { color: var(--heading); font-size: 1.7rem; }
.tailor-band p { color: var(--muted); font-size: .98rem; margin-top: .3rem; }

/* ---------- Fleet ---------- */
.fleet-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.8rem; }
.boat-card { position: relative; background: var(--surface); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); transition: transform .25s ease, box-shadow .25s ease; }
.boat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
/* whole boat card clickable — stretched link over the full card */
.boat-card .link-arrow::before { content: ""; position: absolute; inset: 0; z-index: 1; }
.boat-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; transition: transform .5s ease; }
.boat-card:hover img { transform: scale(1.05); }
.boat-body { padding: 0.6rem 1.2rem 0.7rem; }
.boat-type { font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--primary); }
.boat-body h3 { font-size: 1.8rem; margin-top: .3rem; }
.boat-body p { color: var(--muted); margin-top: .35rem; }
.boat-specs { display: flex; flex-wrap: wrap; gap: .5rem; margin: .55rem 0 .75rem; }
.boat-specs li {
  background: var(--surface-2); color: var(--text); font-size: .78rem; font-weight: 500;
  padding: .4rem .8rem; border-radius: 999px; border: 1px solid var(--line);
}

/* ---------- Features ---------- */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
.feature { text-align: center; padding: 1rem; }
.feature-icon {
  width: 62px; height: 62px; margin: 0 auto 1.1rem; border-radius: 50%;
  background: var(--surface); box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
}
.feature-icon svg { color: var(--accent); }
.feature h3 { font-size: 1.3rem; }
.feature p { margin-top: .5rem; font-size: .94rem; color: var(--muted); }

/* ---------- Booking ---------- */
.booking-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.booking-info h2 { font-size: clamp(2rem, 4vw, 3rem); }
.booking-info p { margin-top: 1rem; color: var(--muted); }
.contact-list { margin-top: 2rem; display: grid; gap: 1.3rem; }
.contact-item { display: flex; gap: 1rem; align-items: center; }
.contact-item .ci-icon {
  width: 46px; height: 46px; flex: none; border-radius: 50%;
  background: var(--primary); color: var(--btn-text); display: flex; align-items: center; justify-content: center;
}
.contact-item span { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.contact-item strong { display: block; font-size: 1.08rem; color: var(--heading); font-weight: 600; }

.booking-form { background: var(--surface); border-radius: var(--radius); padding: clamp(1.6rem, 3.5vw, 2.6rem); box-shadow: var(--shadow); border: 1px solid var(--line); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: .76rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: .45rem; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--heading);
  padding: .85rem 1rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--bg); transition: border-color .2s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); outline: none; }
.field textarea { resize: vertical; min-height: 90px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-consent { display: flex; gap: .6rem; align-items: flex-start; font-size: .85rem; color: var(--muted); margin: .4rem 0 1.2rem; }
.form-consent input { margin-top: 4px; }
.booking-form .btn-primary { width: 100%; justify-content: center; }
.form-note { margin-top: .9rem; font-size: .82rem; color: var(--muted); text-align: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--deep); color: var(--muted); padding: clamp(3rem, 6vw, 4.5rem) 0 1.8rem; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; }
.footer-brand .logo-name { font-family: var(--serif); font-size: 1.7rem; color: var(--heading); }
.footer-brand p { margin-top: .8rem; font-size: .92rem; max-width: 260px; }
.footer-col h4 { font-family: var(--sans); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--primary); margin-bottom: 1rem; }
.footer-col li { margin-bottom: .6rem; }
.footer-col a:hover { color: var(--heading); }
.footer-bottom {
  margin-top: 2.6rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  font-size: .82rem; color: var(--muted);
}
.footer-bottom a:hover { color: var(--heading); }

/* ---------- Reveal animation (safe: visible without JS) ---------- */
.reveal { opacity: 1; }
html.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
html.js .reveal.in { opacity: 1; transform: none; }
/* keep the card hover-lift working once the card is revealed */
html.js .reveal.in.tour-card:hover,
html.js .reveal.in.boat-card:hover { transform: translateY(-6px); }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Mobile menu panel ---------- */
.mobile-nav {
  position: fixed; inset: 0; z-index: 90; background: var(--deep);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.6rem;
  opacity: 0; visibility: hidden; transition: opacity .3s ease;
}
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav a { color: var(--heading); font-family: var(--serif); font-size: 1.9rem; }
.mobile-nav .btn { margin-top: 1rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .tours-grid { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 880px) {
  .main-nav, .header-actions .btn, .lang { display: none; }
  .nav-toggle { display: flex; }
  .split, .booking-grid, .fleet-grid { grid-template-columns: 1fr; }
  .about-img { order: -1; }
  .about-badge { right: 10px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item { border-bottom: 1px solid rgba(255,255,255,.10); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .tours-grid, .features { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero p { font-size: 1.05rem; }
  .tailor-band { flex-direction: column; align-items: flex-start; }
}

/* ---------- Sub-pages (tour detail) ---------- */
.subhero { position: relative; min-height: 64svh; display: flex; align-items: flex-end; overflow: hidden; }
.subhero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.subhero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,15,38,.52) 0%, rgba(7,15,38,.32) 45%, rgba(14,33,72,.97) 100%);
}
.subhero-content { position: relative; z-index: 2; color: #fff; padding-bottom: clamp(2.6rem,6vw,4.5rem); padding-top: 9rem; }
.subhero-content .eyebrow { color: #fff; opacity: .9; }
.subhero-content h1 { color: #fff; font-size: clamp(2.4rem,5.4vw,4rem); font-style: italic; }
.subhero-content p { margin-top: .9rem; font-size: 1.1rem; color: rgba(255,255,255,.9); max-width: 560px; }

.tour-grid { display: grid; grid-template-columns: 1.7fr 1fr; gap: clamp(2rem,5vw,3.6rem); align-items: start; }
.prose > p { color: var(--text); margin-bottom: 1rem; }
.prose h2 { font-size: clamp(1.7rem,3vw,2.3rem); margin: 2.2rem 0 1rem; }
.prose h2:first-child { margin-top: 0; }
.prose .about-list { margin-top: 1rem; }

.aside-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.9rem; position: sticky; top: 104px; box-shadow: var(--shadow-sm);
}
.aside-price { font-family: var(--serif); font-size: 2rem; color: var(--heading); }
.aside-price small { font-family: var(--sans); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); display: block; }
.spec-list { margin: 1.1rem 0 1.5rem; }
.spec-list li { display: flex; justify-content: space-between; gap: 1rem; padding: .62rem 0; border-bottom: 1px solid var(--line); }
.spec-list li:last-child { border-bottom: 0; }
.spec-list .k { color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-size: .72rem; }
.spec-list .v { color: var(--heading); font-weight: 500; text-align: right; font-size: .94rem; }
.aside-card .btn { width: 100%; justify-content: center; margin-bottom: .7rem; }

.gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 1.4rem; }
.gallery img { width: 100%; aspect-ratio: 3/2; object-fit: cover; border-radius: var(--radius-sm); }
.gallery--big { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }

/* Onboard services grid */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .7rem 1.5rem; margin-top: 1.1rem; }
.services-grid li { display: flex; align-items: center; gap: .55rem; color: var(--text); font-size: .98rem; }
.services-grid li::before { content: "\2713"; color: var(--accent); font-weight: 700; flex: none; }

/* Boat page booking aside note */
.aside-card p { margin: .9rem 0 1.4rem; font-size: .92rem; color: var(--muted); }

/* ---------- Itinerary timeline ---------- */
.itinerary { list-style: none; margin: 1.2rem 0 0; }
.itinerary li {
  position: relative;
  margin-left: .6rem; padding: 0 0 1.5rem 2.4rem;
  border-left: 2px solid var(--line);
}
.itinerary li:last-child { border-left-color: transparent; padding-bottom: 0; }
.itinerary li::before {
  content: "";
  position: absolute; left: -.4rem; top: .4rem;
  width: .8rem; height: .8rem; border-radius: 50%;
  background: var(--primary);
}
.itinerary li h3 { font-size: 1.2rem; margin-bottom: .2rem; }
.itinerary li p { color: var(--muted); margin: 0; }

@media (max-width: 880px) {
  .tour-grid { grid-template-columns: 1fr; }
  .aside-card { position: static; }
  .tours-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .gallery { grid-template-columns: repeat(2,1fr); }
  .gallery--big { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .tours-grid { grid-template-columns: 1fr; }
}

/* ---------- Floating WhatsApp button ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 80;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px -8px rgba(0,0,0,.6);
  transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.09); }
.wa-float svg { width: 30px; height: 30px; }
@media (max-width: 560px) {
  .wa-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
}

/* ---------- Hero slow zoom (Ken Burns) ---------- */
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.07); } }
.hero-img, .subhero img { animation: kenburns 26s ease-in-out infinite alternate; transform-origin: center; }
@media (prefers-reduced-motion: reduce) {
  .hero-img, .subhero img { animation: none; }
}

/* ---------- Reviews ---------- */
.stars { color: var(--gold); letter-spacing: .14em; }
.section-head .stars { font-size: 1.15rem; margin-top: .6rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.review-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow-sm); }
.review-card .stars { font-size: .92rem; }
.review-quote { font-family: var(--serif); font-style: italic; font-size: 1.2rem; line-height: 1.5; color: var(--heading); margin: .7rem 0 1.1rem; }
.review-author { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--primary); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { cursor: pointer; padding: 1.15rem 0; font-family: var(--serif); font-size: 1.3rem; color: var(--heading); list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--primary); font-size: 1.5rem; line-height: 1; flex: none; }
.faq-list details[open] summary::after { content: "\2013"; }
.faq-list details p { color: var(--text); margin: 0; padding: 0 0 1.2rem; }

@media (max-width: 880px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ---------- Footer payments ---------- */
.footer-payments {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 0.6rem; padding: 1.4rem 0 1.2rem; margin-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.footer-payments img {
  height: 28px; width: auto; padding: 8px 13px;
  background: #fff; border-radius: 6px;
  display: block;
}
.footer-payments .secure-notice {
  flex-basis: 100%;
  text-align: center;
  margin: 0.6rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}
.footer-payments .secure-notice svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
  vertical-align: middle;
  margin-right: 0.4rem;
}
.footer-payments img { box-shadow: 0 2px 8px rgba(0,0,0,.25); }

/* ===================================================================
   CRO — Barra fissa di prenotazione (solo mobile)
   WhatsApp + Chiama + trust line. Si nasconde su desktop.
   =================================================================== */
.cro-bookbar{
  position:fixed; left:0; right:0; bottom:0; z-index:1300;
  background:rgba(10,21,36,.97);
  -webkit-backdrop-filter:blur(10px); backdrop-filter:blur(10px);
  border-top:1px solid rgba(191,160,104,.5);
  box-shadow:0 -8px 28px rgba(0,0,0,.40);
  padding:.45rem .7rem calc(.55rem + env(safe-area-inset-bottom,0px));
  display:none;
}
.cro-bookbar .cro-trust{
  margin:.15rem 0 .45rem; text-align:center;
  font-family:'Jost',sans-serif; font-size:.72rem; line-height:1.2;
  letter-spacing:.015em; color:var(--gold);
}
.cro-bookbar .cro-trust b{ color:#fff; font-weight:600; }
.cro-bookbar .cro-trust .dot{ opacity:.45; margin:0 .3rem; }
.cro-bookbar .cro-row{ display:flex; gap:.5rem; }
.cro-bookbar a{
  flex:1; display:flex; align-items:center; justify-content:center; gap:.45rem;
  height:48px; border-radius:9px; text-decoration:none;
  font-family:'Jost',sans-serif; font-weight:600; font-size:.97rem; letter-spacing:.01em;
  transition:transform .12s ease, filter .12s ease;
}
.cro-bookbar a:active{ transform:scale(.98); }
.cro-bookbar .cro-wa{ flex:2.2; background:#25D366; color:#fff; }
.cro-bookbar .cro-wa svg{ width:19px; height:19px; fill:#fff; }
.cro-bookbar .cro-call{ background:transparent; color:var(--text); border:1px solid rgba(214,219,229,.42); }
.cro-bookbar .cro-call svg{ width:17px; height:17px; fill:currentColor; }
@media (max-width:768px){
  .cro-bookbar{ display:block; }
  .wa-float{ display:none !important; }   /* evita doppione col FAB tondo */
  body{ padding-bottom:112px; }
}
