/* ============================================================
   TravelTheNorthwest.com — Pacific Northwest / Rockies theme
   Pine #1F4D3A · Lake blue #2D6E8E · Amber (CTA only) #D97A3C
   Fraunces (headings) + Inter (body)
   ============================================================ */

:root {
  --pine:        #1F4D3A;
  --pine-dark:   #163A2B;
  --pine-soft:   #EAF1EC;
  --lake:        #2D6E8E;
  --lake-dark:   #235A73;
  --lake-soft:   #E9F2F6;
  --amber:       #D97A3C;
  --amber-dark:  #BE6329;
  --amber-soft:  #FBF0E7;
  --granite:     #5C6660;
  --linen:       #F7F5EF;
  --white:       #FFFFFF;
  --off-white:   #FBFAF6;
  --text:        #232C27;
  --text-muted:  #5C6660;
  --border:      #E4E0D4;
  --card-shadow: 0 4px 24px rgba(31, 77, 58, .08);
  --card-shadow-hover: 0 10px 36px rgba(31, 77, 58, .16);
  --radius:      14px;
  --radius-sm:   8px;
  --maxw:        1140px;
  --font-display:'Fraunces', Georgia, serif;
  --font-body:   'Inter', -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--linen);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--lake-dark); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: var(--font-display); color: var(--pine); line-height: 1.2; }
h1 { font-size: clamp(34px, 5.5vw, 54px); font-weight: 700; }
h2 { font-size: clamp(26px, 3.6vw, 36px); font-weight: 600; }
h3 { font-size: 20px; font-weight: 600; }

.eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--lake);
  display: block; margin-bottom: 12px;
}
.eyebrow.amber { color: var(--amber); }

/* ── Header ─────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 250, 246, .94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo {
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  color: var(--pine); text-decoration: none; letter-spacing: -.3px;
}
.logo span { color: var(--amber); }
.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav a {
  font-size: 13px; font-weight: 600; color: var(--text);
  text-decoration: none; transition: color .15s;
}
.site-nav a:hover { color: var(--amber); }
.nav-cta {
  background: var(--amber); color: #fff !important;
  padding: 9px 20px; border-radius: 50px;
  transition: background .15s !important;
}
.nav-cta:hover { background: var(--amber-dark); color: #fff !important; }

/* mobile nav */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--pine); margin: 5px 0; border-radius: 2px; transition: .2s; }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none; position: absolute; top: 64px; left: 0; right: 0;
    background: var(--off-white); flex-direction: column; align-items: stretch;
    padding: 12px 24px 20px; gap: 0; border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 24px rgba(31,77,58,.1);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 13px 4px; border-bottom: 1px solid var(--border); }
  .site-nav a:last-child { border-bottom: none; }
  .nav-cta { text-align: center; margin-top: 12px; border-radius: var(--radius-sm); }
}

/* ── Hero (photo immersive) ─────────────────────── */
.hero {
  position: relative; min-height: 560px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; color: #fff; overflow: hidden;
  background: var(--pine-dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 55%;
  animation: hero-drift 26s ease-in-out infinite alternate;
}
@keyframes hero-drift {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg { animation: none; }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(22,58,43,.5) 0%, rgba(22,58,43,.32) 45%, rgba(22,58,43,.66) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 90px 24px 110px; max-width: 760px; }
.hero .eyebrow { color: var(--amber-soft); }
.hero h1 { color: #fff; margin-bottom: 18px; text-shadow: 0 2px 18px rgba(22,58,43,.4); }
.hero h1 em { font-style: normal; color: var(--amber); }
.hero p {
  font-size: 17px; color: rgba(255,255,255,.88);
  max-width: 560px; margin: 0 auto 30px;
}
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block; font-family: var(--font-body);
  font-size: 14px; font-weight: 700; text-decoration: none;
  padding: 14px 32px; border-radius: 50px; cursor: pointer;
  border: none; transition: transform .15s, background .15s, box-shadow .15s;
}
.btn:hover { transform: translateY(-2px); }
.btn-amber { background: var(--amber); color: #fff; box-shadow: 0 6px 20px rgba(217,122,60,.35); }
.btn-amber:hover { background: var(--amber-dark); }
.btn-ghost {
  background: rgba(255,255,255,.14); color: #fff;
  border: 1.5px solid rgba(255,255,255,.45); backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,.24); }
.btn-lake { background: var(--lake); color: #fff; }
.btn-lake:hover { background: var(--lake-dark); }
.btn-outline {
  background: transparent; color: var(--amber);
  border: 1.5px solid var(--amber);
}
.btn-outline:hover { background: var(--amber-soft); }

.hero-chips {
  position: absolute; bottom: 26px; left: 0; right: 0; z-index: 2;
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; padding: 0 16px;
}
.hero-chip {
  font-size: 12px; font-weight: 600; padding: 7px 18px;
  background: rgba(255,255,255,.13); color: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.28); border-radius: 50px;
  text-decoration: none; backdrop-filter: blur(6px); transition: background .15s;
}
.hero-chip:hover { background: rgba(217,122,60,.85); border-color: transparent; }

/* ── Stat strip ─────────────────────────────────── */
.stat-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--border);
  background: var(--pine-soft);
}
.stat-item { text-align: center; padding: 22px 10px; }
.stat-item + .stat-item { border-left: 1px solid var(--border); }
.stat-n { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--pine); }
.stat-l { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
@media (max-width: 640px) {
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(3) { border-left: none; }
  .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid var(--border); }
}

/* ── Sections ───────────────────────────────────── */
.section { padding: 72px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section-head p { color: var(--text-muted); margin-top: 12px; }
.section-alt { background: var(--white); }
.section-pine { background: var(--pine-soft); }

/* ── Destination cards ─────────────────────────── */
.hood-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 900px) { .hood-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .hood-grid { grid-template-columns: 1fr; } }

.hood-card {
  border-radius: var(--radius); overflow: hidden;
  background: var(--white); box-shadow: var(--card-shadow);
  text-decoration: none; display: block;
  transition: transform .2s, box-shadow .2s;
}
.hood-card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-hover); }
.hood-img {
  height: 170px; background-size: cover; background-position: center;
  position: relative; display: flex; align-items: flex-end; padding: 14px 18px;
}
.hood-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(22,58,43,.72) 0%, rgba(22,58,43,.06) 55%);
}
.hood-img h3 { position: relative; z-index: 1; color: #fff; font-size: 21px; }
.hood-body { padding: 16px 18px 18px; border-top: 3px solid var(--accent, var(--amber)); }
.hood-tag { font-size: 12px; font-weight: 700; color: var(--accent, var(--amber)); margin-bottom: 6px; }
.hood-desc { font-size: 13px; color: var(--text-muted); line-height: 1.65; }
.hood-count {
  display: inline-block; margin-top: 12px;
  font-size: 12px; font-weight: 700; color: var(--pine);
  background: var(--pine-soft); padding: 4px 12px; border-radius: 50px;
}

/* ── Trip tools ─────────────────────────────────── */
.tools-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 860px) { .tools-grid { grid-template-columns: 1fr; } }
.tool-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  text-decoration: none; display: block;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.tool-card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-hover); border-color: var(--lake); }
.tool-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--lake-soft); color: var(--lake-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.tool-icon.amber { background: var(--amber-soft); color: var(--amber); }
.tool-icon svg { width: 26px; height: 26px; }
.tool-card h3 { margin-bottom: 8px; font-family: var(--font-body); font-size: 16px; font-weight: 700; }
.tool-card p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }
.tool-cta { display: inline-block; margin-top: 14px; font-size: 13px; font-weight: 700; color: var(--lake-dark); }

/* ── Hotel cards ────────────────────────────────── */
.hotel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .hotel-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .hotel-grid { grid-template-columns: 1fr; } }

.hotel-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--card-shadow); display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.hotel-card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-hover); }
.hotel-img { height: 185px; background-size: cover; background-position: center; position: relative; }
.hotel-stars {
  position: absolute; top: 12px; right: 12px;
  background: rgba(22,58,43,.8); color: var(--amber-soft);
  font-size: 12px; font-weight: 700; padding: 4px 11px; border-radius: 50px;
  backdrop-filter: blur(4px);
}
.hotel-area-pill {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(255,255,255,.92); color: var(--pine);
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  padding: 4px 12px; border-radius: 50px;
}
.hotel-body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.hotel-body h3 { font-size: 18px; margin-bottom: 8px; }
.hotel-note { font-size: 13px; color: var(--text-muted); line-height: 1.65; flex: 1; }
.hotel-actions { margin-top: 16px; }
.hotel-btn {
  display: block; text-align: center;
  background: var(--amber); color: #fff; text-decoration: none;
  font-size: 13px; font-weight: 700; padding: 12px;
  border-radius: var(--radius-sm); transition: background .15s;
}
.hotel-btn:hover { background: var(--amber-dark); }

/* ── See-all banner ─────────────────────────────── */
.seeall-banner {
  background: linear-gradient(115deg, var(--pine-dark) 0%, #1c5245 55%, #205a68 100%);
  border-radius: var(--radius); padding: 44px 40px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; flex-wrap: wrap;
}
.seeall-banner h2 { color: #fff; }
.seeall-banner p { color: rgba(255,255,255,.78); font-size: 14px; margin-top: 8px; max-width: 460px; }

/* ── Newsletter ─────────────────────────────────── */
.newsletter {
  background: var(--pine-dark); color: #fff;
  padding: 60px 0;
}
.newsletter h2 { color: #fff; }
.newsletter .nl-sub { color: rgba(255,255,255,.72); font-size: 14px; margin: 10px 0 26px; }
.nl-form { max-width: 520px; }
.nl-row { display: flex; gap: 10px; }
.nl-input {
  flex: 1; font-family: var(--font-body); font-size: 14px;
  padding: 14px 18px; border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.09); color: #fff;
}
.nl-input::placeholder { color: rgba(255,255,255,.5); }
.nl-input:focus { outline: 2px solid var(--lake); border-color: transparent; }
.nl-btn {
  font-family: var(--font-body); font-size: 14px; font-weight: 700;
  padding: 14px 26px; background: var(--amber); color: #fff;
  border: none; border-radius: var(--radius-sm); cursor: pointer;
  white-space: nowrap; transition: background .15s;
}
.nl-btn:hover { background: var(--amber-dark); }
.nl-msg { margin-top: 14px; font-size: 13px; font-weight: 600; display: none; }
.nl-msg.ok { color: #9BE3B8; display: block; }
.nl-msg.err { color: #FF9B9B; display: block; }
@media (max-width: 520px) { .nl-row { flex-direction: column; } }

/* ── Content pages (guides, packing lists, legal) ── */
.page-hero {
  background: linear-gradient(115deg, var(--pine-dark) 0%, #1c5245 60%, var(--lake-dark) 130%);
  color: #fff; text-align: center; padding: 72px 24px 64px;
}
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255,255,255,.82); max-width: 580px; margin: 14px auto 0; }

.page-hero-photo {
  position: relative; background-size: cover; background-position: center; padding: 0;
}
.page-hero-scrim {
  background: linear-gradient(180deg, rgba(16,36,27,.72) 0%, rgba(16,36,27,.5) 45%, rgba(16,36,27,.78) 100%);
  padding: 72px 24px 64px;
}
.page-hero-photo .eyebrow { color: #fff; text-shadow: 0 1px 10px rgba(0,0,0,.6); }

.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { margin: 44px 0 16px; }
.prose h3 { margin: 30px 0 10px; }
.prose p { margin-bottom: 16px; color: var(--text); }
.prose ul, .prose ol { margin: 0 0 18px 24px; }
.prose li { margin-bottom: 8px; }
.prose figure { margin: 28px 0; }
.prose figure img { width: 100%; border-radius: var(--radius); box-shadow: var(--card-shadow); }
.prose figure figcaption { font-size: 12px; color: var(--text-muted); margin-top: 8px; text-align: center; }
.prose table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14px; }
.prose th { background: var(--pine-soft); text-align: left; padding: 11px 14px; border: 1px solid var(--border); font-weight: 700; color: var(--pine); }
.prose td { padding: 11px 14px; border: 1px solid var(--border); }

/* checklist */
.checklist { list-style: none; margin: 0 0 24px 0 !important; }
.checklist li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 11px 14px; margin: 0 0 8px 0 !important;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm);
}
.checklist input { margin-top: 4px; accent-color: var(--lake); width: 17px; height: 17px; flex-shrink: 0; cursor: pointer; }
.checklist label { cursor: pointer; font-size: 14px; }
.checklist label b { color: var(--pine); }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; }
.faq details {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-sm); margin-bottom: 10px; padding: 0 20px;
}
.faq summary {
  font-weight: 700; font-size: 15px; color: var(--pine);
  padding: 16px 0; cursor: pointer; list-style: none; position: relative;
}
.faq summary::after { content: '+'; position: absolute; right: 0; color: var(--amber); font-size: 20px; font-weight: 400; }
.faq details[open] summary::after { content: '\2212'; }
.faq details p { padding: 0 0 16px; font-size: 14px; color: var(--text-muted); }

/* print */
@media print {
  .site-header, .site-footer, .newsletter, .no-print, .hero-chips { display: none !important; }
  body { background: #fff; }
  .page-hero { background: none; color: var(--pine); padding: 20px 0; }
  .page-hero h1, .page-hero p { color: var(--pine); }
}

/* ── Breadcrumbs ────────────────────────────────── */
.breadcrumbs { font-size: 12px; color: var(--text-muted); padding: 18px 0 0; }
.breadcrumbs a { color: var(--lake-dark); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }

/* ── Footer ─────────────────────────────────────── */
.site-footer {
  background: var(--pine-dark); color: rgba(255,255,255,.6);
  padding: 52px 0 32px; font-size: 13px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 32px;
  padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.12);
}
@media (max-width: 1000px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* Pill links */
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.pill-link {
  display: inline-block; font-family: var(--font-body); font-size: 13px; font-weight: 600;
  text-decoration: none; color: var(--pine); background: var(--pine-soft);
  border: 1.5px solid var(--border); padding: 9px 18px; border-radius: 50px;
  transition: background .15s, border-color .15s, color .15s;
}
.pill-link:hover { background: var(--amber-soft); border-color: var(--amber); color: var(--amber-dark); }
.pill-link.disabled { opacity: .55; cursor: default; }
.pill-link.disabled:hover { background: var(--pine-soft); border-color: var(--border); color: var(--pine); }
.footer-brand .logo { color: #fff; font-size: 20px; }
.footer-brand p { margin-top: 12px; line-height: 1.7; max-width: 280px; }
.site-footer h4 {
  font-family: var(--font-body); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; color: var(--amber-soft);
  margin-bottom: 14px;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: rgba(255,255,255,.65); text-decoration: none; }
.site-footer a:hover { color: var(--amber); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px; padding-top: 24px; font-size: 12px;
}

/* ── Cookie banner ──────────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 16px; left: 16px; right: 16px; z-index: 200;
  max-width: 480px; margin: 0 auto;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: 0 12px 40px rgba(22,58,43,.2);
  padding: 20px 22px; display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner p { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; }
.cookie-actions { display: flex; gap: 10px; }
.cookie-btn {
  flex: 1; font-family: var(--font-body); font-size: 13px; font-weight: 600;
  padding: 10px; border-radius: var(--radius-sm); cursor: pointer; border: none;
}
.cookie-accept { background: var(--pine); color: #fff; }
.cookie-decline { background: var(--pine-soft); color: var(--text); border: 1px solid var(--border); }

/* ── Forms (contact) ────────────────────────────── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 640px; margin: 0 auto; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 580px) { .form-grid { grid-template-columns: 1fr; } }
.form-field label { display: block; font-size: 13px; font-weight: 600; color: var(--pine); margin-bottom: 6px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; font-family: var(--font-body); font-size: 14px;
  padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--white); color: var(--text);
}
.form-field input:focus, .form-field textarea:focus { outline: 2px solid var(--lake); border-color: transparent; }
.form-field textarea { min-height: 130px; resize: vertical; }

/* honeypot — visually hidden */
.hp-wrap { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ── Interactive region map ─────────────────────── */
.region-map-wrap {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px; box-shadow: var(--card-shadow); position: relative;
}
.region-map { width: 100%; height: auto; display: block; }
.map-pin { cursor: pointer; }
.map-pin circle.dot {
  fill: var(--amber); stroke: #fff; stroke-width: 2;
  transition: r .15s, fill .15s;
}
.map-pin.coming circle.dot { fill: var(--granite); }
.map-pin:hover circle.dot { r: 9; }
.map-pin text.pin-label {
  font-family: var(--font-body); font-weight: 700; font-size: 11px; fill: var(--pine);
  paint-order: stroke; stroke: var(--linen); stroke-width: 3px;
}
.map-pin.coming text.pin-label { fill: var(--granite); }
.map-legend { display: flex; gap: 20px; justify-content: center; margin-top: 16px; font-size: 12px; color: var(--text-muted); flex-wrap: wrap; }
.map-legend span { display: inline-flex; align-items: center; gap: 6px; }
.map-legend .dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.map-legend .dot.live { background: var(--amber); }
.map-legend .dot.soon { background: var(--granite); }
.map-tooltip {
  position: absolute; display: none; background: var(--pine-dark); color: #fff;
  font-size: 12px; font-weight: 600; padding: 6px 12px; border-radius: 6px;
  pointer-events: none; white-space: nowrap; transform: translate(-50%, -130%); z-index: 5;
}
