/* ──────────────────────────────────────────────────────────────────────────
   BELLA COAST CHARTER — Shared boat-detail page styles
   Each boat page links this file and only sets one custom property
   (--accent) for its own colour identity.
   ────────────────────────────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #1C3554;
  --navy-d:  #0E1A24;
  --navy-deep: #060B12;
  --gold:    #8C7040;
  --gold-l:  #C9A96E;
  --gold-xl: #E8D5B0;
  --cream:   #F9F8F7;
  --paper:   #FFFFFF;
  --text:    #2A2A2A;
  --muted:   #6B7280;
  --line:    rgba(140, 112, 64, 0.16);

  --serif:   'Instrument Serif', Georgia, serif;
  --sans:    'Figtree', system-ui, -apple-system, sans-serif;

  --map-bg:  url('../assets/sfondo-carta.webp');

  /* Tokens overridden per-boat. The --accent is the boat's signature colour
     used on hero, dividers, badge, button hover, and "details" links. */
  --accent:    var(--gold);
  --accent-l:  var(--gold-l);
  --accent-xl: var(--gold-xl);

  --container: 1240px;

  --shadow-card: 0 1px 2px rgba(14, 26, 36, .04), 0 8px 24px rgba(14, 26, 36, .07);
  --shadow-card-h: 0 4px 12px rgba(14, 26, 36, .08), 0 24px 48px rgba(14, 26, 36, .14);

  --ease-out: cubic-bezier(.2, .7, .2, 1);
}

html {
  scroll-behavior: smooth; scroll-padding-top: 80px;
  /* Cream canvas. The nautical chart sits on a position:fixed .site-bg div
     injected by shared/site.js — we can't use background-attachment:fixed
     here because iOS Safari sizes it to the viewport and crops the image. */
  background-color: var(--paper);
}
body {
  font-family: var(--sans); font-weight: 400;
  color: var(--text); background: transparent;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* Site bg — fixed div behind everything. shared/site.js sets these inline
   too so it renders before this CSS arrives. */
.site-bg {
  position: fixed !important;
  inset: 0 !important;
  z-index: -1 !important;
  pointer-events: none;
  background-image: url('/assets/sfondo-carta.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: var(--paper);
}

/* A11y */
:focus-visible { outline: 2px solid var(--accent-l); outline-offset: 3px; }
.skip-link {
  position: absolute; top: -100px; left: 16px;
  background: var(--navy-d); color: #fff;
  padding: 10px 16px; z-index: 10000;
  transition: top .2s;
}
.skip-link:focus { top: 16px; }

/* ── NAV ── (mirrors the home) */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 0 clamp(20px, 4vw, 40px);
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
  background: rgba(14, 26, 36, .92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .06);
  transition: height .3s;
}
.nav.scrolled { height: 60px; }

.nav-logo {
  display: inline-flex; align-items: baseline; gap: 10px;
  color: #fff; line-height: 1;
}
.nav-logo .mark {
  width: 26px; height: 26px;
  border: 1px solid var(--gold-l);
  display: inline-grid; place-items: center;
  font-family: var(--serif); font-style: italic;
  font-size: 14px; color: var(--gold-l);
  transform: translateY(2px);
}
.nav-logo .word {
  font-family: var(--serif); font-style: italic;
  font-size: 24px; letter-spacing: -0.005em;
}
.nav-logo .sub {
  font-family: var(--sans); font-style: normal;
  font-size: 9px; font-weight: 600;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold-l);
  align-self: end; padding-bottom: 4px;
}

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links > a {
  font-size: 12px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255, 255, 255, .82);
  padding: 6px 0; position: relative;
  transition: color .2s;
}
.nav-links > a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--accent-l);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.nav-links > a:hover, .nav-links > a[aria-current="page"] { color: #fff; }
.nav-links > a:hover::after, .nav-links > a[aria-current="page"]::after { transform: scaleX(1); }

.btn-book {
  font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid var(--accent-l);
  color: var(--accent-l); background: transparent;
  transition: background .25s, color .25s, transform .12s;
}
.btn-book:hover { background: var(--accent-l); color: var(--navy-d); }
.btn-book:active { transform: scale(.97); }

/* ── HERO ── */
.hero {
  position: relative;
  height: 70vh; min-height: 480px; max-height: 720px;
  margin-top: 0;
  overflow: hidden;
  isolation: isolate;
  background: var(--navy-deep);
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  transform: scale(1.04);
  animation: heroDrift 25s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroDrift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to   { transform: scale(1.0) translate3d(-1%, -.8%, 0); }
}
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top, rgba(14, 26, 36, .82) 0%, rgba(14, 26, 36, .15) 55%, transparent 100%);
}
.hero-content {
  position: absolute; inset: auto 0 0 0;
  padding: 56px clamp(20px, 4vw, 64px);
  max-width: var(--container); margin: 0 auto;
  width: 100%;
}
.hero-breadcrumb {
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent-l); margin-bottom: 14px;
  display: inline-flex; align-items: center; gap: 8px;
}
.hero-breadcrumb a { color: rgba(201, 169, 110, .7); transition: color .2s; }
.hero-breadcrumb a:hover { color: var(--accent-l); }
.hero-breadcrumb .sep { color: rgba(201, 169, 110, .5); }

.hero-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5.5vw, 76px);
  color: #fff; font-weight: 400;
  line-height: 1.06; letter-spacing: -0.01em;
  margin-bottom: 10px;
  text-wrap: balance;
}
.hero-title em { font-style: italic; color: var(--accent-xl); }
.hero-badge {
  display: inline-block;
  background: var(--accent); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 14px; margin-left: 14px;
  vertical-align: middle;
  transform: translateY(-8px);
}

/* ── SPECS STRIP ── */
.specs-strip {
  background: var(--navy);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
.spec-item {
  padding: 26px 32px;
  border-right: 1px solid rgba(255, 255, 255, .08);
}
.spec-item:last-child { border-right: none; }
.spec-label {
  font-size: 9px; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--accent-l);
  margin-bottom: 8px;
}
.spec-val {
  font-family: var(--serif); font-size: 24px;
  color: #fff; line-height: 1;
  font-variant-numeric: tabular-nums;
}

/* ── MAIN LAYOUT ── */
.boat-main {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 0;
  max-width: 1440px; margin: 0 auto;
  background: rgba(255, 255, 255, 0.82);
}

.boat-content { padding: 72px clamp(24px, 5vw, 64px); }

.eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 12px;
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ''; width: 18px; height: 1px; background: var(--accent); }

.content-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400; line-height: 1.15;
  color: var(--navy-d);
  margin-bottom: 18px;
  text-wrap: balance;
}
.content-title em { font-style: italic; color: var(--accent); }

.rule { width: 48px; height: 1px; background: var(--accent); margin: 18px 0 32px; }

.content-desc {
  font-size: 16px; font-weight: 300; line-height: 1.85;
  color: var(--text);
  text-wrap: pretty;
}
.content-desc p { margin-bottom: 18px; }
.content-desc p:last-child { margin-bottom: 0; }

/* ── DETAILS LIST (key features below description) ── */
.details-list {
  margin: 40px 0;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 16px 32px;
}
.details-list li {
  list-style: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px; line-height: 1.5;
  display: flex; gap: 14px; align-items: baseline;
}
.details-list .key {
  flex: 0 0 110px;
  font-size: 11px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted);
}
.details-list .val { color: var(--text); font-weight: 400; }

/* ── GALLERY ── */
.gallery-title {
  font-size: 11px; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--accent);
  margin: 48px 0 20px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-bottom: 32px;
}
.gallery-item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
  background: var(--cream);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(14, 26, 36, 0);
  transition: background .3s;
  display: grid; place-items: center;
}
.gallery-item:hover .gallery-item-overlay { background: rgba(14, 26, 36, .25); }
/* Zoom indicator drawn entirely in CSS — no inline SVG markup needed per item. */
.gallery-item-overlay::after {
  content: '';
  width: 38px; height: 38px;
  border: 1px solid rgba(255, 255, 255, .85);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='1.6'><circle cx='11' cy='11' r='6'/><path d='M21 21l-5-5'/></svg>");
  background-size: 18px 18px;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity .3s, transform .3s;
  transform: scale(.92);
}
.gallery-item:hover .gallery-item-overlay::after { opacity: 1; transform: scale(1); }

/* ── SIDEBAR ── */
.boat-sidebar {
  background: rgba(249, 248, 247, 0.86);
  padding: 72px 40px;
  border-left: 1px solid var(--line);
  position: relative;
}
.sidebar-accent-line {
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--accent);
}
.sidebar-title {
  font-family: var(--serif); font-size: 28px;
  color: var(--navy-d); margin-bottom: 8px;
  line-height: 1.1;
}
.sidebar-sub {
  font-size: 13px; color: var(--muted);
  margin-bottom: 32px; line-height: 1.7;
}

.form-field {
  border: 1px solid #E5E7EB;
  padding: 16px 18px 10px;
  position: relative;
  margin-bottom: -1px;
  transition: border-color .2s, box-shadow .2s;
  background: var(--paper);
}
.form-field:focus-within {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(28, 53, 84, .08);
  z-index: 1;
}
.form-field label {
  display: block;
  font-size: 10px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--navy);
  margin-bottom: 4px;
}
.form-field input,
.form-field select {
  width: 100%; border: none; outline: none; background: transparent;
  font-family: var(--sans); font-size: 14px; color: var(--text);
}
.form-field select { cursor: pointer; }

.btn-primary {
  width: 100%; display: block;
  background: var(--accent); color: #fff;
  font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  padding: 16px;
  text-align: center; cursor: pointer; border: none;
  margin-top: 24px;
  transition: background .25s, transform .12s;
}
.btn-primary:hover { background: var(--navy-d); color: var(--accent-l); }
.btn-primary:active { transform: scale(.98); }

.sidebar-contact {
  margin-top: 36px; padding-top: 28px;
  border-top: 1px solid var(--line);
}
.sidebar-contact-title {
  font-size: 11px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--navy);
  margin-bottom: 16px;
}
.contact-row {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 12px; font-size: 13px; color: var(--muted);
}
.contact-row svg { width: 16px; height: 16px; color: var(--accent); flex: 0 0 auto; }
.contact-row a {
  color: var(--navy); font-weight: 500;
  transition: color .2s;
}
.contact-row a:hover { color: var(--accent); }

/* ── BACK TO FLEET ── */
.back-strip {
  background: rgba(14, 26, 36, 0.86);
  color: rgba(255, 255, 255, .65);
  padding: 22px clamp(20px, 4vw, 40px);
  text-align: center;
  font-size: 13px;
}
.back-strip a {
  color: var(--accent-l); font-weight: 500;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap .25s, color .2s;
}
.back-strip a:hover { gap: 12px; color: #fff; }

/* ── FOOTER ── */
footer {
  background: rgba(6, 11, 18, 0.82);
  color: rgba(255, 255, 255, .68);
  padding: 56px clamp(20px, 4vw, 40px) 28px;
  text-align: center;
  font-size: 13px;
}
footer .footer-logo {
  font-family: var(--serif); font-style: italic;
  font-size: 24px; color: #fff;
  display: inline-flex; align-items: baseline; gap: 8px;
  margin-bottom: 16px;
}
footer .footer-logo .mark {
  width: 26px; height: 26px;
  border: 1px solid var(--gold-l);
  display: inline-grid; place-items: center;
  font-size: 14px; color: var(--gold-l);
  transform: translateY(2px);
}
footer .footer-tag {
  font-size: 13px; line-height: 1.7;
  max-width: 56ch; margin: 0 auto 20px;
  color: rgba(255, 255, 255, .55);
}
footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 18px; margin-top: 28px;
  font-size: 12px; color: rgba(255, 255, 255, .35);
}
footer a { color: rgba(255, 255, 255, .55); transition: color .2s; }
footer a:hover { color: var(--accent-l); }

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0, 0, 0, .94);
  align-items: center; justify-content: center;
  animation: lightboxFade .25s ease;
}
.lightbox[data-open="true"] { display: flex; }
@keyframes lightboxFade { from { opacity: 0; } to { opacity: 1; } }
.lightbox-img {
  max-width: 92vw; max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .6);
}
.lightbox-close {
  position: absolute; top: 20px; right: 28px;
  color: rgba(255, 255, 255, .72);
  font-size: 24px;
  cursor: pointer; background: none; border: none;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  transition: color .2s;
}
.lightbox-close:hover { color: #fff; }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: none; border: none;
  color: rgba(255, 255, 255, .55);
  font-size: 36px; cursor: pointer;
  padding: 24px;
  transition: color .2s;
}
.lightbox-prev { left: 8px; }
.lightbox-next { right: 8px; }
.lightbox-prev:hover, .lightbox-next:hover { color: #fff; }
.lightbox-counter {
  position: absolute; bottom: 22px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .55);
  font-size: 12px; letter-spacing: .14em;
}

/* ── REVEAL ── */
[data-reveal] {
  opacity: 0; transform: translateY(24px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
[data-reveal].in-view { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .boat-main { grid-template-columns: 1fr; }
  .boat-sidebar {
    border-left: none; border-top: 1px solid var(--line);
    padding: 56px 32px;
  }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero { height: 60vh; min-height: 380px; }
  .hero-content { padding: 32px 20px; }
  .boat-content { padding: 56px 22px; }
  .boat-sidebar { padding: 48px 22px; }
  .gallery-grid { grid-template-columns: 1fr; gap: 6px; }
  .specs-strip { grid-template-columns: repeat(2, 1fr); }
  .spec-item { border-bottom: 1px solid rgba(255, 255, 255, .08); }
  .details-list { grid-template-columns: 1fr; }
  .hero-badge { display: block; margin: 8px 0 0; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ──────────────────────────────────────────────────────────────────────────
   TOUR DETAIL pages — extends boat detail layout with tour-specific bits
   ────────────────────────────────────────────────────────────────────────── */

.tour-content { padding: 72px clamp(24px, 5vw, 64px); }

.itinerary-title {
  font-size: 11px; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--accent);
  margin: 48px 0 24px;
}
.itinerary { list-style: none; position: relative; padding-left: 0; margin-bottom: 40px; }
.itinerary li {
  position: relative;
  padding: 0 0 28px 36px;
  border-left: 1px solid var(--line);
  margin-left: 12px;
}
.itinerary li:last-child { padding-bottom: 0; border-left-color: transparent; }
.itinerary li::before {
  content: '';
  position: absolute; left: -7px; top: 4px;
  width: 13px; height: 13px;
  background: var(--accent);
  border: 2px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--accent);
}
.itinerary .step-time {
  font-family: var(--serif); font-style: italic;
  font-size: 14px; color: var(--accent);
  letter-spacing: .04em; margin-bottom: 4px;
}
.itinerary .step-title {
  font-family: var(--serif); font-size: 20px;
  color: var(--navy-d); line-height: 1.25;
  margin-bottom: 6px;
}
.itinerary .step-desc {
  font-size: 14px; line-height: 1.75; color: var(--text);
  font-weight: 300; max-width: 56ch;
  text-wrap: pretty;
}

.available-boats-title {
  font-size: 11px; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--accent);
  margin: 48px 0 18px;
}
.available-boats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 8px; }
.available-boat {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  background: var(--cream);
  border: 1px solid var(--line);
  transition: background .25s, transform .12s, border-color .25s;
}
.available-boat:hover {
  background: rgba(140, 112, 64, 0.05);
  border-color: var(--accent);
  transform: translateY(-1px);
}
.available-boat-img { flex: 0 0 auto; width: 56px; height: 56px; overflow: hidden; }
.available-boat-img img { width: 100%; height: 100%; object-fit: cover; }
.available-boat-text { flex: 1; }
.available-boat-name {
  font-family: var(--serif); font-size: 16px;
  color: var(--navy-d); line-height: 1.2; margin-bottom: 2px;
}
.available-boat-spec { font-size: 11px; color: var(--muted); letter-spacing: .04em; }
.available-boat-arrow { flex: 0 0 auto; color: var(--accent); font-size: 18px; transition: transform .25s; }
.available-boat:hover .available-boat-arrow { transform: translateX(4px); }

@media (max-width: 1100px) { .available-boats { grid-template-columns: 1fr; } }

.fact-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  padding: 24px 28px;
  margin: 32px 0;
  background: rgba(140, 112, 64, 0.05);
  border-left: 3px solid var(--accent);
}
.fact-item .fact-key {
  font-size: 10px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 4px;
}
.fact-item .fact-val {
  font-family: var(--serif); font-size: 18px;
  color: var(--navy-d); line-height: 1.2;
}


/* ──────────────────────────────────────────────────────────────────────
   TOUR PAGE — Gallery grid + Included/Not-included two-column box
   ────────────────────────────────────────────────────────────────────── */
.tour-gallery {
  padding: 56px clamp(20px, 4vw, 40px) 24px;
  max-width: 1320px; margin: 0 auto;
}
.tour-gallery-head { text-align: center; margin-bottom: 28px; }
.tour-gallery-head .eyebrow {
  display: inline-block; font-size: 11px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 8px;
}
.tour-gallery-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(26px, 3vw, 36px); color: var(--navy-d); line-height: 1.15;
}
.tour-gallery-title em { font-style: italic; color: var(--accent); }
.tour-gallery-head .rule {
  width: 48px; height: 1px; background: var(--accent);
  margin: 14px auto 0;
}
.tour-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.tour-gallery-grid .gallery-item {
  position: relative; cursor: zoom-in; overflow: hidden;
  background: var(--cream); aspect-ratio: 4 / 3;
  border: 0; padding: 0; margin: 0;
  box-shadow: 0 1px 2px rgba(14, 26, 36, .04), 0 6px 16px rgba(14, 26, 36, .07);
  transition: transform .35s cubic-bezier(.2, .7, .2, 1),
              box-shadow .35s cubic-bezier(.2, .7, .2, 1);
}
.tour-gallery-grid .gallery-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(14, 26, 36, .08), 0 18px 36px rgba(14, 26, 36, .12);
}
.tour-gallery-grid .gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s cubic-bezier(.2, .7, .2, 1);
}
.tour-gallery-grid .gallery-item:hover img { transform: scale(1.04); }
@media (max-width: 900px) { .tour-gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .tour-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; } }

.tour-included {
  padding: 24px clamp(20px, 4vw, 40px) 56px;
  max-width: 1320px; margin: 0 auto;
}
.tour-included-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  padding: 36px clamp(24px, 4vw, 44px);
  background: rgba(255, 255, 255, .55);
  border: 1px solid var(--line);
}
.ti-col .eyebrow {
  display: block; font-size: 11px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 6px;
}
.ti-col .ti-title {
  font-family: var(--serif); font-weight: 400; font-size: 24px;
  color: var(--navy-d); line-height: 1.2; margin: 0;
}
.ti-col .ti-title em { font-style: italic; color: var(--accent); }
.ti-col .rule { width: 36px; height: 1px; background: var(--accent); margin: 12px 0 18px; }
.ti-list { list-style: none; padding: 0; margin: 0; }
.ti-list li {
  position: relative; padding-left: 22px; padding-bottom: 10px;
  font-size: 14.5px; color: var(--text); line-height: 1.55;
}
/* Inline SVG icons — gold check vs gray line. */
.ti-list li { display: flex; align-items: flex-start; gap: 10px; padding-left: 0; }
.ti-list .ti-ico { flex: 0 0 auto; width: 16px; height: 16px; margin-top: 4px; color: var(--accent); }
.ti-list--neg li { color: var(--muted); }
.ti-list--neg .ti-ico { color: var(--muted); opacity: .6; }
@media (max-width: 768px) {
  .tour-included-inner { grid-template-columns: 1fr; gap: 28px; padding: 28px 22px; }
}

