/* ============================================================
   Dubrovnik Boat Adventure — homepage styles
   Brand palette
   slate    #475261   primary dark text + UI
   mid-blue #5B829E   accent (links, hover, secondary fills)
   sand     #D9C7B8   warm accent / sand sections
   taupe    #9D8F83
   sky      #9FB9D6   subtle highlights
   ocean    #729BC5
   off      #F7F4EF   page background warm white
   ============================================================ */

:root {
  --slate:   #2C3744;
  --slate-2: #475261;
  --slate-3: #6B7585;
  --mid:     #5B829E;
  --ocean:   #729BC5;
  --sky:     #9FB9D6;
  --sand:    #9F8F6E;
  --sand-2:  #EFE6DB;
  --olive:   #847558;
  --taupe:   #847558;
  --off:     #F7F4EF;
  --white:   #FFFFFF;
  --line:    rgba(71,82,97,.14);
  --line-2:  rgba(71,82,97,.28);

  --maxw: 1320px;
  --gutter: 28px;

  --r: 6px;
  --r-lg: 10px;

  --f-display: "Archivo", "Söhne", system-ui, sans-serif;
  --f-body: "Manrope", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--slate);
  background: var(--off);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* ---------- Type ---------- */
.h-eyebrow {
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.h-eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: currentColor;
}

h1, h2, h3, h4 {
  font-family: var(--f-display);
  color: var(--slate);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(42px, 6.8vw, 96px); line-height: 0.96; letter-spacing: -0.04em; font-weight: 600; }
h2 { font-size: clamp(34px, 4.4vw, 62px); line-height: 1.0; letter-spacing: -0.035em; font-weight: 600; }
h3 { font-size: clamp(22px, 1.8vw, 28px); line-height: 1.15; letter-spacing: -0.02em; font-weight: 600; }
h4 { font-size: 18px; line-height: 1.25; font-weight: 700; letter-spacing: -0.01em; }

p { margin: 0; }
.lead { font-size: 19px; line-height: 1.5; color: var(--slate-2); max-width: 60ch; text-wrap: pretty; }

/* ---------- Layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
section { padding: clamp(80px, 9vw, 130px) 0; }
section.tight { padding: clamp(56px, 7vw, 96px) 0; }
.section-head {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}
.section-head .lead { margin-top: 12px; }
@media (max-width: 800px) {
  .section-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 36px; }
}

/* ---------- Buttons / links (no pills) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 18px 26px;
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--r);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
  text-transform: none;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--slate-2); color: var(--white); }
.btn-primary:hover { background: var(--slate); }
.btn-light { background: var(--white); color: var(--slate-2); border-color: var(--white); }
.btn-light:hover { background: var(--off); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.7); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-outline { background: transparent; color: var(--slate-2); border: 1px solid var(--slate-2); }
.btn-outline:hover { background: var(--slate-2); color: var(--white); }
.btn .arrow { width: 18px; height: 10px; }
.btn-ghost { padding: 14px 0; color: var(--slate-2); border-bottom: 1px solid var(--slate-2); border-radius: 0; gap: 14px; }
.btn-ghost:hover { color: var(--mid); border-color: var(--mid); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 500; font-size: 15px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  color: var(--slate-2);
  transition: color .2s ease, gap .2s ease;
}
.link-arrow:hover { color: var(--mid); gap: 14px; }

/* ---------- Sticky header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0;
  z-index: 60;
  display: flex; align-items: center;
  height: 68px;
  transition: background .25s ease, border-color .25s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-solid {
  background: var(--off);
  border-bottom-color: var(--line);
}
.site-header .wrap { display: flex; align-items: center; gap: 28px; width: 100%; }
.brand { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.brand img.mark { width: 38px; height: auto; filter: invert(1) brightness(1.4); transition: filter .25s; }
.site-header.is-solid .brand img.mark { filter: none; }
.brand .brand-text {
  font-family: var(--f-display);
  font-size: 14px; letter-spacing: -0.005em; line-height: 1.05; color: #fff; font-weight: 600;
  transition: color .25s;
}
.brand .brand-text small { display: block; font-size: 9px; letter-spacing: .22em; text-transform: uppercase; opacity: .8; font-weight: 400; margin-top: 2px; }
.site-header.is-solid .brand .brand-text { color: var(--slate); }

.primary-nav { display: flex; gap: 22px; margin-left: 6px; flex: 1; justify-content: center; }
.primary-nav a {
  font-size: 13px; font-weight: 500; color: #fff;
  letter-spacing: 0.01em;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s;
}
.site-header.is-solid .primary-nav a { color: var(--slate-2); }
.primary-nav a:hover { border-bottom-color: currentColor; }

.header-utils { display: flex; align-items: center; gap: 14px; flex: 0 0 auto; }
.lang-switch { display: flex; gap: 4px; font-size: 12px; letter-spacing: .14em; }
.lang-switch a { color: #fff; opacity: .65; padding: 4px 4px; }
.lang-switch a.active { opacity: 1; border-bottom: 1px solid currentColor; }
.site-header.is-solid .lang-switch a { color: var(--slate-2); }

.header-cta {
  padding: 10px 16px;
  background: var(--white);
  color: var(--slate-2);
  border-radius: var(--r);
  font-size: 13px; font-weight: 500;
  border: 1px solid var(--white);
}
.header-cta:hover { background: var(--slate-2); color: #fff; border-color: var(--slate-2); }
.site-header.is-solid .header-cta { background: var(--slate-2); color: #fff; border-color: var(--slate-2); }
.site-header.is-solid .header-cta:hover { background: var(--slate); border-color: var(--slate); }

.menu-toggle {
  display: none;
  background: transparent; border: 0; padding: 6px;
  color: inherit; cursor: pointer;
}

@media (max-width: 1080px) {
  .primary-nav { display: none; }
}
@media (max-width: 720px) {
  .header-cta { display: none; }
  .menu-toggle { display: inline-flex; color: #fff; }
  .site-header.is-solid .menu-toggle { color: var(--slate-2); }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  width: 100%;
  overflow: hidden;
  color: #fff;
  display: flex; flex-direction: column;
  padding: 0;
}
.hero .bg, .hero .bg img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero .scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,28,38,.55) 0%, rgba(20,28,38,0) 25%, rgba(20,28,38,0) 55%, rgba(20,28,38,.78) 100%),
    linear-gradient(90deg, rgba(20,28,38,.4) 0%, rgba(20,28,38,0) 60%);
}
.hero-inner {
  position: relative; z-index: 2;
  flex: 1;
  display: grid;
  grid-template-rows: 1fr auto;
  padding-top: 120px;
  padding-bottom: 36px;
}
.hero-content { align-self: end; max-width: 1100px; }
.hero h1 {
  color: #fff;
  font-weight: 400;
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--sand);
}
.hero-sub {
  margin-top: 28px;
  max-width: 56ch;
  font-size: clamp(16px, 1.2vw, 19px);
  color: rgba(255,255,255,.86);
  line-height: 1.5;
}
.hero-ctas {
  margin-top: 40px;
  display: flex; flex-wrap: wrap; gap: 14px;
}
.hero-ctas .btn-primary { background: var(--white); color: var(--slate-2); border-color: var(--white); }
.hero-ctas .btn-primary:hover { background: var(--sand); border-color: var(--sand); }

.hero-trust {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  border-top: 1px solid rgba(255,255,255,.22);
  padding-top: 28px;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 14px;
  color: rgba(255,255,255,.92);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.hero-trust-item svg { width: 28px; height: 28px; flex: 0 0 28px; color: var(--sand); }
@media (max-width: 800px) {
  .hero-trust { grid-template-columns: 1fr 1fr; gap: 18px 24px; }
  .hero-inner { padding-top: 110px; }
}

.hero-scroll {
  position: absolute;
  right: var(--gutter); bottom: 36px;
  z-index: 3;
  display: inline-flex; align-items: center; gap: 12px;
  color: #fff;
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
}
.hero-scroll .line { width: 60px; height: 1px; background: rgba(255,255,255,.6); }
@media (max-width: 800px) { .hero-scroll { display: none; } }

/* ---------- Trust bar (social proof) ---------- */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 64px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.trust-heading {
  font-family: var(--f-display);
  font-size: clamp(24px, 2.1vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--slate);
  font-weight: 600;
}
.trust-heading em { font-style: italic; color: var(--mid); font-weight: 500; }

.trust-item {
  display: flex; flex-direction: column; gap: 14px;
  padding-left: 28px;
  border-left: 1px solid var(--line);
  min-height: 96px;
  justify-content: center;
}
.trust-item.badge-item { padding-left: 28px; }
.trust-item img.badge {
  height: 72px; width: auto; object-fit: contain;
  align-self: flex-start;
}
.trust-item .num {
  font-family: var(--f-display);
  font-size: 38px; line-height: 1; letter-spacing: -0.03em; color: var(--slate);
  font-weight: 600;
}
.trust-item .stars { display: inline-flex; gap: 2px; color: #F4A833; }
.trust-item .stars svg { width: 16px; height: 16px; }
.trust-item .src {
  font-size: 13px; color: var(--slate-3); letter-spacing: 0.01em;
  line-height: 1.45;
}
.trust-item .src strong { color: var(--slate-2); font-weight: 700; display: block; font-size: 14px; margin-bottom: 2px; }
@media (max-width: 1000px) {
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 36px 32px; }
  .trust-heading { grid-column: 1 / -1; }
  .trust-item { border-left: none; padding-left: 0; }
}

/* ---------- Service triage (icon-led cards) ---------- */
.services { background: var(--off); }
.service-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--line-2);
  border-left: 1px solid var(--line-2);
}
.service-card {
  background: var(--off);
  border-right: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  padding: 36px 28px 32px;
  display: flex; flex-direction: column;
  position: relative;
  min-height: 320px;
  transition: background .25s ease;
}
.service-card:hover { background: var(--white); }
.service-card .num {
  position: absolute; top: 18px; right: 22px;
  font-family: var(--f-body);
  font-size: 12px; letter-spacing: .18em;
  color: var(--slate-3);
  font-weight: 500;
}
.service-card .icon { color: var(--slate-2); margin-bottom: 22px; transition: transform .3s ease; }
.service-card:hover .icon { transform: translateY(-4px); }
.service-card .icon svg { width: 86px; height: 86px; stroke-width: 1.3; }
.service-card h3 { margin-bottom: 10px; font-size: 22px; }
.service-card p {
  font-size: 14.5px; color: var(--slate-3); line-height: 1.5;
  flex: 1;
  margin-bottom: 22px;
}
.service-card .link-arrow { font-size: 13.5px; color: var(--slate-2); border-color: var(--slate-2); }
@media (max-width: 1000px) { .service-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .service-grid { grid-template-columns: 1fr; } }

/* ---------- Featured tours ---------- */
.featured { background: var(--white); }
.tour-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.tour-card {
  background: var(--white);
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .25s ease;
}
.tour-card:hover { transform: translateY(-4px); }
.tour-card .img { aspect-ratio: 4/5; overflow: hidden; position: relative; border-radius: var(--r); }
.tour-card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.tour-card:hover .img img { transform: scale(1.05); }

.tour-card .meta-row {
  display: flex; align-items: center; gap: 12px;
  margin-top: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--olive);
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase; font-weight: 600;
}
.tour-card .meta-row svg { width: 16px; height: 16px; flex: 0 0 16px; }
.tour-card .meta-row .sep { width: 1px; height: 12px; background: currentColor; opacity: .35; }

.tour-card .body { padding: 0; flex: 1; display: flex; flex-direction: column; }
.tour-card h3 { margin-top: 14px; margin-bottom: 8px; font-size: 24px; }
.tour-card .hook { font-size: 14.5px; color: var(--slate-3); line-height: 1.5; flex: 1; }
.tour-card .foot {
  margin-top: 20px; padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
}
.tour-card .price {
  font-family: var(--f-display);
  font-size: 15px; color: var(--slate-2); letter-spacing: -0.01em;
  font-weight: 600;
}
.tour-card .price small { display: block; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--slate-3); margin-bottom: 2px; font-family: var(--f-body); font-weight: 500; }
.tour-card .check { font-size: 13px; color: var(--mid); font-weight: 600; display: inline-flex; align-items: center; gap: 8px; }
.section-foot { margin-top: 44px; display: flex; justify-content: center; }
@media (max-width: 1000px) { .tour-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .tour-grid { grid-template-columns: 1fr; } }

/* ---------- Fleet snapshot (3 categories, yacht featured) ---------- */
.fleet { background: var(--off); }
.fleet-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.fleet-card-feat {
  background: var(--slate-2);
  color: #fff;
  border-radius: var(--r);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  min-height: 460px;
}
.fleet-card-feat .img {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}
.fleet-card-feat .img img { width: 100%; height: 100%; object-fit: cover; }
.fleet-card-feat .img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(20,28,38,0) 60%, rgba(44,55,68,.6) 100%);
}
.fleet-card-feat .img .pill-top {
  position: absolute; top: 24px; left: 24px;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--olive);
  color: #fff;
  padding: 8px 14px;
  border-radius: 3px;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase; font-weight: 700;
  z-index: 2;
}
.fleet-card-feat .body { padding: 44px 48px 44px; display: flex; flex-direction: column; justify-content: center; background: var(--slate-2); }
.fleet-card-feat .body .type {
  font-family: var(--f-body);
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--sand);
  font-weight: 600;
}
.fleet-card-feat .body h3 { color: #fff; font-size: clamp(26px, 2.4vw, 36px); margin-top: 12px; letter-spacing: -0.025em; }
.fleet-card-feat .body .meta {
  display: flex; gap: 28px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.18);
}
.fleet-card-feat .body .meta div { display: flex; flex-direction: column; gap: 4px; }
.fleet-card-feat .body .meta .k { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.6); font-weight: 500; }
.fleet-card-feat .body .meta .v { font-family: var(--f-display); font-size: 17px; font-weight: 600; color: #fff; }
.fleet-card-feat .body p { margin-top: 20px; font-size: 15px; color: rgba(255,255,255,.82); line-height: 1.55; max-width: 42ch; }
.fleet-card-feat .body .view {
  margin-top: 24px; display: inline-flex; align-items: center; gap: 12px;
  color: #fff; font-size: 14px; font-weight: 600;
  border-bottom: 1px solid var(--sand); padding-bottom: 3px;
  align-self: flex-start;
}
.fleet-card-feat .body .view:hover { color: var(--sand); }

.fleet-row-2 {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.fleet-card-sec {
  background: var(--white);
  border-radius: var(--r);
  overflow: hidden;
  display: grid; grid-template-columns: 1fr 1.1fr;
  border: 1px solid var(--line);
  min-height: 280px;
}
.fleet-card-sec .img { background-size: cover; background-position: center; min-height: 280px; }
.fleet-card-sec .body { padding: 30px 32px; display: flex; flex-direction: column; justify-content: center; }
.fleet-card-sec .body .type { font-family: var(--f-body); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--olive); font-weight: 700; }
.fleet-card-sec .body h3 { margin-top: 8px; font-size: 22px; }
.fleet-card-sec .body .count {
  margin-top: 6px;
  font-family: var(--f-display); font-size: 13.5px; color: var(--slate-3); font-weight: 500;
}
.fleet-card-sec .body p { margin-top: 14px; font-size: 14px; color: var(--slate-3); line-height: 1.5; }
.fleet-card-sec .body .view {
  margin-top: 18px; display: inline-flex; align-items: center; gap: 10px;
  color: var(--slate-2); font-size: 13.5px; font-weight: 600;
  border-bottom: 1px solid var(--slate-2); padding-bottom: 3px;
  align-self: flex-start;
}
@media (max-width: 1000px) {
  .fleet-card-feat { grid-template-columns: 1fr; min-height: 0; }
  .fleet-card-feat .img { min-height: 280px; }
  .fleet-row-2 { grid-template-columns: 1fr; }
  .fleet-card-sec { grid-template-columns: 1fr; }
}

/* ---------- Yacht charter teaser (split band) ---------- */
.yacht-charter {
  background: var(--slate-2);
  color: #fff;
  padding: 0;
}
.yacht-grid { display: grid; grid-template-columns: 1.05fr 1fr; min-height: 620px; }
.yacht-grid .img { background-size: cover; background-position: center; }
.yacht-grid .content {
  padding: clamp(48px, 6vw, 90px);
  display: flex; flex-direction: column; justify-content: center;
}
.yacht-grid h2 { color: #fff; margin-top: 22px; }
.yacht-grid h2 em { font-style: italic; color: var(--sand); font-weight: 300; }
.yacht-grid .lead { color: rgba(255,255,255,.86); margin-top: 22px; }
.duration-chips { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 0; border-top: 1px solid rgba(255,255,255,.18); }
.duration-chips a {
  flex: 1; min-width: 130px;
  padding: 22px 6px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--f-display); font-size: 18px; letter-spacing: -0.01em;
  color: #fff;
  border-right: 1px solid rgba(255,255,255,.18);
  border-bottom: 1px solid rgba(255,255,255,.18);
  transition: background .25s ease;
}
.duration-chips a:last-child { border-right: none; }
.duration-chips a:hover { background: rgba(255,255,255,.08); }
.duration-chips a small { display: block; font-family: var(--f-body); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.6); font-weight: 500; }
.yacht-grid .btn-outline-light { margin-top: 36px; align-self: flex-start; }
@media (max-width: 900px) {
  .yacht-grid { grid-template-columns: 1fr; }
  .yacht-grid .img { min-height: 360px; }
}

/* ---------- Why book with us ---------- */
.why { background: var(--off); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px 60px; row-gap: 60px; }
.why-item {
  padding-top: 6px;
}
.why-item .ic { color: var(--slate-2); margin-bottom: 22px; }
.why-item .ic svg { width: 64px; height: 64px; stroke-width: 1.3; }
.why-item h3 { margin-bottom: 10px; font-size: 22px; }
.why-item p { font-size: 15px; color: var(--slate-3); line-height: 1.55; max-width: 38ch; }
@media (max-width: 1000px) { .why-grid { grid-template-columns: 1fr 1fr; gap: 48px 40px; } }
@media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ---------- Day trips ---------- */
.daytrips { background: var(--white); }
.daytrips .tour-grid .tour-card .img { aspect-ratio: 3/4; }

/* ---------- Transfers ---------- */
.transfers { background: var(--sand-2); }
.transfer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.transfer-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  display: grid; grid-template-rows: 280px 1fr;
}
.transfer-card .img { background-size: cover; background-position: center; }
.transfer-card .body { padding: 36px 36px 36px; }
.transfer-card .ic { color: var(--slate-2); margin-bottom: 18px; }
.transfer-card .ic svg { width: 56px; height: 56px; stroke-width: 1.3; }
.transfer-card h3 { margin-bottom: 14px; font-size: 26px; }
.transfer-card p { font-size: 15px; color: var(--slate-3); line-height: 1.55; }
.transfer-card .routes {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
  color: var(--slate-2);
  letter-spacing: 0.01em;
}
.transfer-card .routes span { color: var(--taupe); margin: 0 6px; }
.transfer-card .link-arrow { margin-top: 22px; }
@media (max-width: 900px) { .transfer-grid { grid-template-columns: 1fr; } }

/* ---------- Events & water sports ---------- */
.celebrate { background: var(--slate); color: #fff; padding: 0; }
.celebrate-grid { display: grid; grid-template-columns: 1fr 1fr; }
.celebrate-cell {
  position: relative;
  min-height: 540px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(40px, 5vw, 64px);
  overflow: hidden;
}
.celebrate-cell .bg { position: absolute; inset: 0; }
.celebrate-cell .bg img { width: 100%; height: 100%; object-fit: cover; }
.celebrate-cell .bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(30,38,49,.1) 0%, rgba(30,38,49,.85) 100%); }
.celebrate-cell .content { position: relative; max-width: 460px; }
.celebrate-cell h3 { color: #fff; font-size: clamp(28px, 2.8vw, 38px); }
.celebrate-cell p { color: rgba(255,255,255,.86); margin-top: 14px; font-size: 15.5px; line-height: 1.55; }
.celebrate-cell .link-arrow { margin-top: 24px; color: #fff; border-color: rgba(255,255,255,.55); }
.celebrate-cell .link-arrow:hover { color: var(--sand); }
@media (max-width: 900px) { .celebrate-grid { grid-template-columns: 1fr; } }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--off); }
.testi-platforms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}
.testi-platform {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px 26px;
  display: flex; align-items: center; gap: 18px;
}
.testi-platform .plat-logo {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
}
.testi-platform .plat-logo img { height: 44px; width: auto; }
.testi-platform .plat-logo .glogo {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 700;
}
.testi-platform .plat-info { display: flex; flex-direction: column; gap: 4px; }
.testi-platform .rate-row { display: inline-flex; align-items: baseline; gap: 8px; }
.testi-platform .rate { font-family: var(--f-display); font-size: 22px; line-height: 1; font-weight: 700; color: var(--slate); letter-spacing: -0.02em; }
.testi-platform .of { font-size: 12px; color: var(--slate-3); letter-spacing: 0.04em; }
.testi-platform .stars { display: inline-flex; gap: 1px; color: #F4A833; margin-top: 2px; }
.testi-platform .stars svg { width: 14px; height: 14px; }
.testi-platform .src { font-size: 12px; color: var(--slate-3); margin-top: 4px; }
.testi-platform .src strong { color: var(--slate); font-weight: 600; }

.testi-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.testi {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 34px 30px;
  display: flex; flex-direction: column;
}
.testi .stars { color: #F4A833; display: inline-flex; gap: 3px; margin-bottom: 16px; }
.testi .stars svg { width: 18px; height: 18px; }
.testi blockquote {
  font-family: var(--f-display);
  font-size: 21px; line-height: 1.3; letter-spacing: -0.015em;
  margin: 0;
  color: var(--slate);
  flex: 1;
  font-weight: 500;
}
.testi .who {
  margin-top: 24px; padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 14px;
}
.testi .avatar {
  width: 44px; height: 44px;
  background: var(--sand-2);
  color: var(--slate-2);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-size: 16px; font-weight: 600;
  border-radius: 4px;
}
.testi .who-meta { display: flex; flex-direction: column; gap: 2px; }
.testi .who-meta .name { font-weight: 600; font-size: 14px; color: var(--slate); }
.testi .who-meta .src { font-size: 12.5px; color: var(--slate-3); }
@media (max-width: 1000px) { .testi-rail, .testi-platforms { grid-template-columns: 1fr; } }

/* ---------- Blog ---------- */
.blog { background: var(--white); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { display: flex; flex-direction: column; }
.blog-card .img { aspect-ratio: 4/3; overflow: hidden; border-radius: var(--r); }
.blog-card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s; }
.blog-card:hover .img img { transform: scale(1.04); }
.blog-card .cat { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--mid); margin-top: 22px; font-weight: 600; }
.blog-card h3 { margin-top: 10px; font-size: 22px; }
.blog-card .excerpt { margin-top: 12px; color: var(--slate-3); font-size: 14.5px; line-height: 1.55; }
.blog-card .meta { margin-top: 16px; font-size: 12.5px; color: var(--slate-3); }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq { background: var(--off); }
.faq-wrap { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; }
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-top: 1px solid var(--line-2);
  padding: 28px 0;
}
.faq-item:last-of-type { border-bottom: 1px solid var(--line-2); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  cursor: pointer; list-style: none;
  font-family: var(--f-display);
  font-size: 22px; letter-spacing: -0.01em;
  color: var(--slate);
  font-weight: 500;
  text-wrap: balance;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .marker {
  flex: 0 0 22px; width: 22px; height: 22px;
  position: relative;
  transition: transform .3s ease;
}
.faq-item .marker::before,
.faq-item .marker::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  background: var(--slate-2);
  transition: transform .3s ease;
}
.faq-item .marker::before { width: 14px; height: 1.5px; transform: translate(-50%,-50%); }
.faq-item .marker::after  { width: 1.5px; height: 14px; transform: translate(-50%,-50%); }
.faq-item[open] .marker::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq-item .answer { margin-top: 14px; color: var(--slate-3); font-size: 15.5px; line-height: 1.6; max-width: 65ch; }
@media (max-width: 900px) { .faq-wrap { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- Final conversion / Contact block (reusable) ---------- */
.final { background: var(--off); padding: clamp(80px, 9vw, 130px) 0; }
.contact-block-v2 {
  background: var(--slate);
  color: #fff;
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
}
.contact-block-v2 .topimg {
  height: 240px;
  background-size: cover; background-position: center;
  position: relative;
}
.contact-block-v2 .topimg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,28,38,.3) 0%, rgba(20,28,38,.85) 100%);
}
.contact-block-v2 .topimg .top-inner {
  position: absolute; left: clamp(36px, 5vw, 80px); bottom: 32px; right: clamp(36px, 5vw, 80px);
  display: flex; align-items: end; justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
}
.contact-block-v2 .topimg h2 { color: #fff; max-width: 18ch; font-size: clamp(28px, 3.4vw, 48px); }
.contact-block-v2 .topimg h2 em { font-style: italic; color: var(--sand); font-weight: 300; }
.contact-block-v2 .topimg .reply {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.85); font-weight: 500;
}
.contact-block-v2 .topimg .reply svg { width: 16px; height: 16px; color: var(--sand); }

.contact-block-v2 .inner {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 0;
}
.contact-block-v2 .form-side { padding: clamp(40px, 5vw, 72px); }
.contact-block-v2 .info-side {
  padding: clamp(40px, 5vw, 64px);
  background: rgba(0,0,0,.18);
  border-left: 1px solid rgba(255,255,255,.08);
  display: flex; flex-direction: column; gap: 0;
}
.contact-block-v2 .info-side .ic-row {
  display: grid; grid-template-columns: 28px 1fr; gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  align-items: center;
}
.contact-block-v2 .info-side .ic-row:first-of-type { padding-top: 0; }
.contact-block-v2 .info-side .ic-row:last-of-type { border-bottom: none; padding-bottom: 4px; }
.contact-block-v2 .info-side .ic-row svg { width: 26px; height: 26px; color: var(--sand); stroke-width: 1.5; }
.contact-block-v2 .info-side .lbl { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.6); display: block; margin-bottom: 4px; font-weight: 500; }
.contact-block-v2 .info-side .val { font-family: var(--f-display); font-size: 17px; color: #fff; line-height: 1.35; letter-spacing: -0.005em; font-weight: 500; }
.contact-block-v2 .info-side .val a { color: #fff; }
.contact-block-v2 .info-side .val a:hover { color: var(--sand); }
.contact-block-v2 .info-side .boarding-list {
  margin-top: 24px; padding: 18px 20px;
  background: rgba(159,143,110,.12);
  border-radius: var(--r);
}
.contact-block-v2 .info-side .boarding-list .lbl { font-size: 10px; margin-bottom: 8px; }
.contact-block-v2 .info-side .boarding-list .pts { font-family: var(--f-display); font-size: 14px; color: #fff; font-weight: 500; }
.contact-block-v2 .info-side .boarding-list .pts span { color: var(--sand); margin: 0 6px; }

/* ----- Homepage FAQ + Contact combined section ----- */
.faq-contact {
  background: var(--off);
  padding: clamp(80px, 9vw, 130px) 0;
}
.faq-contact .combined-card {
  background: var(--slate);
  color: #fff;
  border-radius: var(--r);
  overflow: hidden;
}
.faq-contact .top-banner {
  padding: clamp(36px, 5vw, 64px) clamp(40px, 5vw, 80px);
  background: linear-gradient(135deg, var(--slate) 0%, var(--slate-2) 100%);
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.faq-contact .top-banner .left { max-width: 22ch; }
.faq-contact .top-banner .h-eyebrow { color: var(--sand); }
.faq-contact .top-banner h2 { color: #fff; margin-top: 16px; font-size: clamp(32px, 3.6vw, 52px); }
.faq-contact .top-banner h2 em { font-style: italic; color: var(--sand); font-weight: 300; }
.faq-contact .top-banner .reply {
  display: inline-flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,.85); font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 500;
  padding: 14px 20px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r);
}
.faq-contact .top-banner .reply svg { width: 18px; height: 18px; color: var(--sand); }

.faq-contact .body {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 0;
}
.faq-contact .body .faq-side { padding: clamp(40px, 5vw, 64px); }
.faq-contact .body .info-side { padding: clamp(40px, 5vw, 56px); background: rgba(0,0,0,.2); border-left: 1px solid rgba(255,255,255,.08); }

.faq-contact .faq-side .section-label {
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.55); font-weight: 600;
  margin-bottom: 22px;
  display: flex; align-items: center; gap: 12px;
}
.faq-contact .faq-side .section-label::before { content: ""; width: 24px; height: 1px; background: var(--sand); }

.faq-contact .faq-side .faq-item {
  border-top: 1px solid rgba(255,255,255,.14);
  padding: 22px 0;
}
.faq-contact .faq-side .faq-item:last-of-type { border-bottom: 1px solid rgba(255,255,255,.14); }
.faq-contact .faq-side .faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  cursor: pointer; list-style: none;
  font-family: var(--f-display); font-size: 18px; font-weight: 500;
  color: #fff;
  letter-spacing: -0.01em;
}
.faq-contact .faq-side .faq-item summary::-webkit-details-marker { display: none; }
.faq-contact .faq-side .faq-item .marker {
  flex: 0 0 20px; width: 20px; height: 20px;
  position: relative;
  transition: transform .3s ease;
}
.faq-contact .faq-side .faq-item .marker::before,
.faq-contact .faq-side .faq-item .marker::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  background: var(--sand);
  transition: transform .3s ease;
}
.faq-contact .faq-side .faq-item .marker::before { width: 12px; height: 1.5px; transform: translate(-50%,-50%); }
.faq-contact .faq-side .faq-item .marker::after  { width: 1.5px; height: 12px; transform: translate(-50%,-50%); }
.faq-contact .faq-side .faq-item[open] .marker::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq-contact .faq-side .faq-item .answer { margin-top: 14px; color: rgba(255,255,255,.78); font-size: 14.5px; line-height: 1.6; max-width: 60ch; }

.faq-contact .info-side .ic-row {
  display: grid; grid-template-columns: 28px 1fr; gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  align-items: center;
}
.faq-contact .info-side .ic-row:first-of-type { padding-top: 0; }
.faq-contact .info-side .ic-row svg { width: 26px; height: 26px; color: var(--sand); stroke-width: 1.5; }
.faq-contact .info-side .lbl { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.6); display: block; margin-bottom: 4px; font-weight: 500; }
.faq-contact .info-side .val { font-family: var(--f-display); font-size: 16px; color: #fff; line-height: 1.4; font-weight: 500; }
.faq-contact .info-side .val a { color: #fff; }
.faq-contact .info-side .val a:hover { color: var(--sand); }
.faq-contact .info-side .cta-stack { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.faq-contact .info-side .cta-stack .btn { width: 100%; justify-content: center; padding: 16px 22px; font-size: 14px; }
.faq-contact .info-side .cta-stack .btn-primary { background: var(--sand); color: #fff; border-color: var(--sand); }
.faq-contact .info-side .cta-stack .btn-primary:hover { background: var(--olive); border-color: var(--olive); }
.faq-contact .info-side .cta-stack .btn-wa { background: #25D366; color: #fff; border-color: #25D366; }
.faq-contact .info-side .cta-stack .btn-wa:hover { background: #1ebd57; }
.faq-contact .info-side .boarding-list {
  margin-top: 18px; padding: 16px 18px;
  background: rgba(159,143,110,.12);
  border-radius: var(--r);
}
.faq-contact .info-side .boarding-list .lbl { font-size: 10px; margin-bottom: 8px; color: rgba(255,255,255,.6); font-weight: 500; letter-spacing: .22em; text-transform: uppercase; }
.faq-contact .info-side .boarding-list .pts { font-family: var(--f-display); font-size: 13.5px; color: #fff; font-weight: 500; }
.faq-contact .info-side .boarding-list .pts span { color: var(--sand); margin: 0 6px; }

@media (max-width: 1000px) {
  .faq-contact .body { grid-template-columns: 1fr; }
  .faq-contact .body .info-side { border-left: none; border-top: 1px solid rgba(255,255,255,.08); }
}

form.inquiry { display: grid; gap: 16px; margin-top: 0; }
form.inquiry .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
form.inquiry label {
  display: block;
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.7); margin-bottom: 8px;
  font-weight: 500;
}
form.inquiry input,
form.inquiry select,
form.inquiry textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,.32);
  padding: 12px 0 14px;
  font-family: var(--f-body);
  font-size: 16px;
  color: #fff;
  border-radius: 0;
  outline: none;
  transition: border-color .2s ease;
}
form.inquiry input::placeholder,
form.inquiry textarea::placeholder { color: rgba(255,255,255,.45); }
form.inquiry input:focus,
form.inquiry select:focus,
form.inquiry textarea:focus { border-bottom-color: var(--sand); }
form.inquiry select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' fill='none' stroke='%23ffffff' stroke-width='1.5'/></svg>"); background-repeat: no-repeat; background-position: right 4px center; cursor: pointer; }
form.inquiry select option { color: var(--slate); background: #fff; }
form.inquiry textarea { resize: vertical; min-height: 90px; padding-bottom: 18px; }
form.inquiry .submit-row {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  margin-top: 16px; flex-wrap: wrap;
}
form.inquiry button[type=submit] {
  background: var(--sand);
  color: #fff;
  font-family: var(--f-body); font-size: 15px; font-weight: 600;
  border: 0; border-radius: var(--r);
  padding: 18px 28px;
  display: inline-flex; align-items: center; gap: 12px;
  cursor: pointer;
  transition: background .2s, transform .15s ease;
}
form.inquiry button[type=submit]:hover { background: var(--olive); transform: translateY(-1px); }
form.inquiry .alt {
  color: rgba(255,255,255,.75); font-size: 14px;
}
form.inquiry .alt a { color: #fff; border-bottom: 1px solid currentColor; }

@media (max-width: 900px) {
  .contact-block-v2 .inner { grid-template-columns: 1fr; }
  .contact-block-v2 .info-side { border-left: none; border-top: 1px solid rgba(255,255,255,.08); }
}

/* ---------- Footer ---------- */
.site-footer { background: #1B232E; color: rgba(255,255,255,.7); padding: 90px 0 32px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-grid .col h4 { color: #fff; font-family: var(--f-body); font-size: 12px; letter-spacing: .22em; text-transform: uppercase; font-weight: 600; margin-bottom: 22px; }
.footer-grid .col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-grid .col a { color: rgba(255,255,255,.7); font-size: 14px; }
.footer-grid .col a:hover { color: #fff; }
.footer-brand .brand-row { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.footer-brand img.mark { width: 92px; height: auto; filter: invert(1); }
.footer-brand .brand-text { font-family: var(--f-display); font-size: 22px; line-height: 1.05; color: #fff; font-weight: 600; letter-spacing: -0.02em; }
.footer-brand .brand-text small { display: block; font-size: 11px; letter-spacing: .22em; text-transform: uppercase; opacity: .65; font-weight: 400; margin-top: 4px; }
.footer-brand .descriptor { font-size: 14.5px; line-height: 1.55; max-width: 38ch; color: rgba(255,255,255,.7); }
.socials { display: flex; gap: 14px; margin-top: 28px; }
.socials a {
  width: 26px; height: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  transition: color .2s, transform .2s;
  border: 0; background: transparent;
}
.socials a:hover { color: var(--sand); transform: translateY(-2px); }
.socials svg { width: 22px; height: 22px; }

.nap .ic-line {
  display: grid; grid-template-columns: 18px 1fr;
  gap: 14px;
  font-size: 14.5px; line-height: 1.55;
  color: rgba(255,255,255,.78);
  padding: 10px 0;
  align-items: flex-start;
}
.nap .ic-line svg { width: 18px; height: 18px; color: var(--sand); margin-top: 3px; }
.nap .ic-line strong { color: #fff; font-weight: 600; display: block; }
.nap .ic-line a { color: rgba(255,255,255,.78); }
.nap .ic-line a:hover { color: #fff; }
.boarding-points {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 13px;
}
.boarding-points .lbl { display: block; font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 8px; }
.boarding-points span { color: var(--sand); margin: 0 6px; }
.legal-bar {
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center; gap: 32px;
  font-size: 12.5px; color: rgba(255,255,255,.45);
}
.legal-bar .legal-links { display: flex; gap: 22px; }
.legal-bar a:hover { color: rgba(255,255,255,.85); }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .legal-bar { flex-direction: column; align-items: flex-start; gap: 16px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Sticky WhatsApp ---------- */
.whatsapp-fab {
  position: fixed; right: 24px; bottom: 24px; z-index: 70;
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff;
  padding: 14px 18px 14px 16px;
  border-radius: var(--r);
  font-size: 14px; font-weight: 600;
  box-shadow: 0 10px 30px -10px rgba(37,211,102,.6);
  transition: transform .2s ease;
}
.whatsapp-fab:hover { transform: translateY(-2px); }
.whatsapp-fab svg { width: 22px; height: 22px; }
@media (max-width: 600px) {
  .whatsapp-fab span { display: none; }
  .whatsapp-fab { padding: 14px; }
}

/* Decorative ship-wave divider (sparse) */
.wave-div {
  display: block;
  width: 100%; height: 22px;
  color: var(--line-2);
  margin: 0;
}
