/* ============================================================
   Adventure Vacations — Prototype
   Built on the Kemp-IT framework: pages → panels → cards
   Palette: expedition pine · terracotta · brass gold · warm parchment
   (a deliberately warm, vintage-explorer counterpart to Holt's
    cool coastal navy/teal so the two sister sites read distinct)
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Brand */
  --pine:        #1f4d3e;
  --pine-deep:   #133026;
  --clay:        #c25a35;   /* terracotta — primary accent / CTA */
  --clay-soft:   #d8835c;
  --clay-light:  #ecb78f;
  --gold:        #c7943f;
  --gold-light:  #e6cd96;
  --sage:        #6f9483;

  /* Neutrals (warm) */
  --ink:         #21302a;
  --ink-soft:    #54635b;
  --paper:       #ffffff;
  --mist:        #f6f2ea;
  --mist-2:      #ece4d4;
  --line:        #e4ddcc;

  /* Type */
  --font-head: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Metrics */
  --maxw: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(19, 48, 38, .07);
  --shadow:    0 14px 38px rgba(19, 48, 38, .15);
  --shadow-lg: 0 30px 70px rgba(10, 28, 22, .32);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; padding: 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.08; color: var(--pine); letter-spacing: 0; }
h1 { font-size: clamp(2.7rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2.1rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.35rem, 2.1vw, 1.75rem); }
p { color: var(--ink-soft); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--ink-soft); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 700;
  font-size: .76rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--clay);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold); border-radius: 2px; }
.panel--dark .eyebrow { color: var(--gold-light); }
.panel--dark .eyebrow::before { background: var(--clay); }

.script-accent { font-style: italic; color: var(--clay); font-weight: 600; }
.panel--dark .script-accent { color: var(--clay-light); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .85rem 1.7rem; border-radius: 999px;
  font-weight: 700; font-size: .92rem; letter-spacing: .01em;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--clay); color: #fff; box-shadow: 0 8px 20px rgba(194,90,53,.32); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(194,90,53,.42); background: #ad4d2c; }
.btn--solid { background: var(--pine); color: #fff; }
.btn--solid:hover { background: var(--pine-deep); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--pine); border: 1.5px solid var(--line); }
.btn--ghost:hover { border-color: var(--clay); color: var(--clay); }
.btn--light { background: rgba(255,255,255,.14); color: #fff; border: 1.5px solid rgba(255,255,255,.55); backdrop-filter: blur(4px); }
.btn--light:hover { background: #fff; color: var(--pine); }
.btn--gold { background: var(--gold); color: var(--pine-deep); }
.btn--gold:hover { background: #b3812f; transform: translateY(-2px); }

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

/* ============================================================
   HEADER  —  top bar + masthead + always-on drawer
   ============================================================ */
.site-header { position: sticky; top: 0; z-index: 60; }

.topbar {
  background: var(--pine-deep); color: #cfe0d6;
  font-size: .82rem;
}
.topbar__inner {
  max-width: var(--maxw); margin: 0 auto; padding: .5rem var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.topbar a { display: inline-flex; align-items: center; gap: .45rem; color: #cfe0d6; transition: color .2s; }
.topbar a:hover { color: #fff; }
.topbar svg { width: 15px; height: 15px; }
.topbar__contact { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.topbar__social { display: flex; gap: .6rem; }
.topbar__social a {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,.08); justify-content: center;
}
.topbar__social a:hover { background: var(--clay); }
.topbar__social svg { width: 14px; height: 14px; }

.masthead {
  background: rgba(255,255,255,.93);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.masthead__inner {
  max-width: var(--maxw); margin: 0 auto; padding: .55rem var(--gutter);
  display: flex; align-items: center; gap: 1rem;
}
.hamburger {
  display: inline-flex; align-items: center; gap: .7rem;
  padding: .6rem .95rem; border-radius: 999px;
  background: var(--pine); color: #fff; font-weight: 700; font-size: .9rem;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.hamburger:hover { background: var(--pine-deep); transform: translateY(-1px); }
.hamburger__bars { display: grid; gap: 4px; width: 20px; }
.hamburger__bars span { height: 2px; background: currentColor; border-radius: 2px; display: block; }
.hamburger__label { letter-spacing: .04em; }

.brand { display: flex; align-items: center; gap: .9rem; }
.brand img { height: 60px; width: auto; border-radius: 6px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--font-head); font-weight: 700; font-size: 1.55rem; color: var(--pine); white-space: nowrap; }
.brand__tag { font-size: .64rem; letter-spacing: .26em; text-transform: uppercase; color: var(--clay); margin-top: 4px; font-family: var(--font-body); font-weight: 700; }

.masthead__right { margin-left: auto; display: flex; align-items: center; gap: .85rem; }
.masthead__cta { display: inline-flex; }

/* Drawer (half-page, always on) ------------------------- */
.drawer-overlay {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(10, 28, 22, .55); backdrop-filter: blur(3px);
  opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s;
}
.drawer {
  position: fixed; top: 0; right: 0; left: auto; z-index: 100;
  width: min(440px, 88vw); height: 100dvh;
  background: linear-gradient(170deg, var(--pine) 0%, var(--pine-deep) 100%);
  color: #e7efe9;
  transform: translateX(104%);
  transition: transform .42s var(--ease);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-lg);
}
body.nav-open { overflow: hidden; }
body.nav-open .drawer { transform: translateX(0); }
body.nav-open .drawer-overlay { opacity: 1; visibility: visible; }

.drawer__head {
  padding: 1.6rem 1.8rem 1.4rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.drawer__brand { display: flex; flex-direction: column; gap: .15rem; }
.drawer__brand span { font-family: var(--font-head); font-size: 1.5rem; color: #fff; font-weight: 700; line-height: 1; }
.drawer__brand small { font-size: .62rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold-light); font-family: var(--font-body); font-weight: 700; }
.drawer__close {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.1); display: inline-flex; align-items: center; justify-content: center;
  transition: background .25s, transform .25s; flex: none;
}
.drawer__close:hover { background: var(--clay); transform: rotate(90deg); }
.drawer__close svg { width: 20px; height: 20px; }

.drawer__nav { flex: 1; overflow-y: auto; padding: 1rem .9rem; }
.drawer__nav > a, .drawer__group > a {
  display: flex; align-items: center; justify-content: space-between;
  padding: .72rem 1rem; border-radius: 12px;
  font-family: var(--font-head); font-size: 1.4rem; font-weight: 600; color: #eaf2ec;
  transition: background .22s var(--ease), color .22s, padding-left .22s var(--ease);
}
.drawer__nav a .chev { width: 18px; height: 18px; opacity: 0; transform: translateX(-6px); transition: .25s var(--ease); color: var(--gold); flex: none; }
.drawer__nav > a:hover, .drawer__nav a.is-active, .drawer__group > a:hover {
  background: rgba(255,255,255,.08); color: #fff; padding-left: 1.35rem;
}
.drawer__nav > a:hover .chev, .drawer__nav a.is-active .chev, .drawer__group > a:hover .chev { opacity: 1; transform: translateX(0); }
.drawer__nav a.is-active { color: var(--gold-light); }
/* Sub links (Favorite Trips / Vacations groups) */
.drawer__sub { display: grid; padding: .1rem .4rem .5rem 1.5rem; }
.drawer__sub a {
  display: block; padding: .42rem .7rem; border-radius: 9px;
  font-size: .92rem; color: #b9ccc1; font-weight: 600;
  transition: color .2s, background .2s, padding-left .2s;
}
.drawer__sub a:hover { color: #fff; background: rgba(255,255,255,.06); padding-left: 1rem; }

.drawer__foot {
  padding: 1.4rem 1.8rem 1.8rem;
  border-top: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
}
.drawer__foot h4 { color: #fff; font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; font-family: var(--font-body); font-weight: 700; margin-bottom: .9rem; }
.drawer__foot ul { display: grid; gap: .6rem; }
.drawer__foot li { display: flex; align-items: flex-start; gap: .7rem; font-size: .92rem; color: #cfe0d6; }
.drawer__foot li svg { width: 17px; height: 17px; flex: none; margin-top: 3px; color: var(--gold); }
.drawer__foot a:hover { color: #fff; }
.drawer__social { display: flex; gap: .6rem; margin-top: 1.1rem; }
.drawer__social a {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.1);
  display: inline-flex; align-items: center; justify-content: center; transition: background .25s, transform .25s;
}
.drawer__social a:hover { background: var(--clay); transform: translateY(-2px); }
.drawer__social svg { width: 17px; height: 17px; }

/* ============================================================
   PANELS  (full-width sections)
   ============================================================ */
.panel { padding: clamp(3.5rem, 8vw, 7rem) 0; position: relative; }
.panel__inner { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.panel--mist { background: var(--mist); }
.panel--dark { background: linear-gradient(160deg, var(--pine) 0%, var(--pine-deep) 100%); color: #dfe9e3; }
.panel--dark p { color: #b8cabf; }
.panel--dark .panel__head h1, .panel--dark .panel__head h2, .panel--dark .panel__head h3 { color: #fff; }
.panel--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }

.panel__head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.panel__head.center { margin-inline: auto; text-align: center; }
.panel__head .eyebrow { margin-bottom: 1rem; }
.panel__head p { margin-top: 1rem; }

.prose { max-width: 760px; }
.prose p + p { margin-top: 1.1rem; }
.prose h3 { margin: 2rem 0 .8rem; }
.prose ul.bullets { display: grid; gap: .6rem; margin: 1.1rem 0; }
.prose ul.bullets li { display: flex; gap: .7rem; align-items: flex-start; color: var(--ink); }
.prose ul.bullets li::before { content: ""; width: 8px; height: 8px; margin-top: .6rem; border-radius: 50%; background: var(--clay); flex: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: clamp(560px, 88vh, 840px);
  display: flex; align-items: center;
  color: #fff; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, rgba(10,28,22,.86) 0%, rgba(10,28,22,.5) 46%, rgba(10,28,22,.12) 100%),
    linear-gradient(0deg, rgba(10,28,22,.55), rgba(10,28,22,0) 40%);
}
.hero__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); width: 100%; }
.hero__content { max-width: 660px; }
.hero h1 { color: #fff; }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero__lead { color: #e6efe9; font-size: clamp(1.1rem, 1.7vw, 1.35rem); margin-top: 1.3rem; max-width: 560px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.1rem; }
.hero__trust {
  display: flex; flex-wrap: wrap; gap: 1.6rem; margin-top: 2.6rem;
  padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.18);
}
.hero__trust div { display: flex; flex-direction: column; }
.hero__trust b { font-family: var(--font-head); font-size: 1.7rem; color: #fff; font-weight: 700; line-height: 1; }
.hero__trust span { font-size: .82rem; letter-spacing: .04em; color: #bccfc5; margin-top: .3rem; }

/* ============================================================
   CARDS  (inside panels)
   ============================================================ */
.cards { display: grid; gap: clamp(1.1rem, 2.4vw, 1.8rem); }
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--4 { grid-template-columns: repeat(4, 1fr); }

/* Media card (image with overlay) */
.card-media {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  min-height: 340px; display: flex; flex-direction: column; justify-content: flex-end;
  color: #fff; box-shadow: var(--shadow-sm);
  isolation: isolate;
}
.card-media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2;
  transition: transform .8s var(--ease);
}
.card-media::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(10,28,22,.92) 8%, rgba(10,28,22,.35) 50%, rgba(10,28,22,.05) 100%);
  transition: background .4s var(--ease);
}
.card-media:hover img { transform: scale(1.07); }
.card-media:hover::after { background: linear-gradient(to top, rgba(19,48,38,.94) 12%, rgba(194,90,53,.35) 60%, rgba(10,28,22,.1) 100%); }
.card-media__body { padding: 1.5rem 1.6rem 1.7rem; position: relative; }
.card-media__kicker { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-light); font-weight: 700; }
.card-media h3 { color: #fff; margin-top: .35rem; }
.card-media p { color: #d6e2da; font-size: .92rem; margin-top: .5rem; }
.card-media__link { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1rem; font-weight: 700; font-size: .9rem; color: #fff; }
.card-media__link svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.card-media:hover .card-media__link svg { transform: translateX(5px); }
.card-media--tall { min-height: 420px; }

/* Destination card (caption below image) */
.card-dest {
  border-radius: var(--radius-lg); overflow: hidden; background: #fff;
  box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display: flex; flex-direction: column;
}
.card-dest:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-dest__media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.card-dest__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.card-dest:hover .card-dest__media img { transform: scale(1.08); }
.card-dest__flag {
  position: absolute; top: .9rem; left: .9rem; z-index: 2;
  background: rgba(255,255,255,.93); color: var(--pine);
  font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: .3rem .7rem; border-radius: 999px;
}
.card-dest__flag.soon { background: var(--gold); color: var(--pine-deep); }
.card-dest__body { padding: 1.25rem 1.35rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.card-dest__body h3 { font-size: 1.5rem; }
.card-dest__body p { font-size: .92rem; margin-top: .45rem; flex: 1; }
.card-dest__body .textlink { margin-top: 1rem; }

/* Plain feature card */
.card-feature {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem 1.6rem; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.panel--mist .card-feature { background: #fff; }
.card-feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: transparent; }
.card-feature__icon {
  width: 52px; height: 52px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--mist-2); color: var(--clay); margin-bottom: 1.1rem;
}
.card-feature__icon svg { width: 26px; height: 26px; }
.card-feature h3 { font-size: 1.3rem; }
.card-feature p { font-size: .94rem; margin-top: .5rem; color: var(--ink-soft); }
.panel--dark .card-feature { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); }
.panel--dark .card-feature h3 { color: #fff; }
.panel--dark .card-feature p { color: #b8cabf; }
.panel--dark .card-feature__icon { background: rgba(255,255,255,.1); color: var(--gold-light); }

/* ============================================================
   SPLIT / WELCOME
   ============================================================ */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--rev .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 5/6; object-fit: cover; width: 100%; }
.split__badge {
  position: absolute; bottom: -26px; right: -18px;
  background: var(--gold); color: var(--pine-deep);
  border-radius: 18px; padding: 1.05rem 1.3rem; box-shadow: var(--shadow);
  text-align: center; max-width: 210px;
}
.split__badge b { font-family: var(--font-head); font-size: 1.9rem; display: block; line-height: 1; font-weight: 700; }
.split__badge span { font-size: .78rem; font-weight: 700; letter-spacing: .04em; }
.split__body h2 { margin-bottom: 1.1rem; }
.split__body p + p { margin-top: 1rem; }
.checklist { display: grid; gap: .7rem; margin: 1.5rem 0; }
.checklist li { display: flex; gap: .7rem; align-items: flex-start; color: var(--ink); font-weight: 600; }
.checklist li svg { width: 22px; height: 22px; color: var(--clay); flex: none; margin-top: 2px; }
.split__cst { font-size: .82rem; color: var(--ink-soft); margin-top: 1.4rem; }

/* ============================================================
   NEWSLETTER strip
   ============================================================ */
.newsletter {
  background: linear-gradient(135deg, var(--pine) 0%, var(--pine-deep) 100%);
  border-radius: var(--radius-lg); overflow: hidden; color: #fff;
  padding: clamp(2.2rem, 5vw, 3.4rem) clamp(1.6rem, 4vw, 3.2rem);
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 2.5rem; align-items: center;
}
.newsletter h2 { color: #fff; }
.newsletter p { color: #c4d4cb; margin-top: .7rem; }
.newsletter .sf-note { margin-top: 1rem; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); color: #d7e3dc; }
.newsletter .sf-note b { color: #fff; }
.news-form { display: flex; gap: .7rem; flex-wrap: wrap; }
.news-form input {
  flex: 1; min-width: 200px; font: inherit; font-size: .98rem;
  padding: .9rem 1.1rem; border-radius: 999px; border: 1.5px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.95); color: var(--ink);
}
.news-form input:focus { outline: none; box-shadow: 0 0 0 4px rgba(199,148,63,.4); }
.news-msg { margin-top: 1rem; font-size: .9rem; color: var(--gold-light); font-weight: 600; }

/* ============================================================
   CTA banner
   ============================================================ */
.cta {
  position: relative; isolation: isolate;
  border-radius: var(--radius-lg); overflow: hidden;
  padding: clamp(2.6rem, 6vw, 4.5rem) clamp(1.6rem, 5vw, 4rem);
  color: #fff; text-align: center;
}
.cta__bg { position: absolute; inset: 0; z-index: -2; }
.cta__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, rgba(19,48,38,.92), rgba(194,90,53,.72)); }
.cta h2 { color: #fff; max-width: 640px; margin: 0 auto; }
.cta p { color: #eef3ef; max-width: 560px; margin: 1rem auto 0; }
.cta__actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; margin-top: 2rem; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative; color: #fff; padding: clamp(4rem, 11vw, 8rem) 0 clamp(3rem, 7vw, 5rem);
  display: flex; align-items: center; overflow: hidden;
}
.page-hero__bg { position: absolute; inset: 0; z-index: -2; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, rgba(10,28,22,.86), rgba(10,28,22,.45)); }
.page-hero__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); width: 100%; }
.page-hero h1 { color: #fff; max-width: 820px; }
.page-hero p { color: #dde9e2; max-width: 600px; margin-top: 1rem; font-size: 1.1rem; }
.page-hero .eyebrow { color: var(--gold-light); margin-bottom: 1rem; }
.breadcrumb { font-size: .85rem; color: #aec6ba; margin-bottom: 1rem; display: flex; gap: .5rem; flex-wrap: wrap; }
.breadcrumb a:hover { color: #fff; }

/* ============================================================
   ITINERARY timeline (Favorite Trips)
   ============================================================ */
.itinerary { display: grid; gap: 0; max-width: 820px; }
.itin-step { display: grid; grid-template-columns: auto 1fr; gap: 1.4rem; padding-bottom: 2rem; position: relative; }
.itin-step:not(:last-child)::before { content: ""; position: absolute; left: 23px; top: 48px; bottom: 0; width: 2px; background: var(--line); }
.itin-num {
  width: 48px; height: 48px; border-radius: 50%; background: var(--pine); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-head);
  font-weight: 700; font-size: 1.25rem; flex: none; box-shadow: 0 6px 16px rgba(19,48,38,.2); z-index: 1;
}
.itin-step h3 { font-size: 1.4rem; }
.itin-step .itin-place { color: var(--clay); font-weight: 700; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; display: block; margin-bottom: .2rem; }
.itin-step p { margin-top: .5rem; }

/* Inclusions list (two-col) */
.incl-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem 2rem; margin-top: 1rem; }
.incl-grid li { display: flex; gap: .7rem; align-items: flex-start; color: var(--ink); font-weight: 600; font-size: .96rem; }
.incl-grid li svg { width: 20px; height: 20px; color: var(--pine); flex: none; margin-top: 3px; }

/* ============================================================
   SPECIALTY page bits — facts, things-to-do lists
   ============================================================ */
.fact-row { display: flex; flex-wrap: wrap; gap: 2.4rem; margin: 1.6rem 0 0; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.fact-row div { display: flex; flex-direction: column; }
.fact-row b { font-family: var(--font-head); font-size: 1.5rem; color: var(--pine); font-weight: 700; line-height: 1; }
.fact-row span { font-size: .8rem; letter-spacing: .06em; color: var(--ink-soft); margin-top: .35rem; text-transform: uppercase; }

.info-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.4rem, 3vw, 2.4rem); }
.info-block h3 { display: flex; align-items: center; gap: .6rem; margin-bottom: 1rem; font-size: 1.4rem; }
.info-block h3 svg { width: 24px; height: 24px; color: var(--clay); }
.info-list { display: grid; gap: .85rem; }
.info-list li { display: grid; gap: .15rem; padding-bottom: .85rem; border-bottom: 1px dashed var(--line); }
.info-list li:last-child { border-bottom: 0; }
.info-list b { color: var(--pine); font-family: var(--font-head); font-size: 1.18rem; font-weight: 600; }
.info-list span { color: var(--ink-soft); font-size: .92rem; }
.panel--dark .info-list li { border-color: rgba(255,255,255,.14); }
.panel--dark .info-list b { color: #fff; }
.panel--dark .info-list span { color: #b8cabf; }

/* Difficulty badge (Tours) */
.diff { display: inline-flex; align-items: center; gap: .5rem; font-size: .78rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: .3rem .7rem; border-radius: 999px; }
.diff__dots { display: inline-flex; gap: 3px; }
.diff__dots i { width: 7px; height: 7px; border-radius: 50%; background: currentColor; opacity: .25; }
.diff__dots i.on { opacity: 1; }
.diff--easy   { background: #e7f0e9; color: #2f6b46; }
.diff--moderate { background: #fbf0e2; color: #a9701f; }
.diff--active { background: #f7e6dd; color: #b1502c; }

/* ============================================================
   GALLERY + LIGHTBOX
   ============================================================ */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.gallery--4 { grid-template-columns: repeat(4, 1fr); }
.gallery__item {
  position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 1/1;
  cursor: pointer; box-shadow: var(--shadow-sm); background: var(--mist-2);
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,28,22,.35), transparent 55%);
  opacity: 0; transition: opacity .3s;
}
.gallery__item:hover::after { opacity: 1; }
.gallery__zoom {
  position: absolute; right: .7rem; bottom: .7rem; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.92); color: var(--pine);
  display: inline-flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(6px); transition: .3s var(--ease);
}
.gallery__item:hover .gallery__zoom { opacity: 1; transform: translateY(0); }
.gallery__zoom svg { width: 18px; height: 18px; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  align-items: center; justify-content: center; padding: clamp(1rem, 4vw, 3rem);
  background: rgba(8, 20, 16, .9); backdrop-filter: blur(6px);
}
.lightbox.open { display: flex; }
.lightbox__img { max-width: 100%; max-height: 86vh; border-radius: 10px; box-shadow: var(--shadow-lg); }
.lightbox__btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.14); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; transition: background .2s;
}
.lightbox__btn:hover { background: var(--clay); }
.lightbox__btn svg { width: 26px; height: 26px; }
.lightbox__prev { left: clamp(.6rem, 3vw, 2rem); }
.lightbox__next { right: clamp(.6rem, 3vw, 2rem); }
.lightbox__close { top: clamp(.8rem, 3vw, 1.6rem); right: clamp(.8rem, 3vw, 1.6rem); transform: none; width: 46px; height: 46px; }
.lightbox__count { position: absolute; bottom: clamp(.8rem, 3vw, 1.6rem); left: 50%; transform: translateX(-50%); color: #e7efe9; font-size: .9rem; font-weight: 600; letter-spacing: .04em; }

/* ============================================================
   STORY / BLOG cards (Travel Stories)
   ============================================================ */
.card-story {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.card-story:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card-story__media { aspect-ratio: 16/10; overflow: hidden; }
.card-story__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.card-story:hover .card-story__media img { transform: scale(1.07); }
.card-story__body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.card-story__meta { font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--clay); font-weight: 800; margin-bottom: .5rem; display: flex; gap: .6rem; flex-wrap: wrap; align-items: center; }
.card-story__meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
.card-story h3 { font-size: 1.45rem; }
.card-story p { font-size: .94rem; margin-top: .5rem; flex: 1; }
.card-story .textlink { margin-top: 1.1rem; }
.tag-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 2.5rem; justify-content: center; }
.tag-chip { font-size: .82rem; font-weight: 600; color: var(--pine); background: var(--mist); border: 1px solid var(--line); border-radius: 999px; padding: .35rem .85rem; }

/* ============================================================
   CONTACT page
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-info { display: grid; gap: 1rem; }
.contact-info__item { display: flex; gap: 1rem; padding: 1.3rem 1.4rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.contact-info__item .ci-ico { width: 46px; height: 46px; border-radius: 12px; background: var(--pine); color: #fff; display: inline-flex; align-items: center; justify-content: center; flex: none; }
.contact-info__item .ci-ico svg { width: 22px; height: 22px; }
.contact-info__item h4 { font-family: var(--font-body); font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--clay); margin-bottom: .25rem; font-weight: 800; }
.contact-info__item p, .contact-info__item a { color: var(--ink); font-weight: 600; }
.contact-info__item a:hover { color: var(--clay); }
.contact-info__item span { display: block; font-size: .88rem; color: var(--ink-soft); font-weight: 400; }

/* Form */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem, 3.5vw, 2.6rem); box-shadow: var(--shadow-sm); }
.sf-note { font-size: .8rem; color: var(--ink-soft); background: var(--mist); border: 1px dashed var(--line); border-radius: 10px; padding: .7rem .9rem; margin-bottom: 1.6rem; }
.sf-note b { color: var(--pine); }
.form-head { margin-bottom: 1.5rem; }
.form-head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.form-head p { margin-top: .5rem; font-size: .95rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.05rem 1.1rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .85rem; font-weight: 700; color: var(--pine); }
.field label .req { color: var(--clay); }
.field input, .field select, .field textarea {
  font: inherit; font-size: .95rem; color: var(--ink);
  padding: .8rem .9rem; border: 1.5px solid var(--line); border-radius: 10px; background: var(--mist);
  transition: border-color .2s, background .2s, box-shadow .2s; width: 100%;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--clay); background: #fff; box-shadow: 0 0 0 4px rgba(194,90,53,.12);
}
.field input::placeholder, .field textarea::placeholder { color: #a99f8c; }
.form-actions { margin-top: 1.6rem; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.form-actions .privacy { font-size: .8rem; color: var(--ink-soft); }
.demo-msg { margin-top: 1.4rem; padding: 1rem 1.1rem; border-radius: 12px; background: rgba(31,77,62,.08); border: 1px solid rgba(31,77,62,.3); color: var(--pine); font-weight: 600; }

.map-embed { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); aspect-ratio: 21/9; }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--pine-deep); color: #b8cabf; padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer-top { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter) 3rem; display: grid; grid-template-columns: 1.6fr 1fr 1.1fr 1.25fr 1.2fr; gap: 2.2rem; }
.footer-brand .footer-wordmark { font-family: var(--font-head); font-size: 1.9rem; font-weight: 700; color: #fff; line-height: 1; }
.footer-brand .footer-est { font-size: .64rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold-light); font-weight: 700; display: block; margin-top: .35rem; }
.footer-brand p { color: #9fb4a8; font-size: .92rem; max-width: 290px; margin-top: 1rem; }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: .82rem; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 1.1rem; font-weight: 800; }
.footer-col ul { display: grid; gap: .6rem; }
.footer-col a { color: #b8cabf; font-size: .95rem; transition: color .2s, padding-left .2s; }
.footer-col a:hover { color: #fff; padding-left: 4px; }
.footer-contact li { display: flex; gap: .6rem; font-size: .94rem; margin-bottom: .7rem; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; color: var(--gold); flex: none; margin-top: 3px; }
.footer-social { display: flex; gap: .6rem; margin-top: 1.1rem; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); display: inline-flex; align-items: center; justify-content: center; transition: background .25s, transform .25s; }
.footer-social a:hover { background: var(--clay); transform: translateY(-2px); }
.footer-social svg { width: 17px; height: 17px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom__inner { max-width: var(--maxw); margin: 0 auto; padding: 1.3rem var(--gutter); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .82rem; color: #8aa295; }
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .cards--4 { grid-template-columns: repeat(2, 1fr); }
  .gallery, .gallery--4 { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .split { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .split__media { max-width: 460px; }
  .contact-grid { grid-template-columns: 1fr; }
  .newsletter { grid-template-columns: 1fr; gap: 1.6rem; }
  .info-cols { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .topbar__contact .label-hide { display: none; }
  .brand img { height: 50px; }
  .brand__name { font-size: 1.25rem; }
  .masthead__cta .btn { padding: .7rem 1.1rem; font-size: .85rem; }
  .cards--3 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .hero__trust { gap: 1.2rem; }
  .incl-grid { grid-template-columns: 1fr; }
  .gallery, .gallery--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .cards--2, .cards--4 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hamburger__label { display: none; }
  .topbar__inner { font-size: .76rem; }
  .masthead__cta { display: none; }
  .brand__text { display: none; }
  .brand img { height: 46px; }
  .fact-row { gap: 1.4rem; }
}

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

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   SecureForms embed — theme overrides (scoped so the live
   tysecureforms.rgkemp.com markup adopts the Adventure palette)
   ============================================================ */
.form-card .secure-form label { font-size: .85rem; font-weight: 700; color: var(--pine); margin-bottom: .4rem; display: block; }
.form-card .secure-form .required { color: var(--clay); }
.form-card .secure-form .form-control {
  font: inherit; font-size: .95rem; color: var(--ink); width: 100%;
  padding: .8rem .9rem; border: 1.5px solid var(--line); border-radius: 10px; background: var(--mist);
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.form-card .secure-form .form-control::placeholder { color: #a99f8c; }
.form-card .secure-form .form-control:focus {
  outline: none; border-color: var(--clay); background: #fff; box-shadow: 0 0 0 4px rgba(194,90,53,.12);
}
.form-card .secure-form textarea.form-control { min-height: 130px; resize: vertical; }
.form-card .secure-form .btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .85rem 1.9rem; border-radius: 999px; font-family: var(--font-body); font-weight: 700; font-size: .92rem;
  background: var(--clay); color: #fff; border: 0; cursor: pointer; box-shadow: 0 8px 20px rgba(194,90,53,.32);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.form-card .secure-form .btn-primary:hover { background: #ad4d2c; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(194,90,53,.42); }
.form-card .secure-form .form-success, .form-card .secure-form .success-message {
  background: rgba(31,77,62,.08); border: 1px solid rgba(31,77,62,.3); color: var(--pine);
  border-radius: 12px; padding: 1rem 1.1rem; font-weight: 600;
}

/* Newsletter SecureForms — keep the sleek inline strip on the dark panel */
.news-secureform { display: flex; flex-wrap: wrap; gap: .7rem; align-items: flex-start; }
.news-secureform .form-group { margin: 0; }
.news-secureform .form-group:first-of-type { flex: 1; min-width: 220px; }
.news-secureform .form-control {
  width: 100%; font: inherit; font-size: .98rem; color: var(--ink);
  padding: .9rem 1.1rem; border-radius: 999px; border: 1.5px solid rgba(255,255,255,.3); background: rgba(255,255,255,.95);
}
.news-secureform .form-control:focus { outline: none; box-shadow: 0 0 0 4px rgba(199,148,63,.4); }
.news-secureform .cf-turnstile { flex-basis: 100%; }
.news-secureform .form-success, .news-secureform .success-message { flex-basis: 100%; color: var(--gold-light); font-weight: 600; }
