/* =====================================================================
   HolidayLandmark — homepage styles
   Local tourism marketplace. Design tokens derived from the product docs:
   warm ivory base · deep teal (trust) · coral (action) · sand/gold accents.
   Mobile-first, accessible (WCAG AA targeted), zero external requests.
   ===================================================================== */

/* ---------- Fonts (bundled locally, no CDN) ---------- */
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400 800;        /* variable */
  font-display: swap;
  src: url('../fonts/plus-jakarta-sans-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 400 700;        /* variable */
  font-display: swap;
  src: url('../fonts/fraunces-latin.woff2') format('woff2');
}

/* ---------- Design tokens ---------- */
:root {
  /* Brand */
  --teal:        #0E6E63;
  --teal-deep:   #0A4A45;
  --teal-ink:    #073B36;
  --teal-bright: #12877A;
  --coral:       #FF6A3D;
  --coral-deep:  #E8521F;
  --gold:        #F6B24B;

  /* Neutrals */
  --ink:        #0A2B2B;
  --text:       #243B39;
  --muted:      #5C726F;
  --bg:         #FBF8F2;
  --bg-alt:     #F3EFE6;
  --surface:    #FFFFFF;
  --line:       #E7E0D3;
  --line-soft:  rgba(10, 43, 43, 0.08);

  /* Status (paired always with text/icon, never colour-only) */
  --success: #1E8A5B;
  --warning: #B5791A;

  /* Radii */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 30px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(10,43,43,.06), 0 2px 6px rgba(10,43,43,.05);
  --shadow-md: 0 8px 24px rgba(10,43,43,.08), 0 2px 8px rgba(10,43,43,.05);
  --shadow-lg: 0 24px 60px rgba(7,59,54,.16), 0 6px 18px rgba(7,59,54,.08);

  /* Layout */
  --maxw: 1200px;
  --gutter: clamp(1rem, 4vw, 2.5rem);
  --header-h: 72px;

  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-deep); }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.12; font-weight: 700; letter-spacing: -0.02em; }

/* Visible focus everywhere */
:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Skip link */
.skip-link {
  position: absolute; left: 16px; top: -60px;
  background: var(--ink); color: #fff; padding: 12px 18px;
  border-radius: var(--r-sm); z-index: 200; font-weight: 600;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 16px; color: #fff; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section--tight { padding-block: clamp(2.5rem, 6vw, 4.5rem); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal); margin-bottom: .9rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}
.section-head { max-width: 60ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.85rem, 4.2vw, 2.9rem);
  letter-spacing: -0.01em;
}
.section-head p { margin-top: .9rem; color: var(--muted); font-size: 1.06rem; max-width: 56ch; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow::before { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-weight: 700; font-size: .98rem; line-height: 1;
  padding: .95rem 1.5rem; border-radius: var(--r-pill);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background-color .18s var(--ease);
  white-space: nowrap; min-height: 48px;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--coral); color: #fff; box-shadow: 0 8px 20px rgba(255,106,61,.32); }
.btn--primary:hover { background: var(--coral-deep); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(255,106,61,.38); }
.btn--ghost { background: rgba(255,255,255,.14); color: #fff; border: 1.5px solid rgba(255,255,255,.45); }
.btn--ghost:hover { background: rgba(255,255,255,.24); color: #fff; transform: translateY(-2px); }
.btn--solid { background: var(--teal); color: #fff; }
.btn--solid:hover { background: var(--teal-deep); color: #fff; transform: translateY(-2px); }
.btn--outline { background: var(--surface); color: var(--teal-deep); border: 1.5px solid var(--line); }
.btn--outline:hover { border-color: var(--teal); color: var(--teal-deep); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn--lg { padding: 1.1rem 1.9rem; font-size: 1.04rem; }

.textlink { font-weight: 700; display: inline-flex; align-items: center; gap: .4rem; }
.textlink svg { width: 16px; height: 16px; transition: transform .18s var(--ease); }
.textlink:hover svg { transform: translateX(4px); }

/* =====================================================================
   HEADER
   ===================================================================== */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,248,242,.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background-color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.header.is-scrolled {
  background: rgba(251,248,242,.92);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(10,43,43,.06);
}
.header__bar { display: flex; align-items: center; gap: 1rem; height: var(--header-h); }
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand svg { height: 34px; width: auto; }
.brand:focus-visible { outline-offset: 4px; }

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: .35rem; }
.nav__link {
  display: inline-block; padding: .55rem .8rem; border-radius: var(--r-pill);
  font-weight: 600; font-size: .95rem; color: var(--text);
  transition: background-color .15s var(--ease), color .15s var(--ease);
}
.nav__link:hover, .nav__link[aria-current="page"] { background: rgba(14,110,99,.1); color: var(--teal-deep); }
.header__cta { display: inline-flex; align-items: center; gap: .6rem; margin-left: .5rem; }

.hamburger {
  display: none; width: 46px; height: 46px; border-radius: var(--r-sm);
  margin-left: auto; align-items: center; justify-content: center;
  border: 1px solid var(--line); background: var(--surface);
}
.hamburger span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; position: relative; transition: transform .25s var(--ease), opacity .2s var(--ease); }
.hamburger span + span { margin-top: 5px; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: 99;
  background: var(--bg);
  padding: calc(var(--header-h) + 1rem) var(--gutter) 2rem;
  display: flex; flex-direction: column; gap: .25rem;
  transform: translateX(100%); transition: transform .3s var(--ease);
  visibility: hidden; overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); visibility: visible; }
.mobile-nav a.nav__link { font-size: 1.15rem; padding: .9rem .25rem; border-radius: var(--r-sm); border-bottom: 1px solid var(--line-soft); }
.mobile-nav .btn { margin-top: 1.25rem; }
.scroll-lock { overflow: hidden; }

/* =====================================================================
   HERO
   ===================================================================== */
.hero { position: relative; overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(120% 90% at 85% 0%, rgba(246,178,75,.20), transparent 55%),
    radial-gradient(120% 100% at 5% 8%, rgba(18,135,122,.18), transparent 50%),
    linear-gradient(180deg, #F6FBF7 0%, var(--bg) 60%);
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 3rem);
  padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(2.5rem, 5vw, 4rem);
}
.hero__chip {
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--surface); border: 1px solid var(--line);
  padding: .45rem .9rem .45rem .55rem; border-radius: var(--r-pill);
  font-size: .82rem; font-weight: 600; color: var(--teal-deep);
  box-shadow: var(--shadow-sm); margin-bottom: 1.25rem;
}
.hero__chip b { color: var(--coral-deep); }
.hero__chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 3px rgba(30,138,91,.18); }

.hero h1 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.4rem, 7vw, 4.3rem); line-height: 1.04;
  letter-spacing: -0.02em; color: var(--ink); max-width: 16ch;
}
.hero h1 .accent {
  background: linear-gradient(105deg, var(--teal-bright), var(--teal) 50%, var(--coral));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__lede { margin-top: 1.25rem; font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--text); max-width: 52ch; }
.hero__tagline { margin-top: .75rem; font-weight: 700; color: var(--teal-deep); letter-spacing: .01em; }

/* Discovery search */
.discovery {
  margin-top: 1.9rem; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); padding: .7rem;
  max-width: 640px;
}
.discovery__row { display: grid; grid-template-columns: 1fr; gap: .5rem; }
.discovery__field { position: relative; display: flex; flex-direction: column; }
.discovery__field label {
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); padding: .55rem .9rem 0 2.5rem;
}
.discovery__field .ico {
  position: absolute; left: .85rem; top: 50%; transform: translateY(-2px);
  width: 18px; height: 18px; color: var(--teal); pointer-events: none;
}
.discovery__field input, .discovery__field select {
  appearance: none; -webkit-appearance: none;
  font: inherit; font-weight: 600; color: var(--ink);
  border: 0; background: transparent; padding: .15rem .9rem .55rem 2.5rem; width: 100%;
  border-radius: var(--r-md);
}
.discovery__field select { cursor: pointer; }
.discovery__field input::placeholder { color: #9aa9a6; font-weight: 500; }
.discovery__field:focus-within { background: #F7FBF9; border-radius: var(--r-md); }
.discovery__divider { display: none; }
.discovery .btn { width: 100%; margin-top: .35rem; }

.hero__trust { margin-top: 1.4rem; display: flex; flex-wrap: wrap; gap: .5rem .9rem; }
.trust-pill {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .86rem; font-weight: 600; color: var(--text);
  background: rgba(255,255,255,.6); border: 1px solid var(--line);
  padding: .4rem .8rem; border-radius: var(--r-pill);
}
.trust-pill svg { width: 16px; height: 16px; color: var(--teal); }

/* Hero artwork */
.hero__art { position: relative; min-height: 280px; }
.hero__art svg { width: 100%; height: auto; border-radius: var(--r-xl); box-shadow: var(--shadow-lg); }
.hero__floatcard {
  position: absolute; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-md); box-shadow: var(--shadow-md);
  padding: .7rem .9rem; display: flex; align-items: center; gap: .6rem;
  font-size: .82rem; font-weight: 600; color: var(--ink);
}
.hero__floatcard .badge { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; flex-shrink: 0; }
.hero__floatcard small { display: block; color: var(--muted); font-weight: 600; font-size: .72rem; }
.hero__floatcard--a { top: 12%; right: -4px; }
.hero__floatcard--b { bottom: 10%; left: -6px; }

/* logo strip / qualitative trust band */
.assurance { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.assurance__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem 1rem; padding-block: 1.75rem; }
.assurance__item { display: flex; gap: .75rem; align-items: flex-start; }
.assurance__item svg { width: 26px; height: 26px; color: var(--teal); flex-shrink: 0; }
.assurance__item b { display: block; color: var(--ink); font-size: .98rem; }
.assurance__item span { font-size: .86rem; color: var(--muted); }

/* =====================================================================
   CATEGORY GRID
   ===================================================================== */
.cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.cat-card {
  position: relative; display: flex; flex-direction: column; gap: .5rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 1.25rem; transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(14,110,99,.4); }
.cat-card__ico {
  width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(18,135,122,.14), rgba(246,178,75,.16)); color: var(--teal-deep);
}
.cat-card__ico svg { width: 24px; height: 24px; }
.cat-card b { color: var(--ink); font-size: 1.02rem; }
.cat-card span { font-size: .85rem; color: var(--muted); }
.cat-card .arrow { position: absolute; top: 1.1rem; right: 1.1rem; color: var(--muted); opacity: 0; transition: opacity .2s var(--ease), transform .2s var(--ease); }
.cat-card:hover .arrow { opacity: 1; transform: translate(2px,-2px); }
.cat-card .arrow svg { width: 16px; height: 16px; }

/* =====================================================================
   FEATURE / SPLIT SECTIONS
   ===================================================================== */
.split { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
.split--alt { background: var(--bg-alt); }
.feature-list { display: grid; gap: 1.1rem; margin-top: 1.5rem; }
.feature-list li { display: flex; gap: .85rem; align-items: flex-start; }
.feature-list .tick { width: 28px; height: 28px; border-radius: 9px; background: rgba(14,110,99,.12); color: var(--teal-deep); display: grid; place-items: center; flex-shrink: 0; margin-top: 2px; }
.feature-list .tick svg { width: 16px; height: 16px; }
.feature-list b { color: var(--ink); }
.feature-list p { font-size: .92rem; color: var(--muted); margin-top: 2px; }

/* Experience (trip) cards */
.exp-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.exp-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; transition: transform .2s var(--ease), box-shadow .2s var(--ease);
  display: flex; flex-direction: column;
}
.exp-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.exp-card__media { position: relative; aspect-ratio: 16 / 10; }
.exp-card__media svg { width: 100%; height: 100%; object-fit: cover; }
.exp-card__tag {
  position: absolute; top: .8rem; left: .8rem;
  background: rgba(7,59,54,.82); color: #fff; backdrop-filter: blur(4px);
  font-size: .74rem; font-weight: 700; letter-spacing: .03em;
  padding: .35rem .7rem; border-radius: var(--r-pill);
}
.exp-card__body { padding: 1.1rem 1.15rem 1.25rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.exp-card__loc { font-size: .82rem; font-weight: 700; color: var(--teal); display: inline-flex; align-items: center; gap: .35rem; }
.exp-card__loc svg { width: 14px; height: 14px; }
.exp-card h3 { font-size: 1.12rem; font-weight: 700; }
.exp-card p { font-size: .9rem; color: var(--muted); }
.exp-card__meta { margin-top: auto; padding-top: .85rem; border-top: 1px solid var(--line-soft); display: flex; align-items: center; justify-content: space-between; gap: .5rem; }
.exp-card__org { display: flex; align-items: center; gap: .55rem; font-size: .82rem; color: var(--text); font-weight: 600; }
.exp-card__avatar { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-weight: 800; font-size: .8rem; }
.exp-card__rating { display: inline-flex; align-items: center; gap: .3rem; font-weight: 700; font-size: .85rem; color: var(--ink); }
.exp-card__rating svg { width: 15px; height: 15px; color: var(--gold); }
.badge-verified { display: inline-flex; align-items: center; gap: .3rem; font-size: .72rem; font-weight: 700; color: var(--success); }
.badge-verified svg { width: 14px; height: 14px; }

/* =====================================================================
   DESTINATIONS / COUNTRIES
   ===================================================================== */
.country-row { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2rem; }
.country-chip {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--surface); border: 1px solid var(--line);
  padding: .55rem 1rem; border-radius: var(--r-pill); font-weight: 700; font-size: .92rem; color: var(--ink);
  transition: transform .18s var(--ease), border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.country-chip:hover { transform: translateY(-2px); border-color: var(--teal); box-shadow: var(--shadow-sm); color: var(--teal-deep); }
.country-chip .flag { font-size: 1.05rem; line-height: 1; }

.dest-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.dest-card {
  position: relative; border-radius: var(--r-lg); overflow: hidden; min-height: 200px;
  display: flex; align-items: flex-end; color: #fff;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.dest-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); color: #fff; }
.dest-card svg.bg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.dest-card::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, transparent 30%, rgba(7,40,37,.78)); }
.dest-card__label { position: relative; z-index: 2; padding: 1.1rem 1.2rem; width: 100%; }
.dest-card__label b { font-size: 1.18rem; font-weight: 800; display: block; }
.dest-card__label span { font-size: .82rem; opacity: .9; font-weight: 600; }
.dest-card--wide { grid-column: span 2; min-height: 170px; }

/* =====================================================================
   HOW IT WORKS — journey path
   ===================================================================== */
.journey { position: relative; display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.journey__path { display: none; }
.step {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 1.6rem 1.4rem; box-shadow: var(--shadow-sm);
}
.step__num {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: #fff;
  background: linear-gradient(135deg, var(--teal-bright), var(--teal-deep)); margin-bottom: 1rem;
}
.step h3 { font-size: 1.18rem; }
.step p { margin-top: .5rem; color: var(--muted); font-size: .95rem; }
.step__note { margin-top: .9rem; font-size: .82rem; font-weight: 600; color: var(--teal-deep); display: inline-flex; align-items: center; gap: .4rem; }
.step__note svg { width: 15px; height: 15px; }

/* Direct-payment note — calm amber/info box (per docs, never scary red) */
.payment-note {
  margin-top: 2rem; display: flex; gap: .85rem; align-items: flex-start;
  background: #FCF6E8; border: 1px solid #EBD9AE; border-left: 4px solid var(--gold);
  border-radius: var(--r-md); padding: 1rem 1.15rem; color: #6c5418;
}
.payment-note svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--warning); margin-top: 1px; }
.payment-note b { color: #5b460f; }
.payment-note p { font-size: .9rem; }

/* =====================================================================
   TRUST & SAFETY
   ===================================================================== */
.trust-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.trust-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 1.4rem; display: flex; flex-direction: column; gap: .6rem;
}
.trust-card__ico { width: 46px; height: 46px; border-radius: 13px; background: rgba(14,110,99,.1); color: var(--teal-deep); display: grid; place-items: center; }
.trust-card__ico svg { width: 24px; height: 24px; }
.trust-card b { color: var(--ink); font-size: 1.04rem; }
.trust-card p { font-size: .9rem; color: var(--muted); }
.trust-card .chips { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .25rem; }
.trust-card .chips span { font-size: .74rem; font-weight: 700; color: var(--teal-deep); background: rgba(14,110,99,.08); padding: .25rem .6rem; border-radius: var(--r-pill); }

/* =====================================================================
   COMMUNITY + BLOG
   ===================================================================== */
.community {
  background: linear-gradient(135deg, var(--teal-deep), var(--teal-ink));
  color: #fff; border-radius: var(--r-xl); padding: clamp(2rem, 5vw, 3.5rem);
  position: relative; overflow: hidden;
}
.community::before {
  content: ""; position: absolute; right: -60px; top: -60px; width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(246,178,75,.35), transparent 70%); pointer-events: none;
}
.community h2 { color: #fff; font-family: var(--font-display); font-weight: 600; font-size: clamp(1.7rem, 4vw, 2.5rem); }
.community p { color: rgba(255,255,255,.85); margin-top: .9rem; max-width: 54ch; }
.community__cta { margin-top: 1.6rem; display: flex; flex-wrap: wrap; gap: .8rem; }
.community__stats { display: flex; flex-wrap: wrap; gap: 1.5rem 2.5rem; margin-top: 2rem; }
.community__stat b { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; display: block; }
.community__stat span { font-size: .85rem; color: rgba(255,255,255,.75); }

.blog-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.post-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.post-card__media { aspect-ratio: 16 / 9; display: block; position: relative; overflow: hidden; }
.post-card__media svg { width: 100%; height: 100%; }
/* Generated gradient cover for live posts without a featured image */
.post-card__media[style*="--c1"] { background: linear-gradient(135deg, var(--c1, #1E7A86), var(--c2, #0A4A45)); display: grid; place-items: center; }
.post-card__media::after { content: ""; position: absolute; inset: 0; background:
  radial-gradient(120% 120% at 85% -10%, rgba(255,255,255,.22), transparent 55%); pointer-events: none; }
.post-card__mono {
  font-family: var(--font-display); font-weight: 700; font-size: 3.4rem; line-height: 1;
  color: rgba(255,255,255,.92); position: relative; z-index: 1;
  text-shadow: 0 2px 14px rgba(0,0,0,.18);
}
.post-card:hover .post-card__media svg, .post-card:hover .post-card__mono { transform: scale(1.04); transition: transform .4s var(--ease); }
.post-card__body { padding: 1.1rem 1.15rem 1.3rem; display: flex; flex-direction: column; height: calc(100% - 0px); }
.post-card__cat { font-size: .74rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--coral-deep); }
.post-card h3 { font-size: 1.06rem; margin-top: .45rem; line-height: 1.3; }
.post-card h3 a { color: var(--ink); }
.post-card h3 a:hover { color: var(--teal-deep); }
.post-card p { font-size: .88rem; color: var(--muted); margin-top: .5rem;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.post-card .textlink { margin-top: .9rem; font-size: .9rem; }
.post-card__foot { margin-top: auto; padding-top: 1rem; display: flex; align-items: center; justify-content: space-between; gap: .5rem; flex-wrap: wrap; }
.post-card__foot time { font-size: .8rem; font-weight: 600; color: var(--muted); }
.post-card__foot .textlink { margin-top: 0; font-size: .82rem; }
.blog-grid--12 .post-card { height: 100%; }

/* ---------- Live forum discussions (2 cols × 10 rows) ---------- */
.forum-grid { display: grid; grid-template-columns: 1fr; gap: .8rem; }
.forum-post {
  display: flex; align-items: center; gap: .9rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 1rem 1.05rem; color: var(--text);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), border-color .18s var(--ease);
}
.forum-post:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(14,110,99,.4); color: var(--text); }
.forum-post__q { flex-shrink: 0; width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(18,135,122,.14), rgba(246,178,75,.18)); color: var(--teal-deep); }
.forum-post__q svg { width: 22px; height: 22px; }
.forum-post__main { display: flex; flex-direction: column; gap: .4rem; min-width: 0; flex: 1; }
.forum-post__title { font-weight: 700; color: var(--ink); font-size: .98rem; line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.forum-post:hover .forum-post__title { color: var(--teal-deep); }
.forum-post__meta { display: flex; flex-wrap: wrap; align-items: center; gap: .45rem .7rem; }
.forum-tag { font-size: .7rem; font-weight: 700; color: var(--teal-deep); background: rgba(14,110,99,.1);
  padding: .2rem .55rem; border-radius: var(--r-pill); white-space: nowrap; }
.forum-post__stat { display: inline-flex; align-items: center; gap: .3rem; font-size: .78rem; font-weight: 600; color: var(--muted); }
.forum-post__stat svg { width: 14px; height: 14px; color: var(--teal); }
.forum-post__go { flex-shrink: 0; color: var(--muted); opacity: 0; transition: opacity .18s var(--ease), transform .18s var(--ease); }
.forum-post__go svg { width: 18px; height: 18px; }
.forum-post:hover .forum-post__go { opacity: 1; transform: translateX(3px); }

/* =====================================================================
   TRAVEL TOOLS
   ===================================================================== */
.tools-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.tool-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 1.4rem; display: flex; gap: 1rem; align-items: flex-start;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.tool-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(14,110,99,.35); }
.tool-card__ico { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; flex-shrink: 0; background: linear-gradient(135deg, rgba(255,106,61,.16), rgba(246,178,75,.18)); color: var(--coral-deep); }
.tool-card__ico svg { width: 26px; height: 26px; }
.tool-card b { color: var(--ink); font-size: 1.05rem; display: inline-flex; align-items: center; gap: .4rem; }
.tool-card p { font-size: .88rem; color: var(--muted); margin-top: .35rem; }
.tool-card .textlink { margin-top: .7rem; font-size: .88rem; }
.ext-ico { width: 13px; height: 13px; opacity: .55; }

/* =====================================================================
   SUBPAGE: compact hero + breadcrumb
   ===================================================================== */
.page-hero { position: relative; overflow: hidden; }
.page-hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(120% 120% at 88% -10%, rgba(246,178,75,.20), transparent 55%),
    radial-gradient(110% 120% at 0% 0%, rgba(18,135,122,.18), transparent 52%),
    linear-gradient(180deg, #F6FBF7 0%, var(--bg) 70%);
}
.page-hero__inner { position: relative; z-index: 1; padding-block: clamp(2rem, 5vw, 3.5rem) clamp(1.75rem, 4vw, 2.75rem); max-width: 60ch; }
.page-hero h1 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.1rem, 5.5vw, 3.4rem); line-height: 1.06; letter-spacing: -0.02em; color: var(--ink);
}
.page-hero__lede { margin-top: 1rem; font-size: clamp(1.05rem, 2vw, 1.2rem); color: var(--text); max-width: 56ch; }
.page-hero__actions { margin-top: 1.6rem; display: flex; flex-wrap: wrap; gap: .8rem; }

.breadcrumb { font-size: .85rem; font-weight: 600; margin-bottom: 1rem; }
.breadcrumb ol { display: flex; flex-wrap: wrap; align-items: center; gap: .4rem; }
.breadcrumb li { display: inline-flex; align-items: center; gap: .4rem; color: var(--muted); }
.breadcrumb li:not(:last-child)::after { content: "/"; color: var(--line); margin-left: .4rem; }
.breadcrumb a { color: var(--teal); }
.breadcrumb [aria-current="page"] { color: var(--muted); }

/* =====================================================================
   SUBPAGE: long-form prose (terms / privacy / about)
   ===================================================================== */
.prose { max-width: 75ch; }
.prose > * + * { margin-top: 1.1rem; }
.prose h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.4rem, 3vw, 1.9rem); margin-top: 2.4rem; scroll-margin-top: 90px; }
.prose h3 { font-size: 1.15rem; margin-top: 1.6rem; color: var(--ink); }
.prose p, .prose li { color: var(--text); font-size: 1rem; line-height: 1.7; }
.prose ul { padding-left: 1.2rem; list-style: disc; display: grid; gap: .5rem; }
.prose ul li { padding-left: .2rem; }
.prose a { font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.prose strong { color: var(--ink); }
.doc-meta {
  display: inline-flex; align-items: center; gap: .5rem; font-size: .85rem; font-weight: 600; color: var(--teal-deep);
  background: rgba(14,110,99,.08); border: 1px solid var(--line); padding: .4rem .85rem; border-radius: var(--r-pill); margin-bottom: 1.5rem;
}
.toc { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: 1.25rem 1.4rem; margin-bottom: 2rem; }
.toc b { display: block; color: var(--ink); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .75rem; }
.toc ol { display: grid; gap: .45rem; padding-left: 1.1rem; }
.toc a { font-weight: 600; font-size: .95rem; }
.callout {
  display: flex; gap: .85rem; align-items: flex-start;
  background: #FCF6E8; border: 1px solid #EBD9AE; border-left: 4px solid var(--gold);
  border-radius: var(--r-md); padding: 1rem 1.15rem; color: #6c5418;
}
.callout svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--warning); margin-top: 1px; }
.callout p { color: #6c5418; font-size: .92rem; }

/* =====================================================================
   SUBPAGE: contact
   ===================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.contact-channels { display: grid; gap: 1rem; }
.contact-channel {
  display: flex; gap: 1rem; align-items: flex-start; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--r-md); padding: 1.25rem;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), border-color .18s var(--ease);
}
.contact-channel:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(14,110,99,.35); color: var(--text); }
.contact-channel__ico { width: 46px; height: 46px; border-radius: 13px; flex-shrink: 0; display: grid; place-items: center; background: linear-gradient(135deg, rgba(18,135,122,.14), rgba(246,178,75,.18)); color: var(--teal-deep); }
.contact-channel__ico svg { width: 24px; height: 24px; }
.contact-channel b { color: var(--ink); display: block; }
.contact-channel span { font-size: .9rem; color: var(--muted); }
.contact-channel a { font-weight: 700; }

.contact-form {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-md); padding: clamp(1.4rem, 4vw, 2rem);
}
.form-row { display: grid; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field label { font-size: .85rem; font-weight: 700; color: var(--ink); }
.field label .req { color: var(--coral-deep); }
.field input, .field select, .field textarea {
  font: inherit; color: var(--ink); background: var(--bg); border: 1.5px solid var(--line);
  border-radius: var(--r-sm); padding: .8rem .95rem; width: 100%; transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(14,110,99,.15); }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { outline: 2px solid transparent; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 1rem; }
.form-status { margin-top: 1rem; font-weight: 600; font-size: .92rem; }
.form-status[data-state="ok"] { color: var(--success); }

@media (min-width: 560px) { .form-row--2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.1fr; } }

/* =====================================================================
   FAQ
   ===================================================================== */
.faq { max-width: 820px; display: grid; gap: .8rem; }
.faq__item {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
  overflow: hidden; transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.faq__item[open] { border-color: rgba(14,110,99,.4); box-shadow: var(--shadow-sm); }
.faq__item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 1.25rem; cursor: pointer; list-style: none;
  font-weight: 700; color: var(--ink); font-size: 1.02rem; line-height: 1.4;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__icon { position: relative; width: 20px; height: 20px; flex-shrink: 0; }
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; top: 50%; left: 50%; width: 13px; height: 2.4px;
  background: var(--teal); border-radius: 2px; transform: translate(-50%,-50%);
  transition: transform .25s var(--ease);
}
.faq__icon::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq__item[open] .faq__icon::after { transform: translate(-50%,-50%) rotate(0); }
.faq__a { padding: 0 1.25rem 1.2rem; }
.faq__a p { color: var(--muted); font-size: .95rem; max-width: 70ch; }

/* =====================================================================
   ORGANIZER CTA BAND
   ===================================================================== */
.cta-band {
  position: relative; overflow: hidden; border-radius: var(--r-xl);
  background: linear-gradient(120deg, var(--coral) 0%, var(--coral-deep) 60%, #c7430f 100%);
  color: #fff; padding: clamp(2.25rem, 6vw, 4rem); text-align: center;
}
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 120% at 50% -10%, rgba(255,255,255,.22), transparent 60%); }
.cta-band__inner { position: relative; z-index: 1; max-width: 60ch; margin-inline: auto; }
.cta-band h2 { color: #fff; font-family: var(--font-display); font-weight: 600; font-size: clamp(1.8rem, 4.5vw, 2.8rem); }
.cta-band p { color: rgba(255,255,255,.92); margin-top: 1rem; font-size: 1.05rem; }
.cta-band .btn--primary { background: #fff; color: var(--coral-deep); box-shadow: 0 10px 30px rgba(0,0,0,.18); }
.cta-band .btn--primary:hover { background: #fff; color: #c7430f; }
.cta-band__actions { margin-top: 1.8rem; display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer { background: var(--ink); color: #cdd8d6; padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; margin-top: clamp(3rem,7vw,5rem); }
.footer a { color: #cdd8d6; }
.footer a:hover { color: #fff; }
.footer__top { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
.footer__brand svg { height: 34px; width: auto; }
.footer__brand p { margin-top: 1rem; color: #9fb1ae; font-size: .92rem; max-width: 42ch; }
.footer__brand .email { margin-top: 1.1rem; display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; color: #fff; }
.footer__brand .email svg { width: 17px; height: 17px; color: var(--gold); }
.footer__social { display: flex; gap: .6rem; margin-top: 1.4rem; }
.footer__social a { width: 42px; height: 42px; border-radius: 12px; border: 1px solid rgba(255,255,255,.16); display: grid; place-items: center; transition: background-color .18s var(--ease), transform .18s var(--ease); }
.footer__social a:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.footer__social svg { width: 19px; height: 19px; color: #e6eeed; }
.footer__cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; }
.footer__col h4 { color: #fff; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem; font-weight: 700; }
.footer__col li { margin-bottom: .65rem; }
.footer__col a { font-size: .92rem; }
.footer__bottom {
  margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-direction: column; gap: 1rem; align-items: flex-start;
  font-size: .85rem; color: #8fa3a0;
}
.footer__bottom nav { display: flex; flex-wrap: wrap; gap: .35rem 1.1rem; }

/* =====================================================================
   SCROLL REVEAL
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (min-width: 600px) {
  .discovery__row { grid-template-columns: 1fr 1fr; }
  .discovery .btn { grid-column: span 2; }
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .forum-grid { grid-template-columns: repeat(2, 1fr); }
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
  .assurance__grid { grid-template-columns: repeat(4, 1fr); }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .dest-card--wide { grid-column: span 2; }
}

@media (min-width: 768px) {
  .journey { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1.3fr 2fr; }
  .footer__cols { grid-template-columns: repeat(4, 1fr); }
  .footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; }
  .dest-grid { grid-template-columns: repeat(3, 1fr); }
  .dest-card--wide { grid-column: span 1; }
  .dest-card--feature { grid-column: span 2; grid-row: span 2; min-height: 420px; }
}

@media (min-width: 920px) {
  .hero__inner { grid-template-columns: 1.05fr .95fr; align-items: center; }
  .split { grid-template-columns: 1fr 1fr; }
  .split--media-first .split__media { order: -1; }
  .cat-grid { grid-template-columns: repeat(4, 1fr); }
  .exp-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
  .tools-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .discovery__row { grid-template-columns: 1fr 1fr auto; }
  .discovery .btn { grid-column: auto; width: auto; padding-inline: 1.8rem; margin-top: 0; align-self: stretch; }
  .discovery__field--btn { display: flex; align-items: stretch; }
}

@media (max-width: 919px) {
  .nav, .header__cta { display: none; }
  .hamburger { display: flex; }
}

@media (min-width: 1100px) {
  .journey__path {
    display: block; position: absolute; top: 32px; left: 8%; right: 8%; z-index: 0; height: 2px;
  }
  .journey__path svg { width: 100%; height: 60px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .float-anim { animation: none !important; }
}

/* Gentle float for hero cards (disabled under reduced motion) */
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
.float-anim { animation: floaty 6s ease-in-out infinite; }
.float-anim--slow { animation-duration: 8s; }

/* print niceties */
@media print { .header, .hamburger, .mobile-nav, .hero__art, .cta-band { box-shadow: none; } }
