/* ==========================================================================
   Vietnam Signature Travel — Global Stylesheet
   Visual language: a "lotus blue" palette (the blue lotus is Vietnam's emblem)
   warmed with imperial gold and a whisper of lotus pink, laid out in a
   Microsoft Fluent / Azure aesthetic (Segoe UI, card surfaces, soft depth
   shadows, roomy spacing, gradient hero bands).
   ========================================================================== */

/* ---- Design tokens ---- */
:root {
  /* ---- Lotus-blue brand palette ----
     Primary #1668B0 · Secondary #2A94CF · Accent #79C6E8
     Gold #D9A441 · Lotus pink #E46F92 · Ink #0B2F52 */
  --navy-900: #06243f;   /* deepest — topbar / footer */
  --navy:     #0b2f52;   /* Text / dark surfaces & headings */
  --primary:  #1668b0;   /* lotus blue — primary action */
  --secondary:#2a94cf;   /* brighter blue */
  --accent:   #79c6e8;   /* sky accent */

  --gold:     #d9a441;   /* imperial gold — premium accents, stars */
  --gold-600: #b9862c;
  --lotus:    #e46f92;   /* soft lotus pink — sparing highlights */

  --blue:     #1668b0;   /* primary action blue (buttons, links) */
  --blue-600: #12558f;   /* button hover */
  --blue-bright: #2a94cf;/* secondary accent */
  --drop:     #79c6e8;   /* light accent */
  --blue-050: #eaf5fc;   /* light chip / tint */
  --sky:      #eef7fd;   /* light background */

  --ink:   #0b2f52;
  --muted: #52657d;
  --line:  #d8e6f1;
  --white: #ffffff;

  /* ---- Brand gradients (135° blue → navy family) ---- */
  --grad-primary:       linear-gradient(135deg, var(--secondary) 0%, var(--primary) 55%, var(--navy) 100%);
  --grad-primary-hover: linear-gradient(135deg, var(--primary) 0%, var(--navy) 100%);
  --grad-navy:          linear-gradient(135deg, var(--navy) 0%, var(--primary) 100%);
  --grad-ice:           linear-gradient(135deg, #ffffff 0%, var(--blue-050) 100%);
  --grad-hero:          linear-gradient(135deg, #ffffff 0%, var(--sky) 52%, #d6ecfb 100%);
  --grad-gold:          linear-gradient(135deg, #f0c56a 0%, var(--gold) 55%, var(--gold-600) 100%);

  --ok:  #107c41;
  --err: #c50f1f;

  /* Typography — Fluent uses Segoe UI */
  --font: "Segoe UI", -apple-system, BlinkMacSystemFont, system-ui, Roboto,
          "Helvetica Neue", Arial, sans-serif;

  /* Fluent depth shadows */
  --shadow-2:  0 1.6px 3.6px rgba(0,0,0,.11), 0 .3px .9px rgba(0,0,0,.09);
  --shadow-8:  0 6.4px 14.4px rgba(0,0,0,.12), 0 1.2px 3.6px rgba(0,0,0,.10);
  --shadow-16: 0 12.8px 28.8px rgba(0,0,0,.12), 0 2.4px 7.2px rgba(0,0,0,.10);

  --radius: 8px;
  --radius-lg: 14px;
  --container: 1180px;
  --gutter: clamp(16px, 4vw, 32px);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { line-height: 1.15; color: var(--navy); margin: 0 0 .5em; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); letter-spacing: -.5px; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); letter-spacing: -.3px; }
h3 { font-size: 1.2rem; }
p  { margin: 0 0 1rem; }
ul { margin: 0 0 1rem; padding-left: 1.2rem; }

/* ---- Layout helpers ---- */
.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.section { padding: clamp(48px, 8vw, 88px) 0; }
.section--tint { background: var(--sky); }
.section--navy { background: var(--grad-navy); color: #dce7f5; }
.section--navy h2, .section--navy h3 { color: #fff; }
.eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--blue); margin-bottom: .6rem;
}
.section-head { max-width: 660px; margin-bottom: 2.5rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.lead { font-size: 1.12rem; color: var(--muted); }

/* Skip link for a11y */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---- Buttons (Fluent-style) ---- */
.btn {
  --btn-bg: var(--grad-primary); --btn-fg: #fff;
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid transparent; border-radius: var(--radius);
  padding: .75rem 1.35rem; font: inherit; font-weight: 600; cursor: pointer;
  transition: background .15s ease, box-shadow .15s ease, transform .05s ease;
  text-decoration: none; box-shadow: var(--shadow-2);
}
.btn:hover { background: var(--grad-primary-hover); text-decoration: none; box-shadow: var(--shadow-8); }
.btn:active { transform: translateY(1px); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--navy); border-color: var(--line); box-shadow: none; }
.btn--ghost:hover { --btn-bg: var(--blue-050); background: var(--blue-050); }
.btn--white { --btn-bg:#fff; --btn-fg: var(--navy); }
.btn--white:hover { background:#eef4fc; }
.btn--gold { --btn-bg: var(--grad-gold); --btn-fg: #3a2a06; }
.btn--gold:hover { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-600) 100%); }
.btn--ghost-white { --btn-bg: transparent; --btn-fg:#fff; border-color: rgba(255,255,255,.5); box-shadow: none; }
.btn--ghost-white:hover { --btn-bg: rgba(255,255,255,.14); background: rgba(255,255,255,.14); }
.btn--lg { padding: .95rem 1.8rem; font-size: 1.05rem; }
.btn--block { display: flex; width: 100%; justify-content: center; }

/* ==========================================================================
   Top utility bar
   ========================================================================== */
.topbar { background: var(--navy-900); color: #cdddf2; font-size: .86rem; }
.topbar .container { display: flex; gap: 1.25rem; align-items: center; flex-wrap: wrap; padding: .45rem 0; }
.topbar a { color: #fff; }
.topbar .spacer { margin-left: auto; }
.topbar .dot { opacity: .45; }
.topbar strong { color: #fff; }

/* ---- Currency switcher (top bar) ---- */
.cursel { display: inline-flex; align-items: center; gap: .4rem; flex-wrap: wrap; }
.cursel-label { opacity: .8; }
.cursel button { background: transparent; border: 1px solid rgba(255,255,255,.32); color: inherit;
  font: inherit; font-size: .82em; line-height: 1.5; padding: .04rem .45rem; border-radius: 5px;
  cursor: pointer; }
.cursel button:hover { border-color: rgba(255,255,255,.6); }
.cursel button[aria-pressed="true"] { background: #fff; color: var(--navy-900); border-color: #fff; font-weight: 700; }
.cur-note { opacity: .7; font-size: .85em; }
:root[data-currency="VND"] .cur-note,
:root:not([data-currency]) .cur-note { display: none; }

/* ==========================================================================
   Header / navigation
   ========================================================================== */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(8px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; gap: 1rem; padding: .6rem 0; }
.brand { display: flex; align-items: center; gap: .65rem; font-weight: 800; color: var(--navy);
  font-size: 1.15rem; letter-spacing: -.2px; }
.brand:hover { text-decoration: none; }
.brand .logo { width: 44px; height: 44px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text b { font-weight: 800; }
.brand-text small { font-size: .6rem; font-weight: 700; letter-spacing: 2.5px;
  color: var(--gold-600); text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: .35rem; margin-left: auto; }
.nav-links a { color: var(--ink); font-weight: 600; padding: .55rem .8rem; border-radius: 6px; }
.nav-links a:hover { background: var(--blue-050); text-decoration: none; }
.nav-links a[aria-current="page"] { color: var(--blue); background: var(--blue-050); }
.nav-cta { margin-left: .5rem; }
.nav-links a.nav-cta { color: #fff; }
.nav-links a.nav-cta:hover { background: var(--grad-primary-hover); }
.nav-toggle { display: none; margin-left: auto; background: none; border: 1px solid var(--line);
  border-radius: 6px; width: 44px; height: 44px; cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle svg { width: 24px; height: 24px; }

/* ---- Dropdown ---- */
.nav-item { position: relative; display: flex; align-items: center; }
.nav-item > a { display: inline-flex; align-items: center; gap: .25rem; }
.caret { transition: transform .15s ease; }
.has-dropdown:hover .caret,
.has-dropdown:focus-within .caret { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: 100%; left: 0; min-width: 250px; display: none;
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  box-shadow: var(--shadow-16); padding: .4rem; z-index: 120;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { display: block; }
.dropdown a { display: block; width: 100%; white-space: nowrap;
  padding: .6rem .75rem; border-radius: 6px; font-weight: 600; color: var(--ink); }
.dropdown a:hover { background: var(--blue-050); }
.dropdown a.dropdown-all { color: var(--blue); margin-top: .2rem;
  border-top: 1px solid var(--line); border-radius: 0 0 6px 6px; }

@media (max-width: 860px) {
  .nav-item { display: block; }
  .nav-item > a { display: flex; }
  .caret { display: none; }
  .dropdown { position: static; display: block; min-width: 0;
    background: var(--blue-050); border: none; box-shadow: none;
    border-radius: 8px; margin: .1rem 0 .5rem; padding: .25rem; }
  .dropdown a { display: block; width: auto; color: var(--navy); white-space: normal;
    padding: .7rem .85rem; font-weight: 600; }
  .dropdown a:hover { background: #fff; }
  .dropdown a.dropdown-all { border-top: none; color: var(--blue); }
}

@media (max-width: 860px) {
  /* backdrop-filter makes .site-header a containing block for its fixed
     descendants, which clips the drawer to the header's box. */
  .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: #fff; }

  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px);
    flex-direction: column; align-items: stretch; gap: .25rem; margin: 0;
    background: #fff; box-shadow: var(--shadow-16); padding: 5rem 1.25rem 1.25rem;
    overflow-y: auto; overscroll-behavior: contain;
    transform: translateX(100%); transition: transform .22s ease; z-index: 90;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { padding: .85rem .9rem; }
  .nav-cta { margin: .5rem 0 0; }

  /* Scrim. Lives on body so it stays below the header's stacking context,
     keeping the toggle tappable while the drawer is open. */
  html.nav-open, html.nav-open body { overflow: hidden; }
  html.nav-open body::after {
    content: ""; position: fixed; inset: 0; z-index: 80;
    background: rgba(6, 36, 63, .5);
  }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; overflow: hidden; color: #dbe9fb;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 48%, var(--navy) 100%); }
.hero::after {
  /* faint lotus watermark motif, pure CSS radial petals */
  content: ""; position: absolute; right: -8%; top: -20%; width: 60vw; height: 60vw;
  max-width: 720px; max-height: 720px; pointer-events: none; z-index: 0; opacity: .10;
  background:
    radial-gradient(circle at 50% 78%, #fff 0 8%, transparent 9%),
    conic-gradient(from 0deg at 50% 78%, transparent 0deg, rgba(255,255,255,.9) 20deg, transparent 40deg,
      transparent 60deg, rgba(255,255,255,.9) 80deg, transparent 100deg,
      transparent 120deg, rgba(255,255,255,.9) 140deg, transparent 160deg);
  -webkit-mask: radial-gradient(circle at 50% 60%, #000 62%, transparent 63%);
          mask: radial-gradient(circle at 50% 60%, #000 62%, transparent 63%);
}
.hero .container { position: relative; z-index: 2; display: flex; flex-direction: column;
  align-items: center; text-align: center; gap: clamp(1.75rem, 5vw, 3rem);
  padding: clamp(40px, 9vw, 72px) var(--gutter); }
.hero-copy { max-width: 640px; }
.hero .eyebrow { color: var(--accent); }
.hero h1 { color: #fff; }
.hero h1 span { color: var(--gold); display: block; }
.hero .lead { color: #cfe0f8; margin-inline: auto; }
.hero-cta { justify-content: center; }
.hero-trust { justify-content: center; color: #cfe0f8; }
.hero-trust svg { color: var(--gold); }

/* Desktop: copy left, art right */
@media (min-width: 861px) {
  .hero .container { flex-direction: row-reverse; justify-content: space-between;
    text-align: left; gap: 3rem; padding: clamp(56px, 7vw, 96px) var(--gutter); }
  .hero-copy { flex: 1; }
  .hero .lead { margin-inline: 0; }
  .hero-cta, .hero-trust { justify-content: flex-start; }
  .hero-art { flex: none; }
}

/* Inner-page hero (compact, centered, no art) */
.hero--page .container { flex-direction: column; text-align: center;
  padding: clamp(40px, 7vw, 72px) var(--gutter); }
.hero--page .hero-copy { max-width: 780px; }
.hero--page .lead { margin-inline: auto; }
.hero--page .hero-cta { justify-content: center; }
.hero .lead a, .hero p a { color: #fff; text-decoration: underline; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.4rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.1rem; margin-top: 1.8rem; color: #dbe9fb; font-size: .92rem; }
.hero-trust span { display: inline-flex; align-items: center; gap: .4rem; }
.hero-trust svg { width: 18px; height: 18px; }

/* Hero art card — a "signature journey" glass card */
.hero-art { position: relative; width: min(380px, 84vw); }
.hero-card {
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.28);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-16);
  padding: 1.5rem; backdrop-filter: blur(6px); color: #fff;
}
.hero-card .badge { display: inline-flex; align-items: center; gap: .5rem; background: var(--grad-gold);
  color: #3a2a06; font-weight: 700; font-size: .78rem; letter-spacing: .5px; padding: .35rem .8rem;
  border-radius: 999px; }
.hero-card h3 { color: #fff; margin: 1rem 0 .4rem; font-size: 1.45rem; }
.hero-card p { color: #dbe9fb; font-size: .95rem; }
.hero-card ul { list-style: none; padding: 0; margin: 1rem 0 0; }
.hero-card li { display: flex; gap: .6rem; align-items: flex-start; padding: .35rem 0; color: #eaf3ff; font-size: .95rem; }
.hero-card li svg { width: 20px; height: 20px; color: var(--gold); flex: none; margin-top: 2px; }
.hero-card .hero-price { display: flex; align-items: baseline; gap: .4rem; margin-top: 1.1rem;
  padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.2); }
.hero-card .hero-price b { font-size: 1.7rem; color: #fff; }
.hero-card .hero-price span { color: #cfe0f8; font-size: .9rem; }

/* Decorative wave */
.hero-wave { position: absolute; left: 0; right: 0; bottom: -1px; z-index: 1; line-height: 0; color: #fff; }

/* ==========================================================================
   Trust ribbon
   ========================================================================== */
.ribbon { background: var(--grad-primary); color: #fff; }
.ribbon .container { display: flex; align-items: center; justify-content: center; gap: 1.5rem 2.5rem;
  flex-wrap: wrap; padding: 1rem 0; font-weight: 700; letter-spacing: .3px; text-align: center; }
.ribbon span { display: inline-flex; align-items: center; gap: .55rem; }
.ribbon svg { width: 22px; height: 22px; color: var(--gold); }

/* ==========================================================================
   Cards (tours / features)
   ========================================================================== */
.cards { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-2); display: flex; flex-direction: column;
  transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease;
}
.card:hover { box-shadow: var(--shadow-8); transform: translateY(-3px); border-color: #c4ddf2; }
.card--link { display: flex; color: inherit; }
.card--link:hover { text-decoration: none; }
.card .icon {
  width: 56px; height: 56px; border-radius: 12px; display: grid; place-items: center;
  background: var(--grad-ice); border: 1px solid var(--line); color: var(--blue); margin-bottom: 1rem;
}
.card .icon svg { width: 30px; height: 30px; }
.card-body { padding: 1.4rem 1.5rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.card h3 { color: var(--navy); margin-bottom: .4rem; }
.card p { color: var(--muted); margin: 0; font-size: .98rem; }

/* Tour card — image band + meta + price */
.tour-media { position: relative; aspect-ratio: 16 / 10; display: grid; place-items: center;
  color: #fff; background: var(--grad-navy); overflow: hidden; }
.tour-media svg.scene { width: 100%; height: 100%; display: block; }
.tour-media .tour-tag { position: absolute; top: .8rem; left: .8rem; background: var(--grad-gold);
  color: #3a2a06; font-weight: 700; font-size: .72rem; letter-spacing: .5px; text-transform: uppercase;
  padding: .3rem .7rem; border-radius: 999px; z-index: 2; }
.tour-meta { display: flex; flex-wrap: wrap; gap: .4rem 1rem; margin: 0 0 .7rem; color: var(--muted);
  font-size: .85rem; font-weight: 600; }
.tour-meta span { display: inline-flex; align-items: center; gap: .35rem; }
.tour-meta svg { width: 15px; height: 15px; color: var(--blue); }
.tour-foot { margin-top: auto; padding-top: 1rem; display: flex; align-items: center;
  justify-content: space-between; gap: .75rem; border-top: 1px solid var(--line); }
.price { display: flex; flex-direction: column; line-height: 1.1; }
.price b { font-size: 1.35rem; color: var(--navy); }
.price small { color: var(--muted); font-size: .74rem; text-transform: uppercase; letter-spacing: .5px; }
.card-link-more { color: var(--blue); font-weight: 700; display: inline-flex; align-items: center; gap: .3rem; }

/* ==========================================================================
   Destinations tiles
   ========================================================================== */
.dests { display: grid; gap: 1.1rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.dest { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 190px;
  display: flex; align-items: flex-end; color: #fff; box-shadow: var(--shadow-8);
  border: 1px solid var(--line); }
.dest .scene { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.dest::after { content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, transparent 30%, rgba(6,36,63,.82) 100%); }
.dest b { position: relative; z-index: 2; padding: 1rem 1.1rem; font-size: 1.15rem; font-weight: 700; }
.dest small { display: block; font-weight: 500; opacity: .85; font-size: .8rem; }

/* ==========================================================================
   Feature / why-book grid
   ========================================================================== */
.features { display: grid; gap: 1.5rem 2rem; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.feature { display: flex; gap: .9rem; align-items: flex-start; }
.feature .fi { width: 46px; height: 46px; border-radius: 10px; flex: none; display: grid;
  place-items: center; background: var(--grad-navy); color: #fff; }
.feature .fi svg { width: 24px; height: 24px; }
.feature h3 { font-size: 1.05rem; margin-bottom: .25rem; }
.feature p { margin: 0; color: var(--muted); font-size: .95rem; }

/* ==========================================================================
   Split / media block
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 5vw, 56px); align-items: center; }
.split--flip .split__media { order: 2; }
.split__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-16);
  background: var(--grad-navy); min-height: 340px; display: grid; place-items: center; color: #fff; }
.split__media .scene { width: 100%; height: 100%; }
.stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-top: 1.5rem; }
.stat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem 1.15rem; }
.stat b { display: block; font-size: 2rem; color: var(--blue); line-height: 1; }
.stat span { color: var(--muted); font-size: .9rem; }
@media (max-width: 760px) {
  .split { grid-template-columns: 1fr; }
  .split--flip .split__media { order: 0; }
}

/* Checklist */
.check { list-style: none; padding: 0; margin: 1rem 0; display: grid; gap: .6rem; }
.check li { display: flex; gap: .6rem; align-items: flex-start; }
.check svg { width: 22px; height: 22px; color: var(--ok); flex: none; margin-top: 2px; }

/* Itinerary timeline (tour detail pages) */
.itinerary { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: 0; }
.itinerary li { position: relative; padding: 0 0 1.6rem 2.4rem; border-left: 2px solid var(--line); }
.itinerary li:last-child { border-left-color: transparent; padding-bottom: 0; }
.itinerary li::before { content: ""; position: absolute; left: -9px; top: 2px; width: 16px; height: 16px;
  border-radius: 50%; background: var(--grad-primary); box-shadow: 0 0 0 4px var(--sky); }
.itinerary .day { font-size: .78rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--blue); }
.itinerary h3 { margin: .2rem 0 .35rem; }
.itinerary p { color: var(--muted); margin: 0; }

/* Include / exclude two-col */
.incl { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 2.5rem; }
@media (max-width: 620px) { .incl { grid-template-columns: 1fr; } }
.incl h3 { display: flex; align-items: center; gap: .5rem; }
.incl ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.incl li { display: flex; gap: .55rem; align-items: flex-start; color: var(--ink); }
.incl svg { width: 20px; height: 20px; flex: none; margin-top: 3px; }
.incl .yes svg { color: var(--ok); }
.incl .no svg { color: var(--err); }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.quotes { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.quote { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.5rem; box-shadow: var(--shadow-2); }
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: .5rem; }
.quote p { font-style: italic; color: var(--ink); }
.quote cite { font-style: normal; font-weight: 700; color: var(--navy); }
.quote cite span { display: block; font-weight: 500; color: var(--muted); font-size: .88rem; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band { position: relative; isolation: isolate; color: #fff; text-align: center;
  background: linear-gradient(120deg, rgba(6,36,63,.94), rgba(22,104,176,.90)); }
.cta-band h2 { color: #fff; }
.cta-band p { color: #cfe0f6; max-width: 54ch; margin-inline: auto; }
.cta-band .hero-cta { justify-content: center; }

/* ==========================================================================
   Contact / forms
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(24px, 4vw, 48px); }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }

.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 32px); box-shadow: var(--shadow-8); }
.field { margin-bottom: 1.15rem; }
.field label { display: block; font-weight: 600; margin-bottom: .4rem; color: var(--navy); }
.field label .req { color: var(--err); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; color: var(--ink); background: #fff;
  border: 1px solid #c5cfdb; border-radius: 6px; padding: .7rem .8rem;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(22,104,176,.18);
}
.field textarea { min-height: 130px; resize: vertical; }
.field.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field.row2 > div { margin: 0; }
@media (max-width: 520px) { .field.row2 { grid-template-columns: 1fr; } }

.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: var(--err); }
.field .error-text { color: var(--err); font-size: .85rem; margin-top: .3rem; min-height: 1em; display: none; }
.field.is-invalid .error-text { display: block; }

.form-status { border-radius: 6px; padding: .85rem 1rem; margin-bottom: 1rem; font-weight: 600; display: none; }
.form-status.is-success { display: block; background: #e7f5ee; color: var(--ok); border: 1px solid #b6e0c8; }
.form-status.is-error   { display: block; background: #fdecee; color: var(--err); border: 1px solid #f5c2c7; }

.info-card { background: var(--grad-navy); color: #dbe6f5; border-radius: var(--radius-lg);
  padding: clamp(20px,3vw,32px); box-shadow: var(--shadow-8); }
.info-card h3 { color: #fff; }
.info-list { list-style: none; padding: 0; margin: 1rem 0 0; display: grid; gap: 1rem; }
.info-list li { display: flex; gap: .8rem; align-items: flex-start; }
.info-list svg { width: 22px; height: 22px; color: var(--gold); flex: none; margin-top: 3px; }
.info-list a { color: #fff; }
.info-list b { color: #fff; display: block; }
.hours { list-style: none; padding: 0; margin: .5rem 0 0; }
.hours li { display: flex; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.12);
  padding: .35rem 0; font-size: .95rem; }
.hours .em { color: var(--gold); font-weight: 700; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy) 100%); color: #a9bdd8; font-size: .95rem; }
.site-footer .container { padding: clamp(40px, 6vw, 64px) var(--gutter) 1.5rem; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
.site-footer h3 { color: #fff; font-size: .95rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1rem; }
.site-footer a { color: #cddcf0; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.footer-brand .brand { color: #fff; margin-bottom: 1rem; }
.footer-brand .brand small { color: var(--gold); }
.footer-brand p { max-width: 34ch; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 2.5rem; padding-top: 1.25rem;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .85rem; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Photographic heroes & bands (Adobe stock, responsive + optimised)
   Mobile-first: a smaller 800px image is swapped in on narrow screens so
   phones never download the large desktop version.
   ========================================================================== */
.hero--photo {
  background-image:
    linear-gradient(115deg, rgba(6,36,63,.86) 0%, rgba(11,47,82,.55) 58%, rgba(6,36,63,.74) 100%),
    url("../assets/img/photos/coast-hero-1920.jpg");
  background-size: cover; background-position: center;
}
.hero--photo::after { display: none; }         /* drop the lotus watermark over a photo */
@media (max-width: 700px) {
  .hero--photo {
    background-image:
      linear-gradient(160deg, rgba(6,36,63,.86) 0%, rgba(11,47,82,.66) 100%),
      url("../assets/img/photos/coast-hero-800.jpg");
  }
}

/* Inner-page photo heroes (contact, tours) — set via inline --img custom prop */
.hero--photo-page {
  background-image:
    linear-gradient(120deg, rgba(6,36,63,.84), rgba(11,47,82,.62)),
    var(--img-lg);
  background-size: cover; background-position: center;
}
.hero--photo-page::after { display: none; }
@media (max-width: 700px) {
  .hero--photo-page {
    background-image:
      linear-gradient(150deg, rgba(6,36,63,.86), rgba(11,47,82,.66)),
      var(--img-sm);
  }
}

/* CTA band over a photo */
.cta-band--photo {
  background-image:
    linear-gradient(120deg, rgba(6,36,63,.88), rgba(22,104,176,.80)),
    url("../assets/img/photos/beach-1600.jpg");
  background-size: cover; background-position: center;
}
@media (max-width: 700px) {
  .cta-band--photo {
    background-image:
      linear-gradient(120deg, rgba(6,36,63,.9), rgba(22,104,176,.82)),
      url("../assets/img/photos/beach-800.jpg");
  }
}

/* Photos inside media frames should always cover, never letterbox */
.split__media img, .tour-media img, .dest .scene { object-fit: cover; }
.split__media { padding: 0; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
