/* Tuatara Sailing — public marketing site.
 * Hand-written, self-hosted (no CDN, no build step). System font stack.
 * Palette aligned to the brand logo: navy hull, sunset gold→orange, cream sails. */

:root {
  --navy: #1c3a5e;
  --navy-deep: #0b2740;
  --navy-700: #16314f;
  --sunset-1: #f4a52a;
  --sunset-2: #e85c1c;
  --gold: #f6c23e;
  --cream: #f7f2e6;
  --sand: #faf6ec;
  --ink: #1b2733;
  --muted: #5d6b7a;
  --line: #e3dccb;
  --line-cool: #dde5ec;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow: 0 1px 2px rgba(11, 39, 64, .06), 0 10px 30px rgba(11, 39, 64, .08);
  --shadow-lg: 0 18px 50px rgba(11, 39, 64, .16);
  --maxw: 1080px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--sunset-2); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

.shell { min-height: 100vh; display: flex; flex-direction: column; }
.muted { color: var(--muted); }
.empty { color: var(--muted); text-align: center; padding: 2rem 0; }

/* ---- Header ---- */
.topbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  padding: .7rem 1.5rem;
  background: var(--navy-deep);
  color: #fff;
  position: sticky; top: 0; z-index: 20;
}
.brand { display: flex; align-items: center; gap: .6rem; font-weight: 800; font-size: 1.15rem; color: #fff; letter-spacing: .01em; }
.brand:hover { text-decoration: none; }
.brand-mark { width: 40px; height: 40px; border-radius: 50%; box-shadow: 0 2px 8px rgba(0,0,0,.25); }
.topnav { display: flex; align-items: center; gap: .25rem; flex-wrap: wrap; }
.navlink { color: #d4e0ec; padding: .4rem .7rem; border-radius: 8px; font-weight: 600; font-size: .95rem; }
.navlink:hover { background: rgba(255, 255, 255, .1); text-decoration: none; color: #fff; }
.navlink-active { background: rgba(255, 255, 255, .16); color: #fff; }

/* ---- Language switcher (dropdown) ---- */
.lang-dd { position: relative; margin-left: .5rem; padding-left: .6rem; border-left: 1px solid rgba(255,255,255,.18); }
.lang-dd > summary { list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: .35rem; color: #cdd9e4; font-size: .8rem; font-weight: 700; letter-spacing: .03em; padding: .3rem .5rem; border-radius: 7px; }
.lang-dd > summary::-webkit-details-marker { display: none; }
.lang-dd > summary:hover { color: #fff; background: rgba(255,255,255,.1); }
.lang-flag { font-size: 1.05rem; line-height: 1; }
.lang-current .lang-name { color: #9fb3c6; font-weight: 600; }
.lang-current .lang-caret { width: 14px; height: 14px; transition: transform .15s ease; }
.lang-dd[open] > summary .lang-caret { transform: rotate(180deg); }
.lang-menu { position: absolute; right: 0; top: calc(100% + .35rem); z-index: 50; min-width: 12rem; margin: 0; padding: .3rem; list-style: none; background: #0b2740; border: 1px solid rgba(255,255,255,.14); border-radius: 10px; box-shadow: 0 12px 32px rgba(0,0,0,.35); }
.lang-menu li { margin: 0; }
.lang-option { display: flex; align-items: center; gap: .55rem; padding: .45rem .6rem; border-radius: 7px; color: #cdd9e4; font-size: .85rem; }
.lang-option:hover { background: rgba(255,255,255,.1); color: #fff; text-decoration: none; }
.lang-option .lang-code { font-weight: 700; font-size: .72rem; min-width: 1.7rem; color: #9fb3c6; }
.lang-option.lang-active { color: var(--gold); }
.lang-option.lang-active .lang-code { color: var(--gold); }

/* ---- Buttons ---- */
.btn {
  display: inline-block; border: 1px solid transparent; border-radius: 999px;
  padding: .58rem 1.2rem; font-weight: 700; cursor: pointer; font-family: inherit; font-size: .95rem;
  transition: transform .08s ease, background .15s ease, box-shadow .15s ease;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: linear-gradient(135deg, var(--sunset-1), var(--sunset-2)); color: #fff; box-shadow: 0 6px 18px rgba(232, 92, 28, .3); }
.btn-primary:hover { color: #fff; box-shadow: 0 8px 22px rgba(232, 92, 28, .4); }
.btn-lg { padding: .8rem 1.7rem; font-size: 1.05rem; }
.btn-sm { padding: .38rem .85rem; font-size: .85rem; }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .4); }
.btn-ghost:hover { background: rgba(255, 255, 255, .12); color: #fff; }
/* Offer link on a catalogue page. Gold rather than the sunset gradient, so it
   does not tie with the adjacent .btn-primary — gold is already the "offer"
   colour on the printed pieces. */
.btn-offer { background: var(--gold); color: var(--navy-deep); border-color: var(--gold); font-weight: 700; }
.btn-offer:hover { background: var(--sunset-1); color: var(--navy-deep); }

/* Retired-offer notice: the full-day page stays live for the printed flyers. */
.notice-retired { background: var(--navy-deep); color: #cfe0ee; font-size: .95rem; }
.notice-retired-inner {
  max-width: var(--maxw); margin: 0 auto; padding: .7rem 1.5rem;
  display: flex; align-items: center; justify-content: center; gap: .8rem; flex-wrap: wrap;
}
.notice-retired strong { color: var(--gold); font-weight: 700; }
.notice-retired-link { color: #fff; font-weight: 600; text-decoration: underline; }

.btn-portal { background: rgba(255, 255, 255, .12); color: #fff; border-color: rgba(255, 255, 255, .28); padding: .4rem 1rem; }
.btn-portal:hover { background: rgba(255, 255, 255, .22); color: #fff; }

/* ---- Hero ---- */
.hero {
  position: relative;
  background: radial-gradient(1200px 500px at 70% -10%, var(--navy-700), var(--navy-deep) 70%);
  color: #fff; padding: 5rem 1.5rem 6.5rem; text-align: center; overflow: hidden;
}

/* Home hero: full-bleed photo behind the menu, dark scrim for legible text,
   wave pattern stays at the bottom. The header overlays it transparently. */
/* Fixed, translucent, blurred overlay: hero photo sits behind it and it stays
   pinned to the top while scrolling, over both the hero and the content below. */
.shell-home .topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 30;
  background: rgba(11, 39, 64, .55);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .06);
}
.shell-home > main { margin-top: 0; }
.shell-home .hero {
  background:
    linear-gradient(180deg, rgba(7, 30, 48, .62) 0%, rgba(7, 30, 48, .32) 42%, rgba(7, 30, 48, .5) 100%),
    url("/images/hero/hero-1024-134f42dce833c1ed46d6db77c63cc2f2.jpg?vsn=d") center / cover no-repeat;
  padding-top: clamp(7rem, 16vw, 10rem);
}
@media (min-width: 761px) {
  .shell-home .hero {
    background:
      linear-gradient(180deg, rgba(7, 30, 48, .62) 0%, rgba(7, 30, 48, .30) 42%, rgba(7, 30, 48, .5) 100%),
      url("/images/hero/hero-1920-e81954223722b7064438125156ae1130.jpg?vsn=d") center / cover no-repeat;
  }
}
.hero-inner { max-width: 760px; margin: 0 auto; position: relative; z-index: 2; }
.hero-eyebrow { text-transform: uppercase; letter-spacing: .18em; font-size: .78rem; font-weight: 700; color: var(--gold); margin: 0 0 1rem; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.1rem); margin: 0 0 1rem; line-height: 1.08; letter-spacing: -.01em; }
.hero-sub { font-size: 1.18rem; color: #d7e4ef; margin: 0 0 2rem; }
.hero-cta { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }
.hero-chips { list-style: none; display: flex; gap: 1.4rem; justify-content: center; flex-wrap: wrap; margin: 2.2rem 0 0; padding: 0; color: #cfe0ee; font-size: .92rem; font-weight: 600; }
.hero-chips li { display: inline-flex; align-items: center; gap: .4rem; }
.chip-ico { width: 18px; height: 18px; color: var(--gold); }
.hero-wave { position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; height: 110px; display: block; }

/* ---- Sections ---- */
.section { padding: 3.5rem 1.5rem; }
.section-sand { background: var(--sand); }
.section-inner { max-width: var(--maxw); margin: 0 auto; }
.section-title { font-size: clamp(1.5rem, 3vw, 2rem); color: var(--navy); margin: 0 0 .6rem; text-align: center; letter-spacing: -.01em; }
.section-lead { text-align: center; color: var(--muted); max-width: 640px; margin: 0 auto 2.4rem; font-size: 1.05rem; }
.page-head { background: var(--navy-deep); color: #fff; padding: 3rem 1.5rem; text-align: center; }
.page-head h1 { margin: 0 0 .5rem; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.page-head .section-lead { color: #cfe0ee; margin-bottom: 0; }

/* ---- Experience grid + cards ---- */
.exp-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 1.5rem; }
.exp-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden; display: flex; flex-direction: column;
  transition: transform .15s ease, box-shadow .15s ease;
}
.exp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.exp-media-link { position: relative; display: block; }
.exp-media, .gallery-media, .detail-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--navy); }
.exp-media img, .detail-media img, .gallery-media img { width: 100%; height: 100%; object-fit: cover; }
.media-ph { width: 100%; height: 100%; display: block; }
.media-day { background: linear-gradient(155deg, #7fb5d8, #2a6f97); }
.media-sunset { background: linear-gradient(155deg, var(--sunset-1), var(--sunset-2)); }
.media-private { background: linear-gradient(155deg, #2a4a6e, var(--navy-deep)); }
.media-school { background: linear-gradient(155deg, #2a9d8f, #1d6f66); }
.exp-kind {
  position: absolute; top: .8rem; left: .8rem;
  background: rgba(11, 39, 64, .82); color: #fff; backdrop-filter: blur(2px);
  font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .07em;
  padding: .3rem .6rem; border-radius: 999px;
}
.exp-body { padding: 1.25rem 1.35rem 1.4rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.exp-name { margin: 0; font-size: 1.25rem; color: var(--navy); }
.exp-name a { color: var(--navy); }
.exp-name a:hover { color: var(--sunset-2); }
.exp-tagline { margin: 0; color: var(--muted); flex: 1; }
.exp-facts { list-style: none; margin: .3rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: .35rem 1.1rem; color: var(--muted); font-size: .9rem; }
.exp-facts li { display: inline-flex; align-items: center; gap: .35rem; }
.fact-ico { width: 17px; height: 17px; color: var(--sunset-2); flex: none; }
.exp-foot { display: flex; align-items: center; justify-content: space-between; margin-top: .8rem; padding-top: .85rem; border-top: 1px solid var(--line); }
.exp-price { font-weight: 800; font-size: 1.2rem; color: var(--navy); }
.price-from { display: block; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.price-inquiry { font-size: .95rem; font-weight: 700; color: var(--sunset-2); }
.link { font-weight: 700; color: var(--sunset-2); }

/* ---- Features band ---- */
.features { background: #fff; }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.feature { text-align: center; padding: 1.5rem 1rem; }
.feature-ico { display: inline-grid; place-items: center; width: 60px; height: 60px; border-radius: 50%; background: var(--cream); color: var(--sunset-2); margin-bottom: 1rem; }
.feature-ico .icon { width: 28px; height: 28px; }
.feature h3 { margin: 0 0 .4rem; color: var(--navy); font-size: 1.15rem; }
.feature p { margin: 0; color: var(--muted); }

/* ---- Detail page ---- */
.detail { max-width: var(--maxw); }
.back { display: inline-block; margin-bottom: 1.25rem; }
.detail-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 2rem; align-items: start; }
.detail-media { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4 / 3; }
.detail-info .exp-kind { position: static; display: inline-block; margin-bottom: .6rem; }
.detail-title { font-size: clamp(1.7rem, 3.5vw, 2.3rem); color: var(--navy); margin: .2rem 0 .3rem; }
.detail-tagline { color: var(--muted); font-size: 1.1rem; margin: 0 0 1.3rem; }
.detail-facts { list-style: none; padding: 1rem 0; margin: 0 0 1.4rem; display: flex; flex-wrap: wrap; gap: 1.6rem; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.detail-facts strong { display: block; color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .05em; font-weight: 800; margin-bottom: .15rem; }
.detail-desc { margin-top: 2rem; font-size: 1.06rem; max-width: 720px; }
.detail-highlights { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.detail-highlights li { display: flex; align-items: flex-start; gap: .55rem; margin-bottom: .55rem; }
.hl-ico { width: 20px; height: 20px; color: var(--sunset-2); flex: none; margin-top: .15rem; }

/* ---- Detail FAQ ----
   <details> rather than JS: the answers are in the HTML for a crawler whether
   or not anything is expanded, and there is no script to load. */
.detail-faq { margin-top: 2.5rem; max-width: 720px; }
.detail-faq h2 { color: var(--navy); font-size: 1.25rem; margin: 0 0 1rem; }
.faq-item { border-top: 1px solid rgba(28, 58, 94, .12); padding: .85rem 0; }
.faq-item:last-child { border-bottom: 1px solid rgba(28, 58, 94, .12); }
.faq-item > summary { cursor: pointer; font-weight: 600; color: var(--navy); list-style: none; display: flex; justify-content: space-between; gap: 1rem; }
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::after { content: "+"; color: var(--sunset-2); font-weight: 700; }
.faq-item[open] > summary::after { content: "\2013"; }
.faq-item > p { margin: .6rem 0 0; color: var(--muted); }

/* ---- Contact ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 2.5rem; align-items: start; }
.contact-h { color: var(--navy); margin: 0 0 1rem; }
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .8rem; color: var(--muted); }
.contact-list li { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; }
.contact-pref { display: inline-block; background: rgba(37, 211, 102, .12); color: #128c47; border: 1px solid rgba(37, 211, 102, .35); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: .12rem .55rem; border-radius: 999px; }
.contact-form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: .35rem; }
.field label { font-weight: 700; color: var(--navy); font-size: .92rem; }
.field input, .field textarea {
  font: inherit; padding: .7rem .85rem; border: 1px solid var(--line-cool); border-radius: var(--radius-sm);
  background: #fff; color: var(--ink); width: 100%; resize: vertical;
}
.field input:focus, .field textarea:focus { outline: 2px solid var(--sunset-1); outline-offset: 0; border-color: var(--sunset-1); }
.field-error { color: #c0392b; font-size: .85rem; }
.notice { padding: .85rem 1.1rem; border-radius: var(--radius-sm); margin-bottom: 1.2rem; font-weight: 600; }
.notice-ok { background: #e7f6ec; color: #1c6b3a; border: 1px solid #b9e3c6; }

.contact-map-wrap { text-align: center; }
.contact-map-wrap .contact-h { text-align: left; margin-bottom: .4rem; }
.contact-map-wrap .section-lead { text-align: left; margin: 0 0 1.4rem; max-width: none; }
.contact-map { display: block; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); transition: transform .15s ease, box-shadow .15s ease; }
.contact-map img { display: block; width: 100%; height: auto; }
.contact-map:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.contact-map:focus-visible { outline: 3px solid var(--sunset-1); outline-offset: 2px; }
/* Scan chooser (/go). Built for a thumb on a beach: every target is a full-width
   row at least 64px tall, ordered by how likely it is to be wanted, and nothing
   needs scrolling on a phone. */
.go-section { padding-top: 1.6rem; }
.go-inner { max-width: 520px; }
.go-eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; font-weight: 700; color: var(--sunset-2); margin: 0 0 .4rem; }
.go-title { font-size: clamp(1.6rem, 6vw, 2.1rem); margin: 0 0 .3rem; color: var(--navy); }
.go-lead { color: var(--muted); margin: 0 0 1.4rem; }
.go-actions { display: grid; gap: .7rem; }
.go-btn {
  display: flex; align-items: center; gap: .9rem;
  min-height: 64px; padding: .85rem 1.1rem;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff; color: var(--ink); box-shadow: var(--shadow);
  text-decoration: none;
}
.go-btn:hover, .go-btn:focus-visible { text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.go-btn-text { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; }
.go-btn-text strong { font-size: 1.05rem; }
.go-btn-text small { color: var(--muted); font-size: .82rem; }
.go-ico { width: 26px; height: 26px; flex: none; color: var(--sunset-2); }
/* WhatsApp keeps its own green — people recognise it faster than they read. */
.go-btn-wa { background: #128C7E; border-color: #128C7E; color: #fff; }
.go-btn-wa .go-ico { color: #fff; }
.go-btn-wa .go-btn-text small { color: rgba(255,255,255,.85); }
.go-btn-offer { background: var(--gold); border-color: var(--gold); color: var(--navy-deep); }
.go-btn-offer .go-ico { color: var(--navy-deep); }
.go-btn-offer .go-btn-text small { color: rgba(11,39,64,.75); }
.go-btn-quiet { background: transparent; box-shadow: none; min-height: 52px; }
.go-btn-quiet .go-btn-text strong { font-weight: 600; }

/* Offers index. Retired offers stay on the list, labelled — the €499 charter is
   still on printed flyers in circulation, so someone holding one must be able to
   find it and see at a glance that it is over. Muted, not hidden. */
.offers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; margin-top: 1.8rem; }
.offer-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.4rem; display: flex; flex-direction: column; gap: .7rem; align-items: flex-start; }
.offer-card-past { background: var(--sand); box-shadow: none; }
.offer-card-past .offer-card-price strong { color: var(--muted); }
.offer-badge { display: inline-flex; align-items: center; background: var(--gold); color: var(--navy-deep); font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; padding: .3rem .65rem; border-radius: 999px; }
.offer-badge-past { background: transparent; color: var(--muted); border: 1px solid var(--line); font-weight: 700; }
.offer-card-title { margin: 0; font-size: 1.35rem; color: var(--navy); }
.offer-card-price { margin: 0; display: flex; align-items: baseline; gap: .6rem; flex-wrap: wrap; }
.offer-card-price strong { font-size: 1.9rem; color: var(--sunset-2); }
.offer-card-facts { list-style: none; margin: 0; padding: 0; display: grid; gap: .35rem; color: var(--muted); font-size: .92rem; }
.offer-card-facts li { display: flex; align-items: center; gap: .45rem; }
.offer-card .btn { margin-top: auto; }

/* Company details sit under the contact block, quieter than it: a customer looks
   here for an invoice, not for how to reach us. */
.contact-legal { margin-top: 1.8rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.contact-legal-h { margin: 0 0 .5rem; font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.contact-legal-list { list-style: none; margin: 0; padding: 0; color: var(--muted); font-size: .9rem; line-height: 1.7; }

/* Interactive embed replaces the static image in the same frame, so swapping
   between them must not shift the page: same aspect ratio, same rounding. */
.contact-map-live { aspect-ratio: 16 / 9; }
.contact-map-live iframe { display: block; width: 100%; height: 100%; border: 0; }
.contact-map-optin { display: flex; align-items: center; justify-content: center; gap: .8rem; flex-wrap: wrap; margin: 1rem 0 0; }
.contact-map-note { color: var(--muted); font-size: .85rem; }

/* Directions buttons under the map. Stacked full-width on a phone, because that
   is where "navigate" actually gets tapped. */
.contact-map-cta { display: flex; gap: .7rem; justify-content: center; flex-wrap: wrap; margin-top: 1.1rem; }
@media (max-width: 560px) {
  .contact-map-cta { flex-direction: column; }
  .contact-map-cta .btn { width: 100%; }
}
.map-attribution { margin: .75rem 0 0; font-size: .8rem; color: var(--muted); text-align: right; }
.map-attribution a { color: var(--muted); text-decoration: underline; }
.map-attribution a:hover { color: var(--navy); }

/* ---- Fleet ---- */
.fleet-hero { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.fleet-hero img { display: block; width: 100%; height: auto; }
.fleet-hero-split { display: grid; grid-template-columns: minmax(0, 2.4fr) minmax(0, 1fr); gap: 1rem; align-items: stretch; }
.fleet-hero-split-img { display: block; width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); background: var(--navy); }
.fleet-hero-split-video { display: block; width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); background: var(--navy); }
.fleet-detail { display: grid; grid-template-columns: 1.5fr 1fr; gap: 2.5rem; align-items: start; }
.fleet-eyebrow { text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; font-weight: 700; color: var(--sunset-2); margin: 0 0 .3rem; }
.fleet-name { color: var(--navy); font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 0 0 .4rem; letter-spacing: -.01em; }
.fleet-tag { color: var(--sunset-2); font-weight: 600; margin: 0 0 1.2rem; }
.fleet-copy p { margin: 0 0 1rem; color: var(--ink); font-size: 1.03rem; line-height: 1.65; }
.fleet-specs { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.5rem; box-shadow: var(--shadow); }
.fleet-specs-h { color: var(--navy); margin: 0 0 1rem; font-size: 1.05rem; text-transform: uppercase; letter-spacing: .06em; }
.fleet-specs-list { margin: 0; display: grid; gap: .8rem; }
.fleet-specs-list div { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; align-items: baseline; border-bottom: 1px dashed var(--line); padding-bottom: .6rem; }
.fleet-specs-list div:last-of-type { border-bottom: 0; padding-bottom: 0; }
.fleet-specs-list dt { color: var(--muted); font-size: .88rem; font-weight: 600; }
.fleet-specs-list dd { margin: 0; color: var(--navy); font-weight: 600; }
.fleet-specs-note { margin: 1rem 0 0; font-size: .85rem; }
.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.5rem; }
.fleet-tile { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.fleet-tile img { display: block; width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; }
.fleet-grid-portrait .fleet-tile img { aspect-ratio: 3 / 4; }
.fleet-video-wrap { display: flex; justify-content: center; margin-top: 1.5rem; }
.fleet-video { width: 100%; max-width: 380px; aspect-ratio: 9 / 16; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-lg); background: var(--navy); display: block; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.fleet-cta { text-align: center; }
.fleet-cta h2 { color: var(--navy); font-size: clamp(1.5rem, 3vw, 2rem); margin: 0 0 .5rem; }
.fleet-cta .section-lead { margin-bottom: 1.6rem; }
.fleet-cta-row { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; align-items: center; }
.fleet-cta-link { font-weight: 700; }

/* ---- Gallery ---- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1rem; }
.gallery-tile { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); position: relative; }
.gallery-media { aspect-ratio: 4 / 3; }
.gallery-tile figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.5rem .9rem .7rem; color: #fff; font-weight: 600; font-size: .92rem; background: linear-gradient(transparent, rgba(11,39,64,.7)); }

/* ---- Blog ---- */
.post-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.post-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.4rem; display: flex; flex-direction: column; gap: .5rem; transition: transform .15s ease, box-shadow .15s ease; }
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.post-date { color: var(--sunset-2); font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin: 0; }
.post-title { margin: 0; font-size: 1.3rem; color: var(--navy); }
.post-title a { color: var(--navy); }
.post-title a:hover { color: var(--sunset-2); }
.post-excerpt { margin: 0; color: var(--muted); flex: 1; }
.post { max-width: 720px; }
.post-title-lg { font-size: clamp(1.8rem, 4vw, 2.5rem); color: var(--navy); margin: .4rem 0 .6rem; }
.post-lead { font-size: 1.15rem; color: var(--muted); margin: 0 0 1.5rem; }
.post-body { font-size: 1.07rem; }
.post-body p { margin: 0 0 1.1rem; }

/* ---- Schedule ---- */
.sched-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.sched-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.6rem 1.4rem; text-align: center; display: flex; flex-direction: column; align-items: center; gap: .45rem; }
.sched-day { margin: 0; font-size: 1.25rem; font-weight: 800; color: var(--navy); }
.sched-date { margin: 0; color: var(--muted); font-weight: 600; }
.badge-avail { display: inline-flex; align-items: center; gap: .35rem; background: #e7f6ec; color: #1c6b3a; border: 1px solid #b9e3c6; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; padding: .3rem .7rem; border-radius: 999px; margin: .2rem 0 .4rem; }
.badge-ico { width: 14px; height: 14px; }
.sched-meta { list-style: none; margin: 0 0 1rem; padding: 0; display: grid; gap: .4rem; color: var(--muted); font-size: .95rem; }
.sched-meta li { display: flex; align-items: center; justify-content: center; gap: .45rem; }
.wx-ico { width: 20px; height: 20px; color: var(--sunset-2); flex: none; }
.sched-note { text-align: center; margin: 1.6rem 0 0; font-size: .85rem; }
.sched-custom .exp-body { align-items: center; text-align: center; }
.sched-custom .exp-tagline { flex: 1; }
.sched-custom .exp-foot { border-top: 0; justify-content: center; width: 100%; }
.inquiry-wrap { max-width: 680px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 860px) { .sched-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

/* ---- Footer ---- */
.footer { margin-top: auto; background: var(--navy-deep); color: #cfe0ee; padding: 3rem 1.5rem 1.5rem; }
.footer-inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; }
.footer-logo { width: 48px; height: 48px; border-radius: 50%; margin-bottom: .8rem; }
.footer-tag { margin: 0; max-width: 22rem; color: #aebfd0; }
.footer-h { color: #fff; font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; margin: 0 0 .9rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.footer-col a { color: #cfe0ee; }
.footer-col a:hover { color: #fff; }
.footer-contact li { display: flex; align-items: center; gap: .5rem; }
.footer-contact .icon { width: 17px; height: 17px; color: var(--gold); flex: none; }
.socials { display: flex; gap: .6rem; }
.social { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.1); color: #fff; }
.social:hover { background: var(--sunset-2); }
.social .icon { width: 20px; height: 20px; }
.footer-legal { text-align: center; margin: 2.5rem 0 0; color: #7f93a6; font-size: .85rem; }

/* ---- Responsive ---- */
@media (max-width: 860px) {
  .detail-grid, .contact-grid, .fleet-detail, .fleet-hero-split { grid-template-columns: 1fr; }
  .fleet-hero-split-video { aspect-ratio: 9 / 16; max-height: 70vh; margin: 0 auto; max-width: 380px; }
  .fleet-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .fleet-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .topbar { gap: .5rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero { padding-top: 3.5rem; }
}

/* ---- Legal pages (privacy / cookies) ---- */
.legal { max-width: 760px; }
.legal h1 { margin-bottom: .25rem; }
.legal h2 { margin-top: 1.75rem; margin-bottom: .4rem; font-size: 1.15rem; }
.legal p { line-height: 1.65; color: #33414f; }
.footer-legal a { color: inherit; text-decoration: underline; }
.footer-legal a:hover { color: #fff; }

/* ---- Special-offer landing page (/offer) ---- */
/* The nav entry is deliberately the one coloured item in the bar — it is the
   page every printed flyer and QR code points at. */
.navlink-offer {
  background: linear-gradient(135deg, var(--sunset-1), var(--sunset-2));
  color: #fff; box-shadow: 0 4px 14px rgba(232, 92, 28, .32);
}
.navlink-offer:hover { background: linear-gradient(135deg, var(--gold), var(--sunset-2)); color: #fff; }

.offer-hero {
  position: relative; color: #fff; text-align: center; overflow: hidden;
  padding: 4.5rem 1.5rem 4rem;
  background:
    linear-gradient(180deg, rgba(7, 30, 48, .78) 0%, rgba(7, 30, 48, .58) 45%, rgba(7, 30, 48, .82) 100%),
    url("/images/offer/offer-hero-600-89fe2c08315b729606ef41455569d539.jpg?vsn=d") center / cover no-repeat;
}
@media (min-width: 761px) {
  .offer-hero {
    background:
      linear-gradient(180deg, rgba(7, 30, 48, .74) 0%, rgba(7, 30, 48, .52) 45%, rgba(7, 30, 48, .8) 100%),
      url("/images/offer/offer-hero-1400-7f35c12ff3c37f889bfa572707d45212.jpg?vsn=d") center / cover no-repeat;
  }
}
.offer-hero-inner { max-width: 780px; margin: 0 auto; position: relative; z-index: 2; }
.offer-eyebrow {
  text-transform: uppercase; letter-spacing: .18em; font-size: .78rem; font-weight: 700;
  color: var(--gold); margin: 0 0 1rem;
}
.offer-title {
  font-size: clamp(2rem, 5.4vw, 3.3rem); line-height: 1.06; letter-spacing: -.015em;
  margin: 0 0 1rem;
}
.offer-lead { font-size: 1.15rem; color: #d7e4ef; margin: 0 auto 2rem; max-width: 42rem; }

/* Price block: the €499 is the loudest thing on the page, with the list price
   and the saving as quiet supporting evidence beside it. */
.offer-price { display: inline-flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.offer-price-now {
  font-size: clamp(2.6rem, 8vw, 4rem); font-weight: 800; line-height: 1;
  color: var(--gold); letter-spacing: -.02em;
}
.offer-price-meta { display: grid; gap: .3rem; text-align: left; }
.offer-price-was { color: #b9cbdb; font-size: .95rem; text-decoration: line-through; }
.offer-price-save {
  display: inline-block; background: rgba(244, 165, 42, .16); border: 1px solid rgba(244, 165, 42, .45);
  color: var(--gold); font-size: .78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; padding: .16rem .6rem; border-radius: 999px;
}
.offer-cta { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }
.offer-cta .icon { width: 19px; height: 19px; }

/* Value comparison band: seats-you'd-otherwise-buy vs the whole boat. */
.offer-maths { background: var(--navy); color: #fff; }
.offer-maths-inner {
  display: flex; align-items: center; justify-content: center; gap: clamp(1.5rem, 6vw, 4rem);
  flex-wrap: wrap; text-align: center;
}
.offer-maths-col { display: grid; gap: .35rem; }
.offer-maths-label { margin: 0; color: #a9bdcf; font-size: .9rem; max-width: 15rem; }
.offer-maths-num { margin: 0; font-size: clamp(2rem, 5vw, 2.8rem); font-weight: 800; line-height: 1; }
.offer-maths-strike { color: #7f97ad; text-decoration: line-through; }
.offer-maths-hit { color: var(--gold); }
.offer-maths-per { margin: 0; color: #cfe0ee; font-size: .9rem; font-weight: 600; }
.offer-maths-vs { font-size: 1.8rem; color: var(--sunset-1); }

/* Day-plan steps */
.offer-steps { list-style: none; padding: 0; margin: 0 auto; max-width: 720px; display: grid; gap: 1.4rem; }
.offer-steps li { display: flex; gap: 1.1rem; align-items: flex-start; }
.offer-step-n {
  flex: none; display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 50%;
  background: var(--navy); color: #fff; font-weight: 800; font-size: 1rem;
}
.offer-steps h3 { margin: .2rem 0 .25rem; color: var(--navy); font-size: 1.1rem; }
.offer-steps p { margin: 0; color: var(--muted); }

/* Small print under the request form */
.offer-terms {
  list-style: none; padding: 1.2rem 0 0; margin: 2rem 0 0; border-top: 1px solid var(--line);
  display: grid; gap: .5rem; font-size: .88rem;
}
.offer-terms li { padding-left: 1.1rem; position: relative; }
.offer-terms li::before { content: "·"; position: absolute; left: .3rem; color: var(--sunset-2); font-weight: 800; }

@media (max-width: 560px) {
  .offer-price { flex-direction: column; gap: .5rem; }
  .offer-price-meta { text-align: center; justify-items: center; }
  .offer-maths-vs { transform: rotate(90deg); }
}

/* ---- mobile nav: CSS-only hamburger ----
   The nav used to wrap onto three rows on a phone and push the hero headline
   off-screen. A checkbox + label needs no JS, which matches how the language
   <details> dropdown already works. */
.nav-toggle-cb { display: none; }
.nav-toggle { display: none; }

@media (max-width: 900px) {
  .topbar { flex-wrap: nowrap; align-items: center; }

  .nav-toggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    margin-left: auto; width: 44px; height: 44px; padding: 10px; cursor: pointer;
    border-radius: 10px; border: 1px solid rgba(255, 255, 255, .22);
  }
  .nav-toggle span { display: block; height: 2px; background: #fff; border-radius: 2px; }
  .nav-toggle:active { background: rgba(255, 255, 255, .12); }

  /* the panel drops out of the header rather than pushing it taller */
  .topnav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: .25rem;
    padding: .6rem .9rem 1rem;
    background: #0b2740; border-top: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .4);
    max-height: calc(100vh - 64px); overflow-y: auto;
  }
  .nav-toggle-cb:checked ~ .topnav { display: flex; }

  .topnav .navlink,
  .topnav .btn-portal { width: 100%; text-align: left; padding: .7rem .8rem; font-size: 1rem; }
  .topnav .navlink-offer { text-align: center; font-weight: 700; }
  .lang-dd { margin: .4rem 0 0; padding: .5rem 0 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.12); }
  .lang-menu { position: static; box-shadow: none; margin-top: .3rem; }
}

/* experience-page contact pair */
.detail-cta { display: flex; gap: .7rem; flex-wrap: wrap; margin-top: .4rem; }
.detail-cta .icon { width: 18px; height: 18px; }

/* ---- Third-party rating strip (Layouts.social_proof/1) ---- */
/* Sits directly above the navy footer, so the rule goes on TOP to separate it
   from page content; the footer's own dark block closes it off below. */
.proof-band { background: var(--sand); border-top: 1px solid var(--line); }
.proof-strip {
  max-width: var(--maxw); margin: 0 auto; padding: .75rem 1.5rem;
  display: flex; align-items: center; justify-content: center; gap: .55rem;
  flex-wrap: wrap; text-decoration: none; color: var(--ink);
  font-size: .95rem; font-weight: 700;
}
.proof-strip-inline {
  max-width: none; margin: .9rem 0 0; padding: 0;
  justify-content: flex-start; font-size: .9rem;
}
.proof-strip:hover .proof-count, .proof-strip:focus-visible .proof-count { text-decoration: underline; }
/* Two stacked rows of stars; the gold one is clipped to rating/5 as a width, so
   4.9 renders as 98% of five stars instead of being rounded to a whole star. */
.proof-stars { position: relative; display: inline-flex; flex: none; }
.proof-stars-off { display: flex; color: var(--line); }
.proof-stars-on { position: absolute; top: 0; left: 0; display: flex; overflow: hidden; color: var(--gold); }
.proof-star { width: 17px; height: 17px; flex: none; }
.proof-count { color: var(--muted); font-weight: 500; }
.proof-count::before { content: "·"; margin-right: .5rem; color: var(--line); }
