/* =============================================
   SEEKING 77 DEGREES — Design System
   Shared architecture with Northbound House,
   themed to the official Seeking 77 brand palette.
   ============================================= */

/* --- Variables (Light Mode) --- */
/* Official Seeking 77 brand palette:
   #4C5B54 slate sage · #31473A forest · #D3D9DB light gray
   #82AEE8 soft blue · #1C2430 ink navy */
:root {
  /* Brand */
  --primary:    #31473A;   /* forest green */
  --primary-dk: #24352B;
  --sage:       #4C5B54;   /* slate sage */
  --accent:     #82AEE8;   /* soft blue */
  --accent-strong: #4A7CC9; /* blue that passes contrast on light bg */

  /* Surfaces & text */
  --text:       #1C2430;   /* ink navy */
  --text-muted: #5D6B64;
  --border:     #D3D9DB;   /* brand light gray */
  --bg:         #F7F9F9;
  --bg-soft:    #E9EEEF;   /* derived from brand light gray */
  --bg-card:    #FFFFFF;

  /* Type */
  --font:   'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --script: 'Caveat', 'Bradley Hand', cursive;

  /* Layout */
  --max-w: 1100px;
  --pad:   1.5rem;

  --radius:    14px;
  --radius-sm: 8px;

  --shadow-sm: 0 1px 4px rgba(28,36,48,0.07);
  --shadow-md: 0 4px 20px rgba(28,36,48,0.10);
  --shadow-lg: 0 20px 40px rgba(28,36,48,0.14);

  --ease: 0.2s ease;
}

/* --- Variables (Dark Mode) --- */
@media (prefers-color-scheme: dark) {
  :root {
    --primary:    #7FA695;  /* lightened forest for dark surfaces */
    --primary-dk: #628B79;
    --sage:       #93A69D;
    --accent:     #82AEE8;
    --accent-strong: #A5C4F0;

    --text:       #D3D9DB;  /* brand light gray */
    --text-muted: #96A4A6;
    --border:     #333F47;
    --bg:         #1C2430;  /* brand ink navy */
    --bg-soft:    #222B38;
    --bg-card:    #273140;

    --shadow-sm: 0 1px 4px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.5);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.6);
  }
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img   { max-width: 100%; display: block; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }
button { font-family: var(--font); }

/* --- Container --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* --- Script accent (matches the handwritten logo) --- */
.script {
  font-family: var(--script);
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0;
}

/* --- Section headers --- */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}
.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.65rem;
}
.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
}
.section-header p { font-size: 1.05rem; color: var(--text-muted); line-height: 1.7; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--ease);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
  background: var(--primary-dk);
  border-color: var(--primary-dk);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 20px rgba(49,71,58,0.4);
}
.btn-accent {
  background: var(--accent);
  color: #1C2430; /* ink navy — white fails contrast on the soft blue */
  border-color: var(--accent);
  position: relative;
  overflow: hidden;
}
.btn-accent::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s;
}
.btn-accent:hover::before { left: 100%; }
.btn-accent:hover {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 20px rgba(130,174,232,0.5);
}
.btn-ghost {
  background: transparent;
  color: var(--primary);
}
.btn-ghost:hover { color: var(--primary-dk); text-decoration: underline; }
@media (prefers-color-scheme: dark) {
  /* dark mode's --primary is pastel; white text loses contrast on it */
  .btn-primary { color: #10201D; }
  .btn-accent  { color: #1C2430; }
}

/* =============================================
   HEADER
   ============================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247,249,249,0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
@media (prefers-color-scheme: dark) {
  .header { background: rgba(28,36,48,0.94); }
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1rem;
}
.logo img { height: 44px; width: auto; }
@media (prefers-color-scheme: dark) {
  /* the script logo is dark sage on transparent — lift it on dark bg */
  .logo img { filter: brightness(1.9) saturate(0.7); }
}

.nav-links { display: flex; gap: 1.75rem; align-items: center; }
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--ease);
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--primary); }

/* Social icons */
.nav-social { display: flex; gap: 0.4rem; align-items: center; }
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--text-muted);
  transition: all var(--ease);
}
.social-icon svg { width: 17px; height: 17px; fill: currentColor; }
.social-icon:hover {
  color: #fff;
  background: var(--primary);
  transform: translateY(-2px);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--ease);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  overflow: hidden;
  padding: 6.5rem 0 5.5rem;
  background: var(--bg-soft);
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(130,174,232,0.20) 0%, transparent 50%),
    radial-gradient(circle at 85% 30%, rgba(76,91,84,0.16) 0%, transparent 50%),
    radial-gradient(circle at 50% 100%, rgba(49,71,58,0.14) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}
.hero > canvas { position: absolute; z-index: 1; }
.hero .container {
  position: relative;
  z-index: 2;
  pointer-events: none;
}
.hero .container a,
.hero .container button { pointer-events: auto; }

.hero-wrapper {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  animation: fadeInUp 0.8s ease-out;
}
.hero-images-collage {
  position: relative;
  flex-shrink: 0;
  width: 580px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image {
  position: absolute;
  width: 220px;
  height: 260px;
  cursor: pointer;
  transition: z-index 0s 0.2s;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(28,36,48,0.18);
  border: 4px solid var(--bg-card);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-image:hover {
  z-index: 10 !important;
  transition: z-index 0s;
}
.hero-image:hover img {
  transform: scale(1.15) translateY(-12px);
  box-shadow: 0 24px 56px rgba(28,36,48,0.35);
  border-width: 6px;
}

/* Carousel positioning - less overlap, shifted left */
.hero-image-1 {
  left: -80px;
  top: 10px;
  z-index: 3;
}
.hero-image-2 {
  left: 100px;
  top: 10px;
  z-index: 2;
}
.hero-image-3 {
  left: 280px;
  top: 10px;
  z-index: 1;
}

@keyframes subtleFloat1 {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}
@keyframes subtleFloat2 {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}
@keyframes subtleFloat3 {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
.hero-content {
  max-width: 560px;
  text-align: left;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.45rem 1.1rem;
  margin-bottom: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  /* four-line brand saying — slightly smaller cap than a 3-line hero */
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin-bottom: 1.5rem;
}
.hero-headline .script {
  font-size: 1.15em;
  display: inline-block;
  transform: rotate(-2deg);
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0 auto 2.5rem;
  max-width: 620px;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* Floating temperature chip */
.temp-chip {
  position: absolute;
  z-index: 2;
  top: 18%;
  right: 8%;
  font-family: var(--script);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--accent);
  transform: rotate(8deg);
  animation: floaty 6s ease-in-out infinite;
  pointer-events: none;
  user-select: none;
}
@keyframes floaty {
  0%, 100% { transform: rotate(8deg) translateY(0); }
  50%      { transform: rotate(6deg) translateY(-12px); }
}

/* =============================================
   STATS STRIP
   ============================================= */
.stats {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 2.75rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat-value {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--primary);
  line-height: 1.1;
}
.stat-value .unit { font-size: 0.55em; font-weight: 700; color: var(--accent); }
.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

/* =============================================
   STORY
   ============================================= */
.story { padding: 5.5rem 0; background: var(--bg); }
.story-content {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}
.story-text h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}
.story-text p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.story-quote {
  font-family: var(--script);
  font-size: clamp(1.5rem, 2.5vw, 2rem) !important;
  font-weight: 600 !important;
  color: var(--primary);
  line-height: 1.3;
  margin: 1.5rem 0 0;
  transform: rotate(-1deg);
}
.story-media { position: relative; }
.story-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  transform: rotate(1.5deg);
  transition: transform 0.4s ease;
}
.story-media:hover img { transform: rotate(0deg) scale(1.01); }
.story-media::before {
  content: '';
  position: absolute;
  inset: -14px;
  border: 2px dashed var(--accent);
  border-radius: calc(var(--radius) + 8px);
  opacity: 0.4;
  transform: rotate(-1deg);
  pointer-events: none;
}

/* =============================================
   JOURNEY (48-state progress)
   ============================================= */
.journey {
  padding: 5.5rem 0;
  background: var(--bg-soft);
  position: relative;
}
.journey .container { position: relative; z-index: 2; }

.journey-cards-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}
.journey-progress {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 2.25rem;
  box-shadow: var(--shadow-sm);
}
.national-parks-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 2.25rem;
  box-shadow: var(--shadow-sm);
}
.journey-progress-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.9rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.journey-progress-top h3 { font-size: 1.05rem; font-weight: 700; }
.journey-progress-top .fraction {
  font-weight: 800;
  color: var(--primary);
  font-size: 1.05rem;
}
.progress-track {
  height: 14px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 100px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  width: 0;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--sage) 60%, var(--accent) 100%);
  transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
/* Visited-states map (inlined SVG; states carry 2-letter classes) */
.journey-map { margin-top: 1.75rem; }
.us-map svg { width: 100%; height: auto; display: block; }
.us-map .state path,
.us-map .state circle {
  fill: var(--primary);
  transition: fill var(--ease);
}
.us-map .state path.not-visited,
.us-map .state circle.not-visited { fill: var(--border); }
.us-map .state path.visited-cruise,
.us-map .state circle.visited-cruise { fill: var(--accent); }
.us-map .borders { stroke: var(--bg-card); }
.us-map .separator1 { stroke: var(--border); }
.us-map .dccircle { display: none; }

/* National Parks List */
.parks-list {
  list-style: none;
  padding: 0;
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  max-height: 400px;
  overflow-y: auto;
  padding-right: 0.5rem;
}
.parks-list::-webkit-scrollbar {
  width: 6px;
}
.parks-list::-webkit-scrollbar-track {
  background: var(--bg-soft);
  border-radius: 3px;
}
.parks-list::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}
.parks-list::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}
.parks-list li {
  font-size: 0.9rem;
  color: var(--text);
  padding: 0.6rem 0.9rem;
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent);
  transition: all 0.2s ease;
}
.parks-list li:hover {
  background: rgba(130,174,232,0.15);
  border-left-color: var(--accent-strong);
  transform: translateX(4px);
}

.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  align-items: center;
}
.map-legend span { display: inline-flex; align-items: center; gap: 0.45rem; }
.map-legend .swatch {
  width: 13px;
  height: 13px;
  border-radius: 4px;
  display: inline-block;
}
.swatch--visited { background: var(--primary); }
.swatch--cruise  { background: var(--accent); }
.swatch--todo    { background: var(--border); }
.map-note { font-style: italic; }

.instagram-feed-section {
  margin-top: 3rem;
}
.instagram-feed-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--text);
}
.instagram-feed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.instagram-placeholder {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.instagram-post {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  text-decoration: none;
}
.instagram-post:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(130,174,232,0.55);
}
.instagram-post-media {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-soft);
  position: relative;
}
.instagram-post-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.instagram-post:hover .instagram-post-media img {
  transform: scale(1.05);
}
.instagram-post-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,36,48,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}
.instagram-post:hover .instagram-post-overlay {
  opacity: 1;
}
.instagram-post-overlay span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.instagram-post-caption {
  padding: 1rem 1.2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.instagram-post-date {
  padding: 0 1.2rem 1rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.7;
}

/* =============================================
   FOLLOW / SOCIAL
   ============================================= */
.follow {
  padding: 5.5rem 0;
  /* fixed deep forest — dark mode's lightened --primary washes this out */
  background: linear-gradient(135deg, #31473A 0%, #22322A 100%);
  position: relative;
  overflow: hidden;
}
.follow::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.10) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(130,174,232,0.20) 0%, transparent 50%);
  pointer-events: none;
}
.follow .container { position: relative; z-index: 1; }
.follow .section-header h2,
.follow .section-header p { color: #fff; }
.follow .section-header p { opacity: 0.85; }
.follow .section-eyebrow { color: var(--accent); }

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.social-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
  color: #fff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(4px);
}
.social-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
}
.social-card svg {
  width: 34px;
  height: 34px;
  fill: #fff;
  margin: 0 auto 0.9rem;
  display: block;
}
.social-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; }
.social-card p { font-size: 0.82rem; opacity: 0.75; }
.social-card .follow-cta {
  display: inline-block;
  margin-top: 0.9rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
}

/* =============================================
   DEALS
   ============================================= */
.deals { padding: 5.5rem 0; background: var(--bg); }
.deals--page { background: var(--bg); padding-top: 4.5rem; }

.deal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.deal-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.deal-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(130,174,232,0.55);
}
.deal-media {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--bg-soft);
}
.deal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.deal-card:hover .deal-media img { transform: scale(1.05); }
.deal-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.6rem;
}
.deal-tag {
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-strong);
  background: rgba(130,174,232,0.18);
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
}
.deal-body h3 { font-size: 1.1rem; font-weight: 700; line-height: 1.35; }
.deal-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}
.deal-body .btn { align-self: flex-start; margin-top: 0.5rem; padding: 0.6rem 1.4rem; font-size: 0.875rem; }

.deals-disclosure {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 2.5rem auto 0;
  line-height: 1.6;
}
.deals-more { text-align: center; margin-top: 2.5rem; }

/* Partner callout card */
.deal-card--callout {
  border: 1.5px dashed var(--accent);
  background: linear-gradient(135deg, rgba(130,174,232,0.08), rgba(49,71,58,0.08));
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 1.75rem;
  box-shadow: none;
}
.deal-card--callout .callout-icon { font-size: 1.9rem; margin-bottom: 0.5rem; }
.deal-card--callout h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; }
.deal-card--callout p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1.25rem; }

/* =============================================
   APPS (built on the road)
   ============================================= */
.apps { padding: 5.5rem 0; background: var(--bg-soft); position: relative; }
.apps .container { position: relative; z-index: 2; }

.app-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.app-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem 1.7rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.app-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(49,71,58,0.35);
}
.app-icon {
  width: 56px;
  height: 56px;
  border-radius: 13px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.app-info h3 { font-size: 1.1rem; font-weight: 700; }
.app-info .app-tagline {
  font-size: 0.8rem;
  font-weight: 600;
  font-style: italic;
  color: var(--primary);
  margin-bottom: 0.35rem;
}
.app-info p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }
.app-info .venture-link {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  transition: color var(--ease);
}
.app-info .venture-link:hover { color: var(--primary-dk); }

.apps-nh-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.apps-nh-note a { color: var(--primary); font-weight: 600; }
.apps-nh-note a:hover { text-decoration: underline; }

/* =============================================
   NEWSLETTER / CONTACT CTA
   ============================================= */
.connect {
  padding: 5.5rem 0;
  background: var(--bg);
}
.connect-card {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, rgba(49,71,58,0.08), rgba(130,174,232,0.10));
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 6px);
  padding: 3.25rem 2.5rem;
}
.connect-card h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 0.9rem;
}
.connect-card > p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 1.75rem;
}
.connect-note { font-size: 0.82rem; color: var(--text-muted); margin-top: 1rem; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #151C26;
  color: #fff;
  padding: 3rem 0 2rem;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.footer-brand img { height: 40px; width: auto; filter: brightness(2.1) saturate(0.6); }
.footer-tagline {
  font-family: var(--script);
  font-size: 1.15rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.5rem;
}
.footer-social { display: flex; gap: 0.5rem; }
.footer-social .social-icon {
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.15);
}
.footer-social .social-icon:hover { color: #fff; background: var(--accent); border-color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: rgba(255,255,255,0.55); transition: color var(--ease); }
.footer-bottom a:hover { color: #fff; }
.footer-links { display: flex; gap: 1.5rem; font-size: 0.78rem; }

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 960px) {
  .hero-wrapper  { flex-direction: column; gap: 2rem; text-align: center; }
  .hero-images-collage { width: 440px; height: 220px; }
  .hero-image    { width: 170px; height: 200px; }
  .hero-image-1  { left: 0; top: 10px; }
  .hero-image-2  { left: 135px; top: 10px; }
  .hero-image-3  { left: 270px; top: 10px; }
  .hero-content  { text-align: center; }
  .hero-ctas     { justify-content: center; }

  .stats-grid    { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .story-content { grid-template-columns: 1fr; gap: 2.75rem; }
  .story-media   { max-width: 560px; margin: 0 auto; }
  .journey-cards-grid { grid-template-columns: 1fr; }
  .instagram-feed { grid-template-columns: repeat(2, 1fr); }
  .social-grid   { grid-template-columns: repeat(2, 1fr); }
  .deal-grid     { grid-template-columns: repeat(2, 1fr); }
  .app-grid      { grid-template-columns: 1fr; }
  .temp-chip     { display: none; }
}

@media (max-width: 640px) {
  /* Mobile nav */
  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 1.5rem var(--pad);
    gap: 1.25rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .nav-links.is-open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-social { display: none; }

  .hero { padding: 4.5rem 0 4rem; }
  .hero-images-collage { width: 360px; height: 180px; }
  .hero-image    { width: 140px; height: 165px; }
  .hero-image-1  { left: 0; top: 8px; }
  .hero-image-2  { left: 110px; top: 8px; }
  .hero-image-3  { left: 220px; top: 8px; }
  .instagram-feed { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: repeat(2, 1fr); gap: 0.9rem; }
  .deal-grid { grid-template-columns: 1fr; }

  .journey-progress,
  .national-parks-card { padding: 1.5rem 1.25rem; }
  .connect-card { padding: 2.5rem 1.5rem; }

  .footer-top    { flex-direction: column; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
