/* ============================================================
   Wanvela — Curated Journeys. Timeless Memories.
   Brand stylesheet · Navy + Gold + Cream
   ============================================================ */

/* Self-hosted Marcellus (no Google Fonts request — Perf win) */
@font-face {
  font-family: 'Marcellus';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/marcellus-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2212, U+FFFD;
}
@font-face {
  font-family: 'Marcellus';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/marcellus-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+20A0-20AB, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- Design tokens ---------- */
/* Brand CI matched to wanvela.co (Wix-hosted original):
   primary navy #10273D, secondary navy #2b5672, grey #EBEBEB
   fonts: Marcellus (serif), Avenir LT with system fallback (sans) */
:root {
  --navy: #10273D;
  --navy-soft: #2b5672;
  --navy-deep: #0a1c2e;
  --gold: #B19774;
  --gold-bright: #c4ae8f;
  --orange: #A84E1C;
  --blue-accent: #B1C7DE;
  --cream: #CFC7BD;
  --cream-warm: #efe9df;
  --paper: #faf7f2;
  --charcoal: #212223;
  --grey: #EBEBEB;
  --grey-line: #d8d2c8;

  /* Marcellus (Google Fonts) = serif used on real wanvela.co */
  --serif: "Marcellus", "Cormorant Garamond", "Times New Roman", Georgia, serif;
  /* Avenir LT first (system on Mac/iOS), then Nunito Sans fallback */
  --sans: "Avenir Next", "Avenir", "Nunito Sans", "Helvetica Neue", "Helvetica", "Sukhumvit Set", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, system-ui, sans-serif;
  --thai: "Sukhumvit Set", "Avenir Next", "Helvetica Neue", system-ui, sans-serif;

  --container: 1240px;
  --container-narrow: 880px;
  --radius: 4px;
  --shadow: 0 10px 40px rgba(16, 39, 61, 0.08);
  --shadow-hover: 0 20px 60px rgba(16, 39, 61, 0.15);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, picture, svg { max-width: 100%; display: block; height: auto; }
a { color: var(--navy); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--gold); }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

/* ---------- Skip link (a11y + SEO) ---------- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--navy);
  color: var(--cream-warm);
  padding: 12px 18px;
  z-index: 999;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
}
.skip-link:focus { top: 16px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 .5em;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0;
  color: var(--navy);
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 400; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 400; }
h3 { font-size: clamp(1.3rem, 2vw, 1.5rem); font-weight: 400; font-family: var(--sans); letter-spacing: 0.01em; }
h4 { font-size: 1.1rem; font-weight: 500; font-family: var(--sans); }
.brand-logo .word,
.footer-brand .logo-word { font-family: var(--serif); font-weight: 400; letter-spacing: 0.18em; }

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.lead { font-size: 1.15rem; line-height: 1.7; color: #3a4452; max-width: 60ch; }
.thai { font-family: var(--thai); }

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }
section { padding: clamp(60px, 8vw, 120px) 0; }
.section-head { text-align: center; margin-bottom: clamp(40px, 5vw, 72px); }
.section-head .lead { margin-left: auto; margin-right: auto; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(250, 247, 242, 0);
  transition: background .35s var(--ease), padding .35s var(--ease), box-shadow .35s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 0;
  box-shadow: 0 1px 0 var(--grey-line);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-logo img { height: 40px; width: auto; }
.brand-logo .word {
  font-size: 1.45rem;
  font-weight: 300;
  letter-spacing: 0.32em;
  color: var(--navy);
  text-transform: uppercase;
}
.site-header.is-scrolled .brand-logo .word { color: var(--navy); }
/* When over hero (not scrolled), text becomes light */
.site-header:not(.is-scrolled) .brand-logo .word { color: var(--cream-warm); }

.main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 36px;
}
.main-nav a {
  font-family: var(--sans);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  font-weight: 600;
  position: relative;
  padding: 6px 0;
  color: var(--navy);
  opacity: 1;
}
.site-header:not(.is-scrolled) .main-nav a {
  color: #fff;
  text-shadow: 0 1px 8px rgba(16,39,61,0.4);
}

/* Language switcher */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 12px;
  padding-right: 12px;
  border-right: 1px solid var(--grey-line);
  font-size: 0.82rem !important;
  letter-spacing: 0.12em !important;
}
.lang-switch a {
  color: var(--navy) !important;
  font-weight: 500 !important;
  padding: 4px 6px !important;
  text-transform: uppercase;
}
.lang-switch a::after { display: none !important; }
.lang-switch a.is-active {
  color: var(--gold) !important;
  font-weight: 700 !important;
}
.site-header:not(.is-scrolled) .lang-switch { border-right-color: rgba(255,255,255,0.3); }
.site-header:not(.is-scrolled) .lang-switch a { color: #fff !important; }
.site-header:not(.is-scrolled) .lang-switch a.is-active { color: var(--gold-bright) !important; }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after { transform: scaleX(1); }
.main-nav a[aria-current="page"] { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: var(--radius);
  transition: background .25s var(--ease), transform .25s var(--ease) !important;
}
.nav-cta:hover { background: var(--navy); transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  color: var(--navy);
}
.site-header:not(.is-scrolled) .nav-toggle { color: var(--cream-warm); }
.nav-toggle svg { width: 28px; height: 28px; }

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 0 0 0 30%;
    background: var(--navy);
    padding: 100px 32px 32px;
    transform: translateX(100%);
    transition: transform .35s var(--ease);
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 24px; }
  .main-nav a, .site-header:not(.is-scrolled) .main-nav a { color: var(--cream-warm); font-size: 1.1rem; }
  .nav-cta { display: inline-block; margin-top: 12px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--cream-warm);
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--navy);
  overflow: hidden;
}
.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: none;
  opacity: 1;
  position: absolute;
  inset: 0;
}
/* Subtle gradient overlay — video stays visible */
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10,28,46,0.35) 0%,
    rgba(10,28,46,0.20) 30%,
    rgba(10,28,46,0.45) 70%,
    rgba(10,28,46,0.75) 100%);
  pointer-events: none;
}
/* Ensure content sits above overlay */
.hero > .container,
.hero > .scroll-cue { position: relative; z-index: 2; }
.hero-content { max-width: 760px; }
.hero .eyebrow { color: var(--gold-bright); }
.hero h1 {
  color: #fff;
  font-weight: 200;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 24px;
  letter-spacing: -0.015em;
}
.hero h1 em { font-style: italic; font-family: var(--serif); color: var(--gold-bright); font-weight: 400; }
.hero p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.9);
  max-width: 56ch;
  margin: 0 0 36px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.scroll-cue::after {
  content: "";
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.6);
  animation: cue 2s ease-in-out infinite;
}
@keyframes cue {
  0%, 100% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(0.3); opacity: 0.4; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all .3s var(--ease);
}
.btn-primary { background: var(--gold); color: #fff; }
.btn-primary:hover { background: var(--cream-warm); color: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; color: #fff; }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--gold); color: #fff; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-arrow::after {
  content: "→";
  transition: transform .3s var(--ease);
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ---------- Philosophy section ---------- */
.philosophy {
  background: var(--paper);
  text-align: center;
}
.philosophy blockquote {
  margin: 0 auto;
  max-width: 780px;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--navy);
  font-weight: 300;
}
.philosophy blockquote::before,
.philosophy blockquote::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 24px auto;
}
.philosophy .thai-line {
  font-family: var(--thai);
  display: block;
  margin-top: 24px;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-style: normal;
  color: var(--gold);
}

/* ---------- Destinations grid ---------- */
.destinations { background: var(--cream-warm); }
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.dest-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.dest-card:hover img { transform: scale(1.07); }
.dest-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16,39,61,0) 30%, rgba(16,39,61,0.85) 100%);
}
.dest-meta {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 28px;
  color: #fff;
}
.dest-meta .country {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 8px;
}
.dest-meta h3 {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 300;
  margin: 0 0 8px;
}
.dest-meta p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

/* ---------- Why us ---------- */
.why-us { background: var(--paper); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 48px 40px;
  margin-top: 40px;
}
.why-item {
  text-align: center;
}
.why-num {
  display: inline-block;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 16px;
}
.why-item h3 {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 12px;
}
.why-item p {
  font-size: 0.95rem;
  color: #4a5568;
  margin: 0;
}

/* ---------- Stats strip ---------- */
.stats {
  background: var(--navy);
  color: var(--cream-warm);
  padding: 70px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  text-align: center;
}
.stat-num {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--gold-bright);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 12px;
}
.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(207, 199, 189, 0.7);
}

/* ---------- Promise section (split) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
}
.split-image { aspect-ratio: 4/5; overflow: hidden; }
.split-image img { width: 100%; height: 100%; object-fit: cover; }
.split-text { padding: clamp(40px, 6vw, 80px); }
.split-text ul {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}
.split-text li {
  padding: 16px 0 16px 32px;
  border-bottom: 1px solid var(--grey-line);
  position: relative;
  font-size: 0.98rem;
}
.split-text li:last-child { border-bottom: 0; }
.split-text li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.8rem;
  top: 18px;
}
@media (max-width: 768px) {
  .split { grid-template-columns: 1fr; }
  .split-text { padding: 40px 24px; }
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--cream-warm);
  text-align: center;
}
.cta-banner h2 { color: #fff; }
.cta-banner h2 em { color: var(--gold-bright); font-family: var(--serif); font-style: italic; font-weight: 400; }
.cta-banner p { max-width: 56ch; margin: 0 auto 32px; }
.cta-banner .btn-primary { background: var(--gold); }
.cta-banner .btn-primary:hover { background: #fff; color: var(--navy); }

/* ---------- Footer ---------- */
.site-footer {
  background: #0a1c2e;
  color: rgba(207, 199, 189, 0.7);
  padding: 80px 0 32px;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(207, 199, 189, 0.15);
}
.footer-grid h4 {
  color: var(--gold-bright);
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 6px; }
.footer-grid a {
  color: var(--cream-warm);
  display: inline-block;
  padding: 8px 0;
  min-height: 32px;
  line-height: 1.4;
}
.footer-grid a:hover { color: var(--gold-bright); }
.footer-brand p {
  margin: 16px 0;
  color: rgba(207, 199, 189, 0.7);
  font-size: 0.92rem;
  line-height: 1.6;
}
.footer-brand .logo-word {
  font-size: 1.45rem;
  letter-spacing: 0.32em;
  color: #fff;
  text-transform: uppercase;
  font-weight: 300;
}
.social-links { display: flex; gap: 14px; margin-top: 20px; }
.social-links a {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(207, 199, 189, 0.08);
  border-radius: 50%;
  color: var(--cream-warm);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.social-links a:hover { background: var(--gold); color: var(--navy); }
.social-links svg { width: 18px; height: 18px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 28px;
  font-size: 0.82rem;
  color: rgba(207, 199, 189, 0.55);
}
.footer-bottom a { color: rgba(207, 199, 189, 0.7); padding: 6px 4px; display: inline-block; }
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Inner page hero ---------- */
.page-hero {
  position: relative;
  padding: 200px 0 100px;
  background: var(--navy);
  color: var(--cream-warm);
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16,39,61,0.85), rgba(16,39,61,0.95));
  z-index: 1;
}
.page-hero-bg { position: absolute; inset: 0; opacity: 0.3; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: blur(3px) saturate(0.7); transform: scale(1.05); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; }
.page-hero .lead { color: rgba(255,255,255,0.85); margin: 16px auto 0; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
  background: var(--cream-warm);
  padding: 16px 0;
  font-size: 0.82rem;
}
.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0; margin: 0;
}
.breadcrumbs li {
  display: flex;
  align-items: center;
}
.breadcrumbs li + li::before {
  content: "›";
  margin: 0 12px;
  color: var(--gold);
}
.breadcrumbs a {
  color: var(--navy);
  display: inline-block;
  padding: 6px 4px;
  min-height: 28px;
}
.breadcrumbs [aria-current] { color: #6b7280; padding: 6px 4px; display: inline-block; }
.breadcrumbs li + li::before { margin: 0 4px; }

/* ---------- Prose ---------- */
.prose { max-width: 720px; margin: 0 auto; }
.prose p { font-size: 1.05rem; line-height: 1.85; margin: 0 0 1.5em; color: #2d3748; }
.prose h2 { margin-top: 2.5em; }
.prose h3 { margin-top: 2em; }
.prose blockquote {
  margin: 2em 0;
  padding: 1em 1.5em;
  border-left: 3px solid var(--gold);
  background: var(--cream-warm);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--navy);
}
.prose img { margin: 2em 0; border-radius: var(--radius); }
.prose .figure-caption { font-size: 0.85rem; color: #6b7280; text-align: center; margin-top: -1em; margin-bottom: 2em; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--grey-line);
  padding: 24px 0;
}
.faq-item summary {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 8px 0;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.6rem;
  color: var(--gold);
  transition: transform .3s var(--ease);
  font-weight: 300;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-answer {
  padding: 12px 0 0;
  color: #4a5568;
  line-height: 1.75;
}

/* ---------- Contact form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.contact-info h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--gold); margin-top: 32px; font-weight: 500; }
.contact-info h3:first-child { margin-top: 0; }
.contact-info p { margin: 6px 0 0; color: #2d3748; }

.contact-form .field {
  margin-bottom: 20px;
}
.contact-form label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 8px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--grey-line);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
  color: var(--charcoal);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 0;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(177, 151, 116, 0.15);
}
.contact-form textarea { min-height: 140px; resize: vertical; }

/* ---------- Itinerary cards (sub-page) ---------- */
.itin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}
.itin-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.itin-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.itin-card img { aspect-ratio: 16/10; object-fit: cover; }
.itin-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.itin-card .country-tag { color: var(--gold); font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase; }
.itin-card h3 { margin: 8px 0 12px; font-size: 1.3rem; font-weight: 400; }
.itin-card .meta { font-size: 0.85rem; color: #6b7280; margin-bottom: 16px; }
.itin-card .meta span + span { margin-left: 16px; padding-left: 16px; border-left: 1px solid var(--grey-line); }
.itin-card p { font-size: 0.95rem; color: #4a5568; flex: 1; }
.itin-card .card-cta {
  margin-top: 20px;
  color: var(--navy);
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.itin-card .card-cta::after { content: " →"; transition: transform .25s var(--ease); display: inline-block; }
.itin-card:hover .card-cta { color: var(--gold); }
.itin-card:hover .card-cta::after { transform: translateX(4px); }

/* ---------- Day-by-day itinerary (destination pages) ---------- */
.day-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 28px;
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 32px;
  border: 1px solid var(--grey-line);
  align-items: start;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.day-card:hover { transform: translateX(4px); box-shadow: var(--shadow); }
.day-card .day-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold);
  border-right: 1px solid var(--grey-line);
  padding-right: 28px;
  line-height: 1.2;
  font-weight: 400;
}
.day-card h3 {
  font-size: 1.15rem;
  margin: 0 0 8px;
  font-weight: 400;
  color: var(--navy);
}
.day-card p {
  margin: 0 0 10px;
  font-size: 0.96rem;
  line-height: 1.65;
  color: #3a4452;
}
.day-card p:last-child { margin-bottom: 0; }
.day-card .hotel-tag {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 6px;
  padding: 4px 12px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
}
.day-card .day-img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  margin-top: 18px;
  border: 1px solid var(--grey-line);
  cursor: zoom-in;
  transition: transform .3s var(--ease);
}
.day-card .day-img:hover { transform: scale(1.01); }
@media (max-width: 600px) {
  .day-card { grid-template-columns: 1fr; padding: 20px 22px; gap: 12px; }
  .day-card .day-num { border-right: 0; border-bottom: 1px solid var(--grey-line); padding-right: 0; padding-bottom: 12px; }
  .day-card .day-img { margin-top: 14px; }
}

/* ---------- Category filter (journal index) ---------- */
.cat-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 32px 0 48px;
}
.cat-filter a, .cat-filter button {
  background: transparent;
  border: 1px solid var(--grey-line);
  color: var(--navy);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.84rem;
  letter-spacing: 0.05em;
  transition: all .25s var(--ease);
}
.cat-filter a:hover, .cat-filter .active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

/* ---------- Quick Facts (AEO TL;DR) ---------- */
.quick-facts { background: var(--paper); }
.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 16px;
}
.fact-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--grey-line);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.fact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.fact-card dt {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}
.fact-card dd {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.6;
  color: #2d3748;
}

/* ---------- Testimonials ---------- */
.testimonials { background: var(--cream-warm); }
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.review-card {
  background: #fff;
  padding: 36px 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.review-card::before {
  content: "“";
  position: absolute;
  top: 12px;
  right: 24px;
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--cream);
  line-height: 1;
}
.review-card .stars {
  color: var(--gold);
  letter-spacing: 0.15em;
  font-size: 0.95rem;
}
.review-card blockquote {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--charcoal);
  font-family: var(--sans);
  font-style: normal;
  flex: 1;
}
.review-card footer {
  font-size: 0.84rem;
  color: #6b7280;
  border-top: 1px solid var(--grey-line);
  padding-top: 16px;
}
.review-card cite { font-style: normal; color: var(--navy); font-weight: 500; }

/* ---------- FAQ section ---------- */
.faq-section { background: var(--paper); }

/* ---------- In-body article images ---------- */
.in-body-image {
  margin: 2.5em 0;
  padding: 0;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--shadow);
  cursor: zoom-in;
}
.in-body-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .6s var(--ease);
}
.in-body-image:hover img { transform: scale(1.03); }
.in-body-image figcaption {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.92rem;
  color: #6b7280;
  padding: 12px 16px;
  background: var(--paper);
}

/* ---------- Masonry photo gallery (Trip moments) ---------- */
.masonry-gallery {
  background: var(--paper);
  padding: clamp(60px, 8vw, 100px) 0;
}
.masonry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
  margin-top: 48px;
}
.masonry-grid figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.masonry-grid figure:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.masonry-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease), filter .35s var(--ease);
}
.masonry-grid figure:hover img {
  transform: scale(1.08);
  filter: brightness(0.95);
}
.masonry-grid figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(16,39,61,.65) 100%);
  opacity: 0;
  transition: opacity .35s var(--ease);
  pointer-events: none;
}
.masonry-grid figure:hover::after { opacity: 1; }
.masonry-grid figcaption {
  position: absolute;
  bottom: 16px;
  left: 18px;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.1rem;
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
  z-index: 2;
}
.masonry-grid figure:hover figcaption { opacity: 1; }

/* Special sizes for variety */
.masonry-grid figure.size-tall { grid-row: span 2; }
.masonry-grid figure.size-wide { grid-column: span 2; }
.masonry-grid figure.size-large { grid-column: span 2; grid-row: span 2; }

@media (max-width: 900px) {
  .masonry-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .masonry-grid figure.size-wide,
  .masonry-grid figure.size-large { grid-column: span 2; }
  .masonry-grid figure.size-tall,
  .masonry-grid figure.size-large { grid-row: span 1; }
}

/* ---------- Lightbox ---------- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(10, 28, 46, 0.94);
  align-items: center;
  justify-content: center;
  padding: 32px;
  animation: lb-fade .25s var(--ease);
}
.lightbox.is-open { display: flex; }
@keyframes lb-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
  animation: lb-zoom .35s var(--ease);
}
@keyframes lb-zoom {
  from { transform: scale(.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s var(--ease);
}
.lightbox-close:hover { background: rgba(255,255,255,.2); }
.lightbox-caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.85);
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  text-align: center;
  max-width: 80vw;
}

/* ---------- Floating action buttons (LINE + WhatsApp) ---------- */
.float-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(16,39,61,0.25);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  color: #fff;
}
.float-btn:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 10px 32px rgba(16,39,61,0.35); }
.float-btn svg { width: 30px; height: 30px; }
.float-btn.line { background: #06C755; }
.float-btn.line:hover { background: #06C755; color: #fff; }
.float-btn.whatsapp { background: #25D366; }
.float-btn.whatsapp:hover { background: #25D366; color: #fff; }
.float-btn.plan { background: var(--gold); }
.float-btn.plan:hover { background: var(--navy); color: #fff; }

@media (max-width: 600px) {
  .float-actions { right: 14px; bottom: 14px; gap: 10px; }
  .float-btn { width: 50px; height: 50px; }
  .float-btn svg { width: 24px; height: 24px; }
}

/* ---------- Trip Builder modal ---------- */
.trip-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 28, 46, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
}
.trip-modal.is-open { display: flex; }
.trip-modal-content {
  background: var(--paper);
  border-radius: 8px;
  max-width: 640px;
  width: 100%;
  padding: 48px 40px 32px;
  position: relative;
  box-shadow: 0 30px 90px rgba(0,0,0,0.4);
  max-height: 90vh;
  overflow-y: auto;
}
.trip-modal h2 { font-size: 1.8rem; margin-bottom: 8px; }
.trip-modal .tb-subtitle { color: #6b7280; margin-bottom: 28px; font-size: 0.95rem; }
.trip-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: transparent; border: 0;
  width: 36px; height: 36px;
  font-size: 1.4rem;
  color: var(--navy);
  cursor: pointer;
  border-radius: 50%;
  transition: background .2s var(--ease);
}
.trip-modal-close:hover { background: rgba(0,0,0,0.06); }
.tb-progress-track {
  height: 3px;
  background: var(--grey-line);
  border-radius: 2px;
  margin-bottom: 28px;
  overflow: hidden;
}
.tb-progress {
  height: 100%;
  background: var(--gold);
  width: 25%;
  transition: width .3s var(--ease);
}
.tb-step { display: none; animation: tb-fade .3s var(--ease); }
.tb-step.is-active { display: block; }
@keyframes tb-fade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.tb-step h3 { font-size: 1.25rem; margin-bottom: 16px; font-family: var(--serif); font-weight: 400; }
.tb-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}
.tb-options label {
  display: block;
  padding: 14px 16px;
  border: 1px solid var(--grey-line);
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  font-size: 0.9rem;
  transition: all .2s var(--ease);
  background: #fff;
}
.tb-options input { position: absolute; opacity: 0; pointer-events: none; }
.tb-options input:checked + span,
.tb-options label:has(input:checked) {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.tb-options label:hover { border-color: var(--gold); }
.tb-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
}
.tb-nav .btn { flex: 1; }
.tb-nav [data-tb-prev] { background: transparent; color: var(--navy); border: 1px solid var(--grey-line); }
.tb-nav [data-tb-prev]:hover { background: var(--grey); }

/* ---------- Journal search bar ---------- */
.journal-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin: 16px 0 40px;
  padding: 20px;
  background: var(--cream-warm);
  border-radius: 8px;
}
.journal-search-wrap {
  position: relative;
  flex: 1;
  min-width: 240px;
}
.journal-search-wrap svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px;
  color: var(--gold);
  pointer-events: none;
}
.journal-toolbar input[type="search"] {
  width: 100%;
  padding: 12px 16px 12px 44px;
  border: 1px solid var(--grey-line);
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
  color: var(--charcoal);
  transition: border-color .2s var(--ease);
}
.journal-toolbar input[type="search"]:focus {
  outline: 0;
  border-color: var(--gold);
}
#journal-empty {
  display: none;
  text-align: center;
  padding: 60px 20px;
  color: #6b7280;
  font-size: 1.05rem;
}

/* ---------- Trust badges ---------- */
.trust-bar {
  background: var(--paper);
  padding: 32px 0;
  border-top: 1px solid var(--grey-line);
  border-bottom: 1px solid var(--grey-line);
}
.trust-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 48px;
  opacity: 0.65;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
}
.trust-item strong {
  font-size: 0.9rem;
  font-family: var(--serif);
  font-weight: 400;
  margin-bottom: 4px;
  letter-spacing: 0.1em;
}

/* ---------- Mobile tweaks ---------- */
@media (max-width: 600px) {
  .hero { min-height: 90vh; padding: 100px 0 60px; }
  .nav-wrap { gap: 16px; }
  .brand-logo .word { font-size: 1.1rem; letter-spacing: 0.25em; }
  .brand-logo img { height: 32px; }
  section { padding: 60px 0; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .site-footer, .scroll-cue, .nav-toggle { display: none; }
  .hero { min-height: auto; color: var(--navy); }
  .hero-bg, .page-hero-bg { display: none; }
  .hero h1, .page-hero h1 { color: var(--navy); }
}

/* ---------- Motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
