/* ============================================================
   French Guide Croatia — site styles
   Extends the Adcresco design system (styles/tokens.css):
   keeps the warm orange + peach + Poppins foundation, adds a
   subtle Adriatic sea/teal accent and an editorial serif display
   face for a calm, Scandinavian-minimal travel feel.
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Marcellus&display=swap");

:root {
  /* --- Adriatic sea accent (the extension) --- */
  --sea-900: #073039;
  --sea-800: #0a4350;
  --sea-700: #0c5562;
  --sea-600: #0e6576;
  --sea-500: #15808f;
  --sea-400: #3aa0ad;
  --sea-300: #8ec7cf;
  --sea-200: #c4e2e6;
  --sea-100: #e7f3f4;

  --sand:      #faf6f0;   /* warm off-white alternate band */
  --sand-deep: #f3ece1;

  --accent:        var(--sea-600);
  --accent-strong: var(--sea-700);

  /* --- fonts --- */
  --font-serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --font-eyebrow: "Marcellus", "Cormorant Garamond", serif;

  /* tunable by Tweaks */
  --display-font: var(--font-serif);
  --section-gap: clamp(64px, 9vw, 128px);
  --shell: 1240px;
}

/* ============================================================
   Reset / base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--ink-800);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--orange-200); color: var(--ink-900); }

.shell { width: 100%; max-width: var(--shell); margin: 0 auto; padding: 0 22px; }
@media (min-width: 768px) { .shell { padding: 0 40px; } }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.serif { font-family: var(--display-font); font-weight: 500; }
.eyebrow {
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 10px;
  margin: 0 0 18px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1.5px; background: var(--accent); display: inline-block;
}
.eyebrow.center { justify-content: center; }
.eyebrow.on-dark { color: var(--sea-200); }
.eyebrow.on-dark::before { background: var(--sea-300); }

.lede { font-size: clamp(16px, 2.2vw, 18px); line-height: 1.7; color: var(--ink-700); }

h1, h2, h3, h4 { margin: 0; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-sans); font-weight: 600; font-size: 14px;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 15px 26px; border-radius: var(--radius-pill);
  transition: transform var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out);
  white-space: nowrap;
}
.btn .ic { width: 18px; height: 18px; }
.btn-primary { background: var(--grad-cta); color: #fff; box-shadow: var(--shadow-pill); }
.btn-primary:hover { background: var(--orange-600); color: #fff; transform: translateY(-2px); }
.btn-primary:active { transform: translateY(0) scale(0.99); }
.btn-dark { background: var(--ink-900); color: #fff; }
.btn-dark:hover { background: var(--ink-700); color: #fff; transform: translateY(-2px); }
.btn-sea { background: var(--sea-600); color: #fff; }
.btn-sea:hover { background: var(--sea-700); color: #fff; transform: translateY(-2px); }
.btn-line {
  background: transparent; color: var(--ink-900);
  border: 1.5px solid var(--ink-300);
}
.btn-line:hover { border-color: var(--ink-900); color: var(--ink-900); transform: translateY(-2px); }
.btn-line.on-photo { color: #fff; border-color: rgba(255,255,255,.55); }
.btn-line.on-photo:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.1); }
.btn-wa { background: #54D162; color: #fff; }
.btn-wa:hover { background: #46c455; color: #fff; transform: translateY(-2px); }
.btn-wa .ic { filter: brightness(0) invert(1); width: 20px; height: 20px; }
.btn-block { width: 100%; }
.btn-lg { padding: 18px 34px; font-size: 15px; }

.link-more {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans); font-weight: 700; font-size: 13px;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--brand);
  transition: gap var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.link-more:hover { gap: 13px; color: var(--brand-hover); }
.link-more::after { content: "»"; font-size: 16px; }

/* ============================================================
   Trust chips row
   ============================================================ */
.trust-row {
  display: flex; flex-wrap: wrap; gap: 10px 18px; align-items: center;
}
.trust-chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: var(--ink-700);
}
.trust-chip .dot {
  width: 20px; height: 20px; border-radius: 999px; background: var(--sea-100);
  display: inline-flex; align-items: center; justify-content: center; flex: 0 0 20px;
}
.trust-chip .dot svg { width: 12px; height: 12px; stroke: var(--sea-600); }
.trust-row.on-photo .trust-chip { color: rgba(255,255,255,.92); }
.trust-row.on-photo .dot { background: rgba(255,255,255,.18); }
.trust-row.on-photo .dot svg { stroke: #fff; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; width: 100%; z-index: 60;
  background: rgba(255,255,255,0.86);
  backdrop-filter: saturate(1.2) blur(14px);
  border-bottom: 1px solid var(--line-default);
  transition: transform .35s var(--ease-out), background var(--dur-base) var(--ease-out);
  will-change: transform;
}
.site-header.header-hidden { transform: translateY(-100%); }
.site-header.transparent {
  background: transparent; border-bottom-color: transparent; color: #fff;
  backdrop-filter: none;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; height: 72px;
}
@media (min-width: 768px) { .header-inner { height: 84px; } }

.brand-lockup { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 38px; height: 38px; flex: 0 0 38px;
  border-radius: 9px; display: block; object-fit: contain;
  box-shadow: 0 4px 12px -4px rgba(0,0,0,.28);
}
.brand-text { line-height: 1; }
.brand-name {
  font-family: var(--font-serif); font-weight: 600; font-size: 20px;
  letter-spacing: 0.01em; color: var(--ink-900); display: block;
}
.brand-sub {
  font-family: var(--font-sans); font-size: 9.5px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent);
}
.transparent .brand-name { color: #fff; }
.transparent .brand-sub { color: var(--sea-200); }

.primary-nav { display: none; align-items: center; gap: 4px; }
@media (min-width: 1080px) { .primary-nav { display: flex; } }
.primary-nav a {
  font-family: var(--font-sans); font-size: 13px; font-weight: 500;
  letter-spacing: 0.03em; color: var(--ink-800);
  padding: 10px 14px; border-radius: 999px;
  transition: color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.primary-nav a:hover { color: var(--brand); }
.transparent .primary-nav a { color: rgba(255,255,255,.9); text-shadow: 0 1px 6px rgba(0,0,0,.55); }
.transparent .primary-nav a:hover { color: #fff; }
.transparent .brand-name,
.transparent .brand-sub { text-shadow: 0 1px 6px rgba(0,0,0,.5); }

.header-right { display: flex; align-items: center; gap: 10px; }

/* language switcher */
.lang-switch { display: flex; align-items: center; gap: 2px; padding: 3px; border-radius: 999px; background: var(--ink-100); }
.transparent .lang-switch { background: rgba(255,255,255,.16); }
.lang-switch button {
  font-family: var(--font-sans); font-size: 11.5px; font-weight: 600; letter-spacing: 0.05em;
  color: var(--ink-600); padding: 6px 11px; border-radius: 999px;
  transition: all var(--dur-fast) var(--ease-out);
}
.transparent .lang-switch button { color: rgba(255,255,255,.85); }
.lang-switch button.active { background: var(--sea-600); color: #fff; box-shadow: 0 2px 8px -2px rgba(14,101,118,.5); }
.transparent .lang-switch button.active { background: #fff; color: var(--sea-700); }

.header-cta { display: none; }
@media (min-width: 1080px) { .header-cta { display: inline-flex; } }

/* hamburger */
.hamburger { display: inline-flex; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 12px; }
@media (min-width: 1080px) { .hamburger { display: none; } }
.hamburger span { width: 22px; height: 2px; background: var(--ink-900); border-radius: 2px; transition: all var(--dur-base) var(--ease-out); }
.transparent .hamburger span { background: #fff; }

/* mobile drawer */
.drawer-backdrop { position: fixed; inset: 0; background: rgba(7,48,57,.55); opacity: 0; pointer-events: none; transition: opacity var(--dur-base) var(--ease-out); z-index: 70; }
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(86vw, 360px);
  background: var(--paper); z-index: 80; padding: 26px 24px;
  transform: translateX(102%); transition: transform var(--dur-slow) var(--ease-out);
  display: flex; flex-direction: column; overflow-y: auto;
}
.drawer.open { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; }
.drawer-close { font-size: 26px; line-height: 1; color: var(--ink-700); width: 40px; height: 40px; }
.drawer nav { display: flex; flex-direction: column; gap: 2px; }
.drawer nav a {
  font-family: var(--font-serif); font-size: 24px; font-weight: 500; color: var(--ink-900);
  padding: 12px 0; border-bottom: 1px solid var(--line-default);
}
.drawer nav a:hover { color: var(--brand); }
.drawer .drawer-cta { margin-top: 26px; }
.drawer .lang-switch { margin-top: 22px; align-self: flex-start; background: var(--ink-100); }
.drawer .lang-switch button { color: var(--ink-700); }

/* ============================================================
   HERO
   ============================================================ */
/* the header is position:fixed (out of flow), so the hero already fills from the very
   top with the nav floating over it — no negative margin needed */
.hero { position: relative; min-height: 88vh; display: flex; align-items: flex-end; isolation: isolate; }
@media (min-width: 768px) { .hero { min-height: 100vh; } }
.hero .hero-photo {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(120% 90% at 70% 0%, rgba(242,143,68,.28) 0%, rgba(242,143,68,0) 45%),
    linear-gradient(165deg, var(--sea-700) 0%, var(--sea-900) 60%, #052029 100%);
}
.hero .hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* top gradient: keeps the nav (white text) readable over any hero photo —
   smooth multi-stop fade so there is no visible band/seam */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to bottom,
    rgba(5,20,30,.80) 0%,
    rgba(5,20,30,.45) 11%,
    rgba(5,20,30,.18) 24%,
    rgba(5,20,30,.04) 38%,
    transparent 50%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, transparent 0%, rgba(7,48,57,.08) 20%, rgba(7,48,57,.20) 46%, rgba(7,48,57,.72) 80%, rgba(5,28,35,.90) 100%);
}
/* content sits above the photo + overlay, but lets clicks/drops fall through
   to the photo slot everywhere except on the actual buttons & links */
.hero-content { position: relative; z-index: 2; pointer-events: none; padding: 0 0 clamp(48px, 8vw, 92px); width: 100%; }
.hero-content a, .hero-content button, .hero-content input { pointer-events: auto; }
.hero-content .inner { max-width: 760px; }
.hero h1 {
  font-family: var(--display-font); font-weight: 500;
  font-size: clamp(40px, 6.8vw, 78px); line-height: 1.07; letter-spacing: -0.01em;
  color: #fff; margin: 0 0 30px; text-wrap: balance;
  text-shadow: 0 2px 30px rgba(3,20,26,.5), 0 1px 3px rgba(3,20,26,.35);
}
.hero h1 em { font-style: italic; color: var(--orange-300); font-weight: 500; }
.hero .hero-sub { color: rgba(255,255,255,.94); font-size: clamp(16px, 2.4vw, 19px); line-height: 1.6; max-width: 50ch; margin: 0 0 30px; text-shadow: 0 1px 16px rgba(3,20,26,.5); }
.hero .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.hero .trust-row { padding-top: 22px; border-top: 1px solid rgba(255,255,255,.22); }

.hero-rating {
  position: absolute; top: clamp(96px, 14vh, 150px); right: 0; z-index: 1;
  display: none;
}
@media (min-width: 900px) { .hero-rating { display: block; } }
.rating-card {
  background: rgba(255,255,255,.94); backdrop-filter: blur(6px);
  border-radius: var(--radius-lg); padding: 18px 22px; box-shadow: var(--shadow-hover);
  text-align: center; max-width: 200px;
}
.rating-card .stars { color: var(--orange-500); font-size: 18px; letter-spacing: 2px; }
.rating-card .score { font-family: var(--font-serif); font-size: 34px; font-weight: 600; color: var(--ink-900); line-height: 1; margin: 6px 0 2px; }
.rating-card .src { font-size: 12px; color: var(--ink-600); }

/* hero photo author controls — hidden in production, shown only in edit mode */
.hero-edit { position: absolute; z-index: 5; top: clamp(86px, 12vh, 116px); left: clamp(16px, 5vw, 40px); display: none; gap: 8px; }
body.edit-mode .hero-edit { display: flex; }
.hero-edit-btn {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-sans); font-size: 12.5px; font-weight: 600; letter-spacing: 0.02em;
  color: var(--ink-900); background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  padding: 9px 14px; border-radius: var(--radius-pill); box-shadow: var(--shadow-card);
  transition: transform var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.hero-edit-btn svg { width: 16px; height: 16px; }
.hero-edit-btn:hover { transform: translateY(-1px); background: #fff; }
.hero-edit-btn.ghost { background: rgba(255,255,255,.16); color: #fff; box-shadow: none; border: 1px solid rgba(255,255,255,.4); }
.hero-edit-btn.ghost:hover { background: rgba(255,255,255,.28); }
.hero-edit.is-empty .hero-edit-btn.ghost { display: none; }
.hero-edit.is-empty .hero-edit-btn:not(.ghost) span::after { content: ""; }

/* ============================================================
   SECTION scaffolding
   ============================================================ */
.section { padding: var(--section-gap) 0; }
.section.tight { padding: clamp(48px,6vw,80px) 0; }
.band-sand { background: var(--sand); }
.band-sea { background: var(--sea-700); color: #fff; }
.band-dark { background: var(--ink-900); color: #fff; }

.section-head { max-width: 640px; margin: 0 0 clamp(34px, 5vw, 56px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-family: var(--display-font); font-weight: 500;
  font-size: clamp(30px, 4.6vw, 52px); line-height: 1.06; letter-spacing: -0.01em;
  color: var(--ink-900); text-transform: none; text-wrap: balance;
}
.band-sea .section-head h2, .band-dark .section-head h2 { color: #fff; }
.section-head p { margin: 18px 0 0; }
.section-head .lede { max-width: 52ch; }
.section-head.center .lede { margin-left: auto; margin-right: auto; }

.head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: clamp(28px,4vw,48px); }
.head-row .section-head { margin-bottom: 0; }

/* ============================================================
   TOUR CARDS
   ============================================================ */
.tour-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 640px) { .tour-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .tour-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }

.tour-card {
  background: var(--paper); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-card); display: flex; flex-direction: column;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
  cursor: pointer;
}
/* link-more as button (tours.html) */
.tour-card .link-more { background: none; border: none; padding: 0; font: inherit; cursor: pointer; }
.tour-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.tour-card .media { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.tour-card .media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform var(--dur-slow) var(--ease-out); }
.tour-card:hover .media img { transform: scale(1.04); }
.tour-card .tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: rgba(255,255,255,.92); color: var(--sea-700);
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
}
.tour-card .tag.gold { background: var(--ink-900); color: #fff; }
.tour-card .body { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.tour-card h3 { font-family: var(--display-font); font-weight: 600; font-size: 23px; line-height: 1.12; color: var(--ink-900); text-transform: none; letter-spacing: 0; }
.tour-card .meta { display: flex; flex-wrap: wrap; gap: 12px; font-size: 12.5px; color: var(--ink-600); }
.tour-card .meta span { display: inline-flex; align-items: center; gap: 5px; }
.tour-card .meta svg { width: 13px; height: 13px; stroke: var(--sea-500); }
.tour-card .desc { font-size: 13.5px; line-height: 1.55; color: var(--ink-700); margin: 0; }
.tour-card .foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 6px; }
.tour-card .price { font-size: 13px; color: var(--ink-600); }
.tour-card .price b { font-family: var(--font-serif); font-size: 22px; font-weight: 600; color: var(--ink-900); display: block; line-height: 1; }

/* ============================================================
   SOCIAL PROOF strip
   ============================================================ */
.stats-strip { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px 16px; text-align: center; }
@media (min-width: 768px) { .stats-strip { grid-template-columns: repeat(4,1fr); } }
.stat .n { font-family: var(--display-font); font-weight: 600; font-size: clamp(40px,6vw,62px); line-height: 1; color: #fff; }
.stat .n .u { color: var(--orange-300); }
.stat .l { margin-top: 8px; font-size: 13px; letter-spacing: 0.04em; color: var(--sea-200); }

/* review cards */
.review-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 768px) { .review-grid { grid-template-columns: repeat(3,1fr); } }
.review-card { background: var(--paper); border: 1px solid var(--line-default); border-radius: var(--radius-lg); padding: 28px 26px; display: flex; flex-direction: column; gap: 16px; }
.review-card .stars { color: var(--orange-500); letter-spacing: 2px; font-size: 15px; }
.review-card .quote { font-family: var(--display-font); font-weight: 500; font-size: 21px; line-height: 1.4; color: var(--ink-900); font-style: italic; margin: 0; }
.review-card .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review-card .who .nm { font-weight: 600; font-size: 14px; color: var(--ink-900); }
.review-card .who .meta { font-size: 12px; color: var(--ink-600); }
.review-card .src { font-size: 11px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--sea-600); }

/* ============================================================
   ABOUT teaser
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr; gap: clamp(28px,5vw,64px); align-items: center; }
@media (min-width: 900px) { .about-grid { grid-template-columns: 0.9fr 1.1fr; } }
.about-photo { position: relative; }
.about-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; border-radius: var(--radius-lg); }
.about-photo .badge {
  position: absolute; bottom: -18px; right: -8px;
  background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-hover);
  padding: 14px 18px; display: flex; align-items: center; gap: 12px; max-width: 230px;
}
@media (min-width:900px){ .about-photo .badge { right: -28px; } }
.about-photo .badge .seal { width: 38px; height: 38px; border-radius: 999px; background: var(--sea-100); display: grid; place-items: center; flex: 0 0 38px; }
.about-photo .badge .seal svg { width: 18px; height: 18px; stroke: var(--sea-600); }
.about-photo .badge .t { font-size: 12.5px; line-height: 1.3; }
.about-photo .badge .t b { display: block; color: var(--ink-900); font-size: 13px; }
.about-text .signature { font-family: var(--font-serif); font-style: italic; font-size: 30px; color: var(--ink-900); margin-top: 22px; }
.about-text p + p { margin-top: 16px; }

/* ============================================================
   CRUISE band
   ============================================================ */
.cruise { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center; }
@media (min-width: 860px){ .cruise { grid-template-columns: 1.1fr 0.9fr; } }
.cruise .copy h2 { font-family: var(--display-font); font-weight: 500; font-size: clamp(28px,4vw,44px); line-height: 1.08; color: #fff; }
.cruise .copy p { color: rgba(255,255,255,.9); margin: 16px 0 24px; max-width: 46ch; }
.cruise-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-lg); padding: 26px; }
.cruise-card ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.cruise-card li { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; color: rgba(255,255,255,.92); }
.cruise-card li .ck { width: 24px; height: 24px; flex:0 0 24px; border-radius:999px; background: var(--orange-500); display:grid; place-items:center; }
.cruise-card li .ck svg { width: 13px; height: 13px; }

/* ============================================================
   MEETING POINT / map
   ============================================================ */
.meet-grid { display: grid; grid-template-columns: 1fr; gap: 0; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-card); border: 1px solid var(--line-default); }
@media (min-width: 860px){ .meet-grid { grid-template-columns: 1fr 1fr; } }
.meet-copy { padding: clamp(28px,4vw,48px); background: var(--paper); }
.meet-copy h3 { font-family: var(--display-font); font-weight: 500; font-size: clamp(26px,3.4vw,38px); color: var(--ink-900); text-transform:none; letter-spacing:0; }
.meet-list { list-style: none; padding: 0; margin: 22px 0 0; display: flex; flex-direction: column; gap: 16px; }
.meet-list li { display: flex; gap: 14px; align-items: flex-start; }
.meet-list .pin { width: 34px; height: 34px; flex: 0 0 34px; border-radius: 999px; background: var(--sea-100); display: grid; place-items: center; }
.meet-list .pin svg { width: 16px; height: 16px; stroke: var(--sea-600); }
.meet-list .lbl { font-size: 12px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--sea-600); font-weight: 600; }
.meet-list .val { font-size: 15px; color: var(--ink-800); }
.map-wrap { position: relative; min-height: 320px; background: var(--sea-100); border-radius: var(--radius-lg); overflow: hidden; }
.map-wrap .map-svg { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: auto; }
.map-wrap .marker {
  position: absolute; top: 46%; left: 38%; transform: translate(-50%,-100%);
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.map-wrap .marker .pulse { width: 18px; height: 18px; border-radius: 999px; background: var(--orange-500); border: 3px solid #fff; box-shadow: 0 0 0 0 rgba(242,111,45,.5); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%{ box-shadow: 0 0 0 0 rgba(242,111,45,.5);} 70%{ box-shadow: 0 0 0 16px rgba(242,111,45,0);} 100%{ box-shadow:0 0 0 0 rgba(242,111,45,0);} }
.map-wrap .marker .lab { background: var(--ink-900); color:#fff; font-size: 12px; font-weight: 600; padding: 5px 10px; border-radius: 999px; white-space: nowrap; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid { display: grid; grid-template-columns: 1fr; gap: clamp(28px,4vw,56px); align-items: start; }
@media (min-width: 900px){ .faq-grid { grid-template-columns: 0.8fr 1.2fr; } }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--line-strong); }
.faq-item:last-child { border-bottom: 1px solid var(--line-strong); }
.faq-q { width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 22px 4px; font-family: var(--font-sans); font-weight: 600; font-size: clamp(15px,2vw,18px); color: var(--ink-900); }
.faq-q .pm { width: 26px; height: 26px; flex: 0 0 26px; border-radius: 999px; border: 1.5px solid var(--ink-300); display: grid; place-items: center; transition: all var(--dur-base) var(--ease-out); position: relative; }
.faq-q .pm::before, .faq-q .pm::after { content: ""; position: absolute; background: var(--ink-700); transition: all var(--dur-base) var(--ease-out); }
.faq-q .pm::before { width: 11px; height: 1.6px; }
.faq-q .pm::after { width: 1.6px; height: 11px; }
.faq-item.open .pm { background: var(--brand); border-color: var(--brand); }
.faq-item.open .pm::before, .faq-item.open .pm::after { background: #fff; }
.faq-item.open .pm::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--dur-slow) var(--ease-out); }
.faq-a .inner { padding: 0 4px 24px; font-size: 15px; line-height: 1.7; color: var(--ink-700); max-width: 60ch; }

/* ============================================================
   CONTACT / booking section
   ============================================================ */
.cta-band { position: relative; overflow: hidden; }

/* --- Tour Picker --- */
.tour-picker {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 10px;
  margin-bottom: 48px;
}
@media (max-width: 600px) {
  .tour-picker {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    gap: 10px; padding-bottom: 8px; margin-bottom: 36px;
    scrollbar-width: none;
    /* trailing space so last card doesn't clip */
    padding-right: 22px;
  }
  .tour-picker::-webkit-scrollbar { display: none; }
}

.pick-card {
  display: flex; flex-direction: column;
  background: rgba(255,255,255,.08);
  border: 2px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  cursor: pointer; overflow: hidden; text-align: left;
  transition: border-color 180ms ease-out, transform 180ms ease-out, background 180ms ease-out;
  scroll-snap-align: start;
  flex: 0 0 190px;
}
.pick-card:hover { border-color: rgba(255,255,255,.5); transform: translateY(-3px); background: rgba(255,255,255,.12); }
.pick-card.selected { border-color: var(--orange-500); background: rgba(242,111,45,.1); }
.pick-card.selected .pc-name { color: var(--orange-300); }
.pick-card img { width: 100%; aspect-ratio: 3/2; object-fit: cover; display: block; }
.pc-body { padding: 10px 12px 12px; }
.pc-name { font-size: 13px; font-weight: 700; color: #fff; line-height: 1.3; margin-bottom: 4px; }
.pc-meta { font-size: 11px; color: rgba(255,255,255,.6); margin-bottom: 6px; }
.pc-price { font-size: 12px; font-weight: 700; color: var(--orange-300); }

/* --- Booking form wrap --- */
.booking-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
  position: relative; z-index: 1;
}
@media (max-width: 860px) { .booking-form-wrap { grid-template-columns: 1fr; } }

.booking-left { display: flex; flex-direction: column; }

/* --- Selected tour badge (top of form) --- */
.selected-tour-badge {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; margin-bottom: 18px;
  background: var(--sea-800); border-radius: var(--radius-md);
  border-left: 3px solid var(--orange-500);
}
.selected-tour-badge.hidden { display: none; }
.stb-img { width: 52px; height: 52px; border-radius: var(--radius-sm); object-fit: cover; flex: 0 0 52px; }
.stb-info { flex: 1; min-width: 0; }
.stb-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--orange-400); margin-bottom: 3px; }
.stb-name { font-size: 14px; font-weight: 700; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.stb-meta { font-size: 12px; color: rgba(255,255,255,.6); }
.stb-clear { background: none; border: none; color: rgba(255,255,255,.5); font-size: 20px; cursor: pointer; padding: 0 4px; line-height: 1; flex: 0 0 auto; }
.stb-clear:hover { color: #fff; }

/* --- Form (white card) --- */
.cta-form { background: #fff; border-radius: var(--radius-xl); padding: clamp(24px,3vw,38px); box-shadow: var(--shadow-hover); }
.cta-form h3 { font-family: var(--display-font); font-weight: 600; font-size: 26px; color: var(--ink-900); text-transform: none; letter-spacing: 0; margin-bottom: 6px; }
.cta-form .sub { font-size: 13.5px; color: var(--ink-600); margin: 0 0 20px; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
/* min-width:0 lets grid columns shrink below the input's intrinsic width
   (default grid items have min-width:auto, which would force overflow) */
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field.full { grid-column: 1 / -1; }
.field input, .field select, .field textarea { width: 100%; }
/* single column on mobile — placed AFTER the base rule so source order wins */
@media (max-width: 600px) {
  .field-grid { grid-template-columns: 1fr; }
}
.field label { font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-600); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 15px; padding: 13px 14px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--line-strong); background: var(--paper); color: var(--ink-900);
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.field textarea { resize: vertical; min-height: 88px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--sea-500); box-shadow: 0 0 0 3px var(--sea-100); }
/* iOS Safari gives date/number inputs a native appearance that ignores
   width:100% and adds intrinsic width — strip it so they align with the rest */
.field input[type="date"], .field input[type="number"] {
  -webkit-appearance: none; appearance: none; min-width: 0; text-align: left;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer-rule { height: 3px; background: var(--grad-cta); }
.site-footer { background: var(--ink-900); color: rgba(255,255,255,.7); padding: clamp(48px,6vw,80px) 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 36px; }
@media (min-width: 720px){ .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-sub { color: var(--sea-300); }
.footer-brand p { margin: 18px 0 20px; max-width: 34ch; font-size: 14px; line-height: 1.65; color: rgba(255,255,255,.6); }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 40px; height: 40px; border-radius: 999px; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: background var(--dur-fast) var(--ease-out); }
.footer-social a:hover { background: var(--sea-600); }
.footer-social svg { width: 18px; height: 18px; stroke: #fff; }
.footer-col h4 { font-family: var(--font-sans); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange-400); margin: 0 0 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,.68); transition: color var(--dur-fast) var(--ease-out); }
.footer-col a:hover { color: #fff; }
.footer-bottom { margin-top: clamp(36px,5vw,56px); padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center; font-size: 12.5px; color: rgba(255,255,255,.5); }
.footer-bottom .links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom a:hover { color: #fff; }
.footer-credit { color: rgba(255,255,255,.72); text-decoration: underline; text-underline-offset: 2px; transition: color var(--dur-fast) var(--ease-out); }
.footer-credit:hover { color: #fff; }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  display: inline-flex; align-items: center; gap: 0; height: 58px;
  background: #54D162; color: #fff; border-radius: 999px; padding: 0 18px;
  box-shadow: 0 10px 30px -8px rgba(84,209,98,.6);
  transition: transform var(--dur-base) var(--ease-out), gap var(--dur-base) var(--ease-out);
  overflow: hidden;
}
@media (min-width: 768px){ .wa-float { right: 28px; bottom: 28px; } }
.wa-float img { width: 28px; height: 28px; filter: brightness(0) invert(1); flex: 0 0 28px; }
.wa-float .wa-label { max-width: 0; opacity: 0; white-space: nowrap; font-weight: 600; font-size: 14px; transition: max-width var(--dur-slow) var(--ease-out), opacity var(--dur-base) var(--ease-out), margin var(--dur-slow) var(--ease-out); }
.wa-float:hover { transform: translateY(-2px); }
.wa-float:hover .wa-label { max-width: 200px; opacity: 1; margin-left: 12px; }
@media (min-width: 768px){ .wa-float .wa-label { max-width: 200px; opacity: 1; margin-left: 12px; } }

/* ============================================================
   COOKIE consent
   ============================================================ */
.cookie {
  position: fixed; left: 18px; bottom: 18px; right: 18px; z-index: 88;
  max-width: 440px; background: #fff; border: 1px solid var(--line-default);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-hover); padding: 20px 22px;
  transform: translateY(160%); transition: transform var(--dur-slow) var(--ease-out);
}
@media (min-width: 768px){ .cookie { left: 28px; bottom: 28px; right: auto; } }
.cookie.show { transform: translateY(0); }
.cookie p { font-size: 13px; line-height: 1.55; color: var(--ink-700); margin: 0 0 14px; }
.cookie p a { color: var(--sea-600); text-decoration: underline; }
.cookie .row { display: flex; gap: 10px; }
.cookie .btn { padding: 11px 18px; font-size: 12px; }

/* tour preview card in enquiry form */
.tour-preview-card {
  display: flex; gap: 14px; align-items: center;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-md); padding: 12px 16px;
  animation: fadeUp .25s var(--ease-out);
}
@keyframes fadeUp { from { opacity:0; transform: translateY(6px); } to { opacity:1; transform: none; } }
.tp-img { width: 72px; height: 72px; object-fit: cover; border-radius: var(--radius-sm); flex: 0 0 72px; }
.tp-info { display: flex; flex-direction: column; gap: 4px; }
.tp-name { font-size: 13px; font-weight: 700; color: #fff; letter-spacing: .02em; }
.tp-meta { font-size: 12px; color: rgba(255,255,255,.7); }
.tp-price { font-size: 14px; font-weight: 700; color: var(--orange-300); }

/* ============================================================
   TOUR DETAIL MODAL
   ============================================================ */
.tmodal-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(5,18,28,.78); backdrop-filter: blur(5px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.tmodal-overlay[hidden] { display: none; }
@keyframes tmodalIn { from { opacity:0; transform: translateY(18px) scale(.97); } to { opacity:1; transform: none; } }

.tmodal {
  background: #fff; border-radius: var(--radius-xl);
  max-width: 460px; width: 100%;
  max-height: 92vh; overflow-y: auto;
  box-shadow: 0 32px 80px rgba(0,0,0,.45);
  animation: tmodalIn .22s var(--ease-out);
  position: relative;
}

.tmodal-close {
  position: absolute; top: 10px; right: 12px; z-index: 2;
  background: rgba(0,0,0,.35); color: #fff; border: none;
  border-radius: 999px; width: 44px; height: 44px;
  font-size: 20px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur-fast) var(--ease-out);
}
.tmodal-close:hover { background: rgba(0,0,0,.6); }

.tmodal-img-wrap img {
  width: 100%; aspect-ratio: 3/2; object-fit: cover;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0; display: block;
}

.tmodal-body { padding: 22px 26px 28px; }
.tmodal-meta { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--sea-600); margin-bottom: 8px; }
.tmodal-name { font-family: var(--display-font); font-weight: 500; font-size: clamp(22px,4vw,30px); color: var(--ink-900); line-height: 1.15; margin-bottom: 12px; text-transform: none; letter-spacing: 0; }
.tmodal-desc { font-size: 15px; color: var(--ink-600); line-height: 1.65; margin-bottom: 16px; }
.tmodal-price { font-size: 17px; font-weight: 700; color: var(--brand); margin-bottom: 22px; }
.tmodal-actions { display: flex; flex-direction: column; gap: 10px; }

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .map-wrap .marker .pulse { animation: none; } }

/* density tweak */
:root[data-density="compact"] { --section-gap: clamp(44px, 6vw, 84px); }

/* ============================================================
   SUB-PAGE header (no photo hero) — tours.html / story.html
   ============================================================ */
.page-hero { position: relative; background: linear-gradient(165deg, var(--sea-700) 0%, var(--sea-900) 70%, #052029 100%); color: #fff; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; right: -10%; top: -40%; width: 60%; height: 180%; background: radial-gradient(closest-side, rgba(242,143,68,.22), rgba(242,143,68,0) 70%); pointer-events: none; }
.page-hero .shell { position: relative; z-index: 1; padding-top: clamp(110px, 16vh, 168px); padding-bottom: clamp(48px, 8vw, 90px); }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12.5px; letter-spacing: 0.04em; color: var(--sea-200); margin-bottom: 22px; }
.breadcrumb a { color: var(--sea-200); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { opacity: .6; }
.page-hero h1 { font-family: var(--display-font); font-weight: 500; font-size: clamp(38px, 6vw, 72px); line-height: 1.04; letter-spacing: -0.01em; color: #fff; max-width: 18ch; text-wrap: balance; }
.page-hero .intro { margin-top: 22px; max-width: 56ch; font-size: clamp(16px, 2.2vw, 19px); line-height: 1.65; color: rgba(255,255,255,.9); }
.page-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.page-hero .page-actions { margin-top: 30px; }

/* ============================================================
   FILTER chips (tours catalogue)
   ============================================================ */
.filter-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: clamp(28px, 4vw, 44px); }
.filter-chip {
  font-family: var(--font-sans); font-size: 13px; font-weight: 600; letter-spacing: 0.03em;
  padding: 10px 18px; border-radius: var(--radius-pill); border: 1.5px solid var(--line-strong);
  color: var(--ink-700); background: var(--paper);
  transition: all var(--dur-fast) var(--ease-out);
}
.filter-chip:hover { border-color: var(--sea-500); color: var(--sea-700); }
.filter-chip.active { background: var(--sea-600); border-color: var(--sea-600); color: #fff; box-shadow: 0 4px 12px -4px rgba(14,101,118,.45); }
.tour-card.is-hidden { display: none; }

/* catalogue grid: 3-up on desktop, richer cards */
.catalog-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .catalog-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .catalog-grid { grid-template-columns: repeat(3, 1fr); } }
.catalog-grid .tour-card .media { aspect-ratio: 16/11; }
.catalog-grid .tour-card h3 { font-size: 24px; }

/* ============================================================
   STORY page (editorial long-form)
   ============================================================ */
.story-intro { display: grid; grid-template-columns: 1fr; gap: clamp(28px, 5vw, 60px); align-items: start; }
@media (min-width: 940px) { .story-intro { grid-template-columns: 1.15fr 0.85fr; } }
.story-body { max-width: 62ch; }
.story-body p { margin: 0 0 18px; font-size: clamp(16px, 2vw, 18px); line-height: 1.75; color: var(--ink-800); }
.story-body p:first-of-type::first-letter {
  font-family: var(--display-font); font-weight: 600; float: left; font-size: 4.4em;
  line-height: 0.78; padding: 6px 12px 0 0; color: var(--brand);
}
.story-body h2, .story-body h3 { font-family: var(--display-font); font-weight: 500; font-size: clamp(24px, 3vw, 34px); color: var(--ink-900); margin: 36px 0 14px; }
.story-aside { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 20px; }
.story-portrait { position: relative; }
.story-portrait img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; border-radius: var(--radius-lg); }
.story-portrait .badge {
  position: absolute; bottom: -16px; left: -10px; background: #fff; border-radius: var(--radius-md);
  box-shadow: var(--shadow-hover); padding: 13px 17px; display: flex; align-items: center; gap: 11px; max-width: 230px;
}
.story-portrait .badge .seal { width: 36px; height: 36px; border-radius: 999px; background: var(--sea-100); display: grid; place-items: center; flex: 0 0 36px; }
.story-portrait .badge .seal svg { width: 17px; height: 17px; stroke: var(--sea-600); }
.story-portrait .badge .t { font-size: 12px; line-height: 1.3; }
.story-portrait .badge .t b { display: block; color: var(--ink-900); font-size: 13px; }
.fact-card { background: var(--sand); border: 1px solid var(--line-default); border-radius: var(--radius-lg); padding: 22px 24px; }
.fact-card h4 { font-family: var(--font-sans); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sea-600); margin: 0 0 14px; }
.fact-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.fact-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 14px; color: var(--ink-800); line-height: 1.45; }
.fact-list li .ck { width: 22px; height: 22px; flex: 0 0 22px; border-radius: 999px; background: var(--sea-100); display: grid; place-items: center; }
.fact-list li .ck svg { width: 12px; height: 12px; stroke: var(--sea-600); }
.pullquote { font-family: var(--display-font); font-weight: 500; font-style: italic; font-size: clamp(24px, 3.4vw, 38px); line-height: 1.3; color: var(--sea-700); text-align: center; max-width: 22ch; margin: clamp(40px,6vw,72px) auto; text-wrap: balance; }
.story-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 720px) { .story-gallery { grid-template-columns: repeat(4, 1fr); } }
.story-gallery img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: var(--radius-lg); aspect-ratio: 1; }
.story-gallery img:first-child { grid-column: span 2; grid-row: span 2; aspect-ratio: 1; }
.story-sign { font-family: var(--display-font); font-style: italic; font-size: 34px; color: var(--ink-900); margin-top: 28px; }

/* ============================================================
   PLACEHOLDER elements (no photo yet — shown until real image is dropped in)
   ============================================================ */
.about-img-placeholder {
  width: 100%; aspect-ratio: 4/5;
  background: var(--sea-100); border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(18px, 2.4vw, 24px); color: var(--sea-600);
}

.story-portrait-placeholder {
  width: 100%; aspect-ratio: 3/4;
  background: var(--sea-100); border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(18px, 2.4vw, 24px); color: var(--sea-600);
}

.rev-avatar {
  width: 42px; height: 42px; flex: 0 0 42px;
  border-radius: 999px; background: var(--sea-100);
  object-fit: cover; display: block;
}
