/* Wild West Adventures demo site · House424 · Aug 2026
   Palette sampled from Liz's own logo: teal #00CCCB with a coral accent from
   the plane mark. Destination photography is licensed stock (Pexels, credits in
   images/dest/CREDITS.json) and is swappable for Liz's own travel photos. */
:root {
  --teal: #00b3b2;
  --teal-bright: #00cccb;
  --teal-light: #81e5e5;
  --teal-wash: #eafafa;
  --deep: #08313a;
  --deep-2: #0d4753;
  --coral: #f8776a;
  --coral-deep: #e0574a;
  --sand: #fff6f2;
  --ink: #0f1d24;
  --body: #43555f;
  --muted: #7b8b95;
  --line: #e4eef0;
  --radius: 18px;
  --shadow: 0 14px 44px rgba(8, 49, 58, 0.12);
  --shadow-lg: 0 28px 70px rgba(8, 49, 58, 0.22);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--body); background: #fff; line-height: 1.65; font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; }
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { color: var(--ink); line-height: 1.14; font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.85rem, 4vw, 2.8rem); }
h3 { font-size: 1.15rem; letter-spacing: -0.01em; }
.kicker {
  font-size: 0.75rem; font-weight: 800; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 12px;
}
.lede { font-size: 1.09rem; max-width: 60ch; }
section { padding: 92px 0; }

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

/* Buttons */
.btn {
  display: inline-block; padding: 15px 30px; border-radius: 999px;
  font-weight: 700; font-size: 1rem; border: 2px solid transparent;
  transition: transform .14s ease, box-shadow .18s ease, background .18s ease; cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--coral); color: #fff; box-shadow: 0 10px 26px rgba(248,119,106,.4); }
.btn-primary:hover { background: var(--coral-deep); }
.btn-ghost { border-color: rgba(255,255,255,.75); color: #fff; background: rgba(255,255,255,.08); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: #fff; color: var(--deep); }
.btn-outline { border-color: var(--teal); color: var(--teal); }
.btn-outline:hover { background: var(--teal); color: #fff; }

/* Nav */
nav {
  position: sticky; top: 0; z-index: 80; background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px); border-bottom: 1px solid var(--line);
}
.navbar { display: flex; align-items: center; gap: 28px; padding: 10px 0; }
.navbar .logo img { height: 78px; width: auto; }
.navlinks { display: flex; gap: 28px; margin-left: auto; align-items: center; font-weight: 600; font-size: .95rem; }
.navlinks a { color: var(--ink); }
.navlinks a:hover { color: var(--teal); }
@media (max-width: 880px) { .navlinks a:not(.btn) { display: none; } }

/* ---------- HERO: full-bleed photograph ---------- */
.hero {
  position: relative; min-height: 88vh; display: flex; align-items: center;
  color: #fff; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(8,49,58,.86) 0%, rgba(8,49,58,.55) 46%, rgba(8,49,58,.12) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: 90px 0; }
.hero h1 { color: #fff; font-size: clamp(2.4rem, 6vw, 4.2rem); max-width: 16ch; }
.hero h1 em { font-style: normal; color: var(--teal-light); }
.hero .lede { color: #dff2f3; margin: 24px 0 34px; font-size: 1.15rem; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-badges {
  margin-top: 40px; display: flex; gap: 26px; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.22); padding-top: 22px;
}
.hero-badges div { font-size: .86rem; color: #bfe0e2; }
.hero-badges strong { display: block; color: #fff; font-size: 1.02rem; font-weight: 700; }
.hero-free {
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 22px;
  background: rgba(248,119,106,.92); color: #fff; font-weight: 700;
  padding: 8px 18px; border-radius: 999px; font-size: .88rem; letter-spacing: .01em;
}

/* ---------- Trip type tiles ---------- */
.tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 42px; }
@media (max-width: 1000px) { .tiles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .tiles { grid-template-columns: 1fr; } }
.tile {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 3 / 4; box-shadow: var(--shadow); display: block;
}
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.tile:hover img { transform: scale(1.07); }
.tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,49,58,.92) 6%, rgba(8,49,58,.35) 48%, rgba(8,49,58,0) 78%);
}
.tile .cap { position: absolute; left: 22px; right: 22px; bottom: 20px; z-index: 2; color: #fff; }
.tile .cap h3 { color: #fff; margin-bottom: 6px; }
.tile .cap p { font-size: .88rem; color: #d5eaec; line-height: 1.5; }

/* ---------- Story ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 940px) { .split { grid-template-columns: 1fr; gap: 36px; } }
.framed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.framed img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.framed.wide img { aspect-ratio: 3 / 2; }

/* Portrait slot, still waiting on Liz's headshot */
/* Honeypot. Off screen rather than display:none, because some bots skip
   hidden fields but happily fill anything that is technically in the DOM. */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-error { color: var(--coral-deep); font-size: .92rem; font-weight: 600; margin-top: 14px; }
.form-error:empty { margin-top: 0; }

/* Liz's real headshot, in the slot the dashed placeholder used to hold */
.portrait {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5; position: relative;
}
.portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; }

/* "I've actually been there" strip */
.been { background: var(--teal-wash); }
.been-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 42px; }
.been-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
}
.been-card .shot { aspect-ratio: 4 / 3; overflow: hidden; }
.been-card .shot img { width: 100%; height: 100%; object-fit: cover; }
.been-card .cap { padding: 20px 22px 24px; }
.been-card .cap h3 { margin-bottom: 6px; }
.been-card .cap p { font-size: .95rem; color: var(--muted); }

/* Supplier badges */
.badges { display: flex; align-items: center; flex-wrap: wrap; gap: 26px; margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--line); }
.badges img {
  height: 60px; width: auto; background: #fff; border-radius: 12px;
  padding: 10px 16px; box-shadow: 0 6px 18px rgba(8, 49, 58, .08);
}
.badges img.tall { height: 78px; padding: 8px 16px; }
.badges .badge-note { font-size: .86rem; color: var(--muted); max-width: 34ch; }

@media (max-width: 860px) {
  .been-grid { grid-template-columns: 1fr; }
  .badges { gap: 18px; }
}

.pullquote {
  margin-top: 28px; padding: 24px 28px; background: var(--sand);
  border-left: 4px solid var(--coral); border-radius: 0 14px 14px 0;
  font-size: 1.14rem; color: var(--ink); font-style: italic; line-height: 1.55;
}
.pullquote span { display: block; margin-top: 12px; font-style: normal; font-size: .85rem; color: var(--muted); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }

/* ---------- Stat band over photo ---------- */
.statband { position: relative; color: #fff; padding: 88px 0; overflow: hidden; }
.statband .bg { position: absolute; inset: 0; }
.statband .bg img { width: 100%; height: 100%; object-fit: cover; }
.statband .bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,49,58,.9), rgba(8,49,58,.82)); }
.statband .wrap { position: relative; z-index: 2; }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; text-align: center; }
@media (max-width: 800px) { .stat-grid { grid-template-columns: 1fr; } }
.stat .n { font-size: 2.7rem; font-weight: 800; color: var(--teal-light); line-height: 1; letter-spacing: -0.03em; }
.stat .l { margin-top: 10px; color: #c8e6e8; font-size: .96rem; }

/* ---------- Credentials ---------- */
.creds { background: var(--teal-wash); }
.cred-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 38px; }
@media (max-width: 880px) { .cred-grid { grid-template-columns: 1fr; } }
.cred { background: #fff; border-radius: var(--radius); padding: 26px; border: 1px solid var(--line); box-shadow: var(--shadow); }
.cred h3 { color: var(--teal); font-size: .76rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 14px; }
.cred ul { list-style: none; }
.cred li { padding: 8px 0; border-bottom: 1px dashed var(--line); font-size: .96rem; color: var(--ink); font-weight: 500; }
.cred li:last-child { border-bottom: none; }

/* ---------- Reviews (real, from Liz's own clients) ---------- */
.reviews { background: var(--sand); }
.review-feature {
  background: #fff; border-radius: 22px; padding: 36px 40px;
  box-shadow: var(--shadow-lg); border-top: 5px solid var(--coral); margin-top: 38px;
}
.review-feature .quote { font-size: 1.18rem; line-height: 1.62; color: var(--ink); font-style: italic; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 22px; }
@media (max-width: 900px) { .review-grid { grid-template-columns: 1fr; } }
.review {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow); display: flex; flex-direction: column;
}
.review h3 { margin-bottom: 12px; }
.review .quote { font-size: .96rem; flex: 1; }
.stars { color: var(--coral); letter-spacing: .18em; font-size: .95rem; margin-bottom: 12px; }
.who {
  margin-top: 18px; font-size: .8rem; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: var(--muted);
}

/* ---------- Feature band (protection) ---------- */
.feature { position: relative; color: #fff; overflow: hidden; }
.feature .bg { position: absolute; inset: 0; }
.feature .bg img { width: 100%; height: 100%; object-fit: cover; }
.feature .bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,49,58,.94) 0%, rgba(8,49,58,.72) 55%, rgba(8,49,58,.35) 100%); }
.feature .wrap { position: relative; z-index: 2; }
.feature h2 { color: #fff; }
.feature .lede { color: #d8eef0; }
.feature .kicker { color: var(--teal-light); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 42px; }
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; box-shadow: var(--shadow); }
.step .num {
  width: 44px; height: 44px; border-radius: 50%; background: var(--coral); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 800; margin-bottom: 16px;
}
.step h3 { margin-bottom: 8px; }
.step p { font-size: .96rem; }

/* ---------- Form ---------- */
.form-section { position: relative; color: #fff; overflow: hidden; }
.form-section .bg { position: absolute; inset: 0; }
.form-section .bg img { width: 100%; height: 100%; object-fit: cover; }
.form-section .bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(8,49,58,.95), rgba(0,179,178,.72)); }
.form-section .wrap { position: relative; z-index: 2; }
.form-section h2, .form-section .lede { color: #fff; }
.form-section .lede { color: #ddf3f4; }
.form-section .kicker { color: var(--teal-light); }
.form-card { background: #fff; border-radius: 22px; padding: 34px; box-shadow: var(--shadow-lg); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .8rem; font-weight: 700; color: var(--ink); }
.field input, .field select, .field textarea {
  padding: 13px 15px; border: 1px solid var(--line); border-radius: 11px;
  font-family: inherit; font-size: .96rem; color: var(--ink); background: #fff;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--teal-light); border-color: var(--teal); }
.field textarea { min-height: 96px; resize: vertical; }
.form-foot { margin-top: 20px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.form-foot .reassure { font-size: .87rem; color: var(--muted); }
.form-success { display: none; text-align: center; padding: 30px 10px; }
.form-success h3 { color: var(--teal); font-size: 1.5rem; margin-bottom: 8px; }

/* ---------- Deals ---------- */
.deals-hero { position: relative; color: #fff; overflow: hidden; padding: 96px 0 88px; }
.deals-hero .bg { position: absolute; inset: 0; }
.deals-hero .bg img { width: 100%; height: 100%; object-fit: cover; }
.deals-hero .bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, rgba(8,49,58,.9), rgba(8,49,58,.5)); }
.deals-hero .wrap { position: relative; z-index: 2; }
.deals-hero h1 { color: #fff; font-size: clamp(2.1rem, 4.6vw, 3.2rem); }
.deals-hero .lede { color: #dcf1f2; margin-top: 16px; }
.deal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 980px) { .deal-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .deal-grid { grid-template-columns: 1fr; } }
.deal {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.deal:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.deal .art { position: relative; aspect-ratio: 3 / 2; overflow: hidden; }
.deal .art img { width: 100%; height: 100%; object-fit: cover; }
.deal .flag {
  position: absolute; top: 14px; left: 14px; background: var(--coral); color: #fff;
  font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
}
.deal .body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.deal .supplier { font-size: .72rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--teal); margin-bottom: 8px; }
.deal h3 { margin-bottom: 10px; }
.deal p { font-size: .94rem; flex: 1; }
.deal .until { margin-top: 16px; font-size: .84rem; color: var(--muted); font-weight: 600; }
.deal .btn { margin-top: 18px; text-align: center; }

/* ---------- Footer ---------- */
footer { background: var(--deep); color: #a7cdd1; padding: 60px 0 30px; font-size: .93rem; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; margin-bottom: 30px; }
@media (max-width: 800px) { .foot-grid { grid-template-columns: 1fr; } }
footer h4 { color: #fff; font-size: .95rem; margin-bottom: 12px; }
footer a { color: #a7cdd1; display: block; margin-bottom: 7px; }
footer a:hover { color: #fff; }
.foot-logo { background: #fff; border-radius: 14px; padding: 10px; display: inline-block; margin-bottom: 16px; }
.foot-logo img { height: 78px; width: auto; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 18px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .82rem; color: #86b2b7; }
