/* ============================================
   HeyBuddy Outdoors — Prelaunch Site
   Design by Palette 🎨 | Built by SteveDave ⚡
   March 2026
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,700;0,800;0,900;1,800&family=Open+Sans:wght@400;600;700&display=swap');

/* ============ RESET & BASE ============ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #2B2D42;
  background-color: #FEFAE0;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ============ VARIABLES ============ */
:root {
  --forest: #1B4332;
  --forest-light: #2D6A4F;
  --forest-dark: #081C15;
  --terracotta: #B5411B;
  --wheat: #FAEDCD;
  --cream: #F0F7F2;
  --white: #FFFFFF;
  --charcoal: #2B2D42;
  --warm-gray: #6B705C;
  --border: #B7C4B3;
  --emerald: #40916C;
  --mint: #52B788;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: all 0.2s ease;
}

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  line-height: 1.2;
  color: var(--charcoal);
}

h1 { font-size: 3.75rem; font-weight: 900; letter-spacing: -0.03em; line-height: 1.05; }
h2 { font-size: 2.5rem; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.section-label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
  display: block;
}

.section-label--light { color: var(--wheat); }
.waitlist-kicker { font-size: 1.25rem !important; letter-spacing: 0.15em; opacity: 1; }

.section-sub {
  font-size: 1.125rem;
  color: var(--warm-gray);
  max-width: 600px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-sub--light { color: rgba(255,255,255,0.8); }

/* ============ LAYOUT ============ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--narrow {
  max-width: 760px;
}

.section {
  padding: 100px 0;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  border: 2px solid transparent;
  line-height: 1;
}

.btn-primary {
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 4px 6px rgba(27, 67, 50, 0.2);
}

.btn-primary:hover {
  background: var(--forest-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(27, 67, 50, 0.3);
}

.btn-hero {
  background: var(--terracotta);
  color: var(--white);
  font-size: 1.1rem;
  padding: 18px 40px;
  box-shadow: 0 4px 12px rgba(212, 163, 115, 0.4);
}

.btn-hero:hover {
  background: #c4935f;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(212, 163, 115, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--forest);
  border: 2px solid var(--forest);
}

.btn-outline:hover {
  background: var(--forest);
  color: var(--white);
}

/* ============ NAVIGATION ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.875rem 0;
  background: #0d2e1a;
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
  transition: box-shadow 0.3s ease, padding 0.3s ease;
}

.nav.scrolled {
  background: #0d2e1a;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  padding: 0.625rem 0;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 88px;
  width: auto;
  filter: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.nav-logo img.nav-logo-img {
  background: transparent;
  padding: 0;
  border-radius: 50%;
}

.nav.scrolled .nav-logo img {
  filter: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: rgba(255,255,255,0.9);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.nav.scrolled .nav-links a {
  color: rgba(255,255,255,0.90);
}

.nav-links a:hover {
  color: #ffffff;
  text-shadow: 0 0 12px rgba(255,255,255,0.4);
}

.nav-cta {
  padding: 10px 24px !important;
  font-size: 0.875rem !important;
  background: var(--terracotta) !important;
  color: var(--white) !important;
  border-radius: var(--radius) !important;
}

.nav.scrolled .nav-cta {
  color: var(--white) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav.scrolled .hamburger span {
  background: var(--charcoal);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 60%;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8, 28, 21, 0.85) 0%,
    rgba(27, 67, 50, 0.6) 40%,
    rgba(27, 67, 50, 0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  padding: 0 1.5rem;
  padding-top: 80px;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 3px 16px rgba(0,0,0,0.5), 0 1px 3px rgba(0,0,0,0.4);
  font-weight: 900;
}

.hero-line {
  display: inline;
}

@media (max-width: 600px) {
  .hero-line {
    display: block;
  }
}

.hero-sub {
  font-size: 1.3125rem;
  color: rgba(255,255,255,0.95);
  max-width: 640px;
  margin: 0 auto 2rem;
  line-height: 1.65;
  font-weight: 600;
  text-shadow: 0 1px 6px rgba(0,0,0,0.35);
}

.hero-trust {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.01em;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  opacity: 0.7;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============ TRUST BAR ============ */
.trust-bar {
  background: var(--forest);
  padding: 1rem 0;
  overflow: hidden;
}

.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.trust-inner span {
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  white-space: nowrap;
}



/* ============ LOGISTICS STRIP ============ */
.logistics-strip {
  background: #1a3d2b;
  padding: 2rem 0;
}
.logistics-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.logistics-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255,255,255,0.9);
}
.logistics-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.logistics-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.15rem;
}
.logistics-item span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}

/* ============ FOUNDING SPOTS BAR ============ */
.founding-spots {
  margin: 1rem 0;
}
.spots-bar {
  background: rgba(255,255,255,0.2);
  border-radius: 999px;
  height: 8px;
  max-width: 320px;
  margin: 0 auto 0.5rem;
  overflow: hidden;
}
.spots-fill {
  background: #E8642A;
  height: 100%;
  border-radius: 999px;
}
.spots-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
  margin: 0;
}

@media (max-width: 768px) {
  .logistics-items { grid-template-columns: 1fr 1fr; }
  .proof-divider { display: none; }
}
@media (max-width: 480px) {
  .logistics-items { grid-template-columns: 1fr; }
}

/* ============ HOW IT WORKS ============ */
.how-it-works {
  background: var(--white);
  text-align: center;
}

.how-it-works h2 { margin-bottom: 3rem; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.step-card {
  position: relative;
  padding: 2rem;
  text-align: left;
}

.step-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: #E07030;
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}

.step-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
}

.step-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  transition: transform 0.4s ease;
}

.step-card:hover .step-img img {
  transform: scale(1.04);
}

.step-img--clickable {
  cursor: pointer;
  position: relative;
}

.step-img--clickable .step-img-hint {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.step-img--clickable:hover .step-img-hint {
  opacity: 1;
}

.step-img-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
}

.step-img-icon svg { width: 80px; height: 80px; }

.step-card h3 { color: var(--forest); font-size: 1.375rem; }
.step-card p { color: var(--warm-gray); font-size: 1rem; }

/* ============ GEAR PREVIEW ============ */
.gear-preview {
  background: linear-gradient(180deg, #eef5f0 0%, #ffffff 100%);
  text-align: center;
  border-top: 4px solid var(--forest);
}

.gear-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.gear-tier-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2.5rem 0 0;
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, #1a3d2b 0%, #2D6A4F 100%);
  border-radius: 8px;
  text-align: center;
}

.gear-tier-label {
  color: #C4A46B;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
}

.gear-tier-sub {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
}

.gear-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gear-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.gear-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.gear-card h3 { font-size: 1.125rem; color: var(--forest); }
.gear-card p { font-size: 0.9375rem; color: var(--warm-gray); }

/* ============ PRICING ============ */
.pricing {
  background: #f0f7f2;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-md);
  text-align: left;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card--featured {
  border: 2px solid var(--terracotta);
  transform: scale(1.03);
}

.pricing-card--featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.most-popular-label {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--terracotta);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.tier-badge {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--forest);
  background: var(--wheat);
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 1rem;
}

.tier-badge--featured {
  background: rgba(212, 163, 115, 0.2);
  color: #8B5E3C;
}

.tier-price {
  margin-bottom: 0.5rem;
}

.price-amount {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--forest);
  line-height: 1;
}

.price-period {
  font-size: 1rem;
  color: var(--warm-gray);
  margin-left: 4px;
}

.tier-desc {
  color: var(--warm-gray);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.5rem;
}

.tier-features {
  margin-bottom: 2rem;
}

.tier-features li {
  font-size: 0.9375rem;
  color: var(--charcoal);
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  border-bottom: 1px solid rgba(183, 196, 179, 0.4);
}

.tier-features li:last-child { border-bottom: none; }

.tier-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--mint);
  font-weight: 700;
}

.tier-features li:last-child {
  border-bottom: none;
}

.founding-family-callout {
  background: var(--forest);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  margin-top: 4rem;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.founding-icon { font-size: 2.5rem; margin-bottom: 1rem; }

.founding-family-callout h3 {
  color: var(--white);
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.founding-family-callout p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  font-size: 1rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ============ ABOUT ============ */
.about {
  background: var(--wheat);
}

.about-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 5rem;
  align-items: center;
}

.about-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-text h2 { text-align: left; }
.about-text p { color: var(--warm-gray); font-size: 1.0625rem; }

blockquote {
  border-left: 4px solid var(--terracotta);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--forest);
  font-size: 1.0625rem;
  background: rgba(212,163,115,0.08);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* ============ WAITLIST / EMAIL CAPTURE ============ */
.waitlist {
  background: var(--forest-dark);
  text-align: center;
}

.waitlist h2 { color: var(--white); }

.waitlist-form { margin-top: 2.5rem; max-width: 640px; margin-left: auto; margin-right: auto; }

.form-row {
  display: flex;
  gap: 1rem;
  margin: 0 0 1rem 0;
}

.form-row--two { flex-direction: row; }

.form-row--activities { flex-direction: column; }

.form-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.5rem;
  font-family: 'Open Sans', sans-serif;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.activity-option {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.75rem;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: calc(var(--radius) / 2);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  font-family: 'Open Sans', sans-serif;
  user-select: none;
}

.activity-option:hover { border-color: var(--terracotta); background: rgba(255,255,255,0.05); }
.activity-option input[type="checkbox"] { accent-color: var(--terracotta); width: 14px; height: 14px; }
.activity-option:has(input:checked) { border-color: var(--terracotta); background: rgba(255,255,255,0.08); }

.form-input {
  flex: 1;
  padding: 14px 18px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s ease;
  width: 100%;
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.5)' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-select option { background: #1B4332; color: #fff; }

.btn-full { width: 100%; justify-content: center; }

.form-input::placeholder { color: rgba(255,255,255,0.5); }
.form-input:focus { border-color: var(--terracotta); }

.form-trust {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

.form-success { color: var(--mint); font-weight: 600; margin-top: 1rem; text-align: center; }
.form-error { color: #ff6b6b; margin-top: 0.5rem; font-size: 0.9rem; text-align: center; }

/* ============ FAQ ============ */
.faq { background: var(--white); text-align: center; }
.faq h2 { margin-bottom: 3rem; }

.faq-list {
  text-align: left;
  margin-top: 1rem;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--charcoal);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s ease;
}

.faq-question:hover { color: var(--forest); }

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--terracotta);
  flex-shrink: 0;
  transition: transform 0.2s ease;
  line-height: 1;
}

.faq-question[aria-expanded="true"] { color: var(--forest); }
.faq-question[aria-expanded="true"]::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.open {
  max-height: 300px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  color: var(--warm-gray);
  font-size: 1rem;
  line-height: 1.7;
}

/* ============ FOOTER ============ */
.social-icon {
  color: rgba(255,255,255,0.65);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, transform 0.2s;
}
.social-icon:hover { color: #E8642A; transform: scale(1.15); }

.footer-social {
  display: flex;
  gap: 1.1rem;
  margin-top: 1rem;
  align-items: center;
}

.footer-logo-circle {
  border-radius: 50%;
  object-fit: cover;
  width: 56px !important;
  height: 56px !important;
  border: 2px solid rgba(255,255,255,0.3);
}

.footer {
  background: var(--forest-dark);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  align-items: start;
}

.footer-brand img { height: 72px; margin-bottom: 0.75rem; border-radius: 10px; background: #fff; padding: 6px 10px; display: block; }
.footer-tagline { font-size: 0.875rem; color: rgba(255,255,255,0.5); font-style: italic; }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: center;
}

.footer-nav a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s ease;
}

.footer-nav a:hover { color: var(--terracotta); }

.footer-contact a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s ease;
  text-align: right;
  display: block;
}

.footer-contact a:hover { color: var(--terracotta); }

.footer-bottom {
  padding-top: 2rem;
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

/* ============ RESPONSIVE — TABLET ============ */
@media (max-width: 1024px) {
  h1 { font-size: 2.75rem; }
  h2 { font-size: 2rem; }

  .section { padding: 80px 0; }

  .gear-grid { grid-template-columns: repeat(2, 1fr); }

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img img { height: 320px; }
  .about-text h2 { text-align: center; }
  .about-text { text-align: center; }
  blockquote { text-align: left; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-contact { grid-column: 1 / -1; text-align: center; }
  .footer-contact a { text-align: center; }
}

/* ============ RESPONSIVE — MOBILE ============ */
@media (max-width: 768px) {
  html { font-size: 15px; }

  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.25rem; }

  .section { padding: 64px 0; }

  /* Nav mobile */
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--forest-dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
  }
  .nav-links.open { transform: translateX(0); }

  /* Mobile nav close button */
  .nav-close {
    position: fixed;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 1001;
    background: none;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.25rem;
    width: 2.25rem;
    height: 2.25rem;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .nav-links.open + .nav-close,
  body.nav-open .nav-close { display: flex; }
  .nav-links a { font-size: 1.25rem; color: var(--white) !important; }
  .nav-cta { background: var(--terracotta) !important; }

  /* Hero mobile */
  .hero-content h1 { font-size: 2rem; }
  .hero-sub { font-size: 1rem; }

  /* Trust bar */
  .trust-inner { gap: 0.75rem 1.5rem; }

  /* Steps */
  .steps-grid { grid-template-columns: 1fr; gap: 2rem; }

  /* Gear */
  .gear-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .gear-card { padding: 1.5rem 1.25rem; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-4px); }

  /* Form */
  .form-row { flex-direction: column; max-width: 100%; }
  .form-row--two { flex-direction: column; }
  .activity-grid { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { text-align: center; }
  .footer-brand img { margin: 0 auto; }
  .footer-nav { justify-content: center; }
  .footer-contact { text-align: center; }
  .footer-contact a { text-align: center; }
}

@media (max-width: 480px) {
  .gear-grid { grid-template-columns: 1fr; }
  .trust-inner { flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* ADVENTURE PLANNER CTA */
.adventure-cta {
  background: linear-gradient(rgba(10,30,15,0.72), rgba(10,30,15,0.72)),
              url('images/fly-fishing-canyon-river-wide.jpg') center/cover no-repeat;
  color: var(--white);
  padding: 5rem 0;
}
.adventure-cta .section-label { color: var(--mint); }
.adventure-cta h2 { color: var(--white); }
.adventure-cta .section-sub { color: rgba(255,255,255,0.88); }

/* Buddy textarea */
.form-textarea {
  width: 100%;
  resize: vertical;
  min-height: 90px;
  font-family: inherit;
  font-size: 0.9375rem;
  padding: 0.875rem 1rem;
  line-height: 1.5;
}

/* Other activity reveal */
#otherActivityWrap { transition: all 0.2s ease; }

/* ============================================
   UPDATES — March 14, 2026 (Merritt Review)
   Social bar, logo, compass, step badges
   ============================================ */

/* SOCIAL BAR */
.social-bar {
  background: #0d2e1a;
  color: rgba(255,255,255,0.75);
  font-size: 0.8125rem;
  font-family: 'Open Sans', sans-serif;
  text-align: center;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.social-bar a {
  color: #95D5B2;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.social-bar a:hover { color: #ffffff; }
.social-bar-dot { opacity: 0.4; }

/* NAV LOGO — larger, bleeds beyond nav */
.nav-logo-img {
  height: 200px !important;
  width: 200px !important;
  object-fit: cover;
  border-radius: 50%;
  margin-top: 0px;
  margin-bottom: -140px; /* bleeds ~2/3 below nav bottom */
  position: relative;
  z-index: 10;
  box-shadow: 0 6px 24px rgba(0,0,0,0.5);
  border: 3px solid rgba(255,255,255,0.9);
}

/* STEP BADGE */
.step-badge {
  display: inline-block;
  margin-top: 0.875rem;
  background: rgba(82, 183, 136, 0.15);
  border: 1px solid rgba(82, 183, 136, 0.35);
  color: #2D6A4F;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.3rem 0.875rem;
  border-radius: 20px;
}

/* COMPASS ROSE */
.compass-rose-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.compass-rose-svg {
  width: 100px;
  height: 100px;
  animation: compassSpin 30s linear infinite;
  filter: drop-shadow(0 0 12px rgba(196,164,107,0.4));
}
@keyframes compassSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .compass-rose-svg { animation: none; }
}

/* COMPASS FEATURE CHIPS */
.compass-feature-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.625rem;
  margin-bottom: 2rem;
}
.compass-feature-chip {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 20px;
}

/* COMPASS BUTTON */
.btn-compass {
  display: inline-block;
  background: #C4A46B;
  color: #0d2e1a;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.875rem 2.25rem;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 20px rgba(196,164,107,0.35);
}
.btn-compass:hover {
  background: #d4b47b;
  transform: translateY(-2px);
}

/* ============ NAV COMPASS BUTTON ============ */
.btn-nav-compass {
  background: rgba(196,164,107,0.15) !important;
  border: 1.5px solid #C4A46B !important;
  color: #C4A46B !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.5rem 1.125rem;
  border-radius: 50px;
  text-decoration: none !important;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn-nav-compass:hover {
  background: rgba(196,164,107,0.3) !important;
  color: #ffffff !important;
}

/* ============ HERO TAGLINE LINE ============ */
.hero-tagline {
  display: block;
  margin-top: 0.625rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #95D5B2;
  letter-spacing: 0.01em;
}
.hero-sub {
  font-size: 1.125rem;
}
@media (min-width: 768px) {
  .hero-sub { font-size: 1.25rem; }
  .hero-tagline { font-size: 1.375rem; }
}

/* ============ BUYOUT CALLOUT ============ */
.buyout-callout {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #eef5f0;
  border: 1.5px solid #52B788;
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  margin-top: 2rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* Purchase callout in Simple Process — more prominent */
.purchase-callout {
  max-width: 900px;
  background: linear-gradient(135deg, #fff8f3 0%, #fef0e6 100%);
  border: 2px solid var(--terracotta);
  padding: 1.75rem 2rem;
  box-shadow: 0 4px 20px rgba(232, 100, 42, 0.12);
}
.purchase-callout .buyout-text { color: #2B2D42; }
.purchase-callout .buyout-text strong { font-size: 1.125rem; color: var(--terracotta); }
.buyout-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.buyout-header-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
}
.buyout-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 0.1rem;
}
.buyout-text {
  font-size: 0.9375rem;
  color: #1B4332;
  line-height: 1.6;
}
.buyout-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

/* compass nav button SVG alignment */
.btn-nav-compass {
  display: inline-flex !important;
  align-items: center;
  gap: 0.375rem;
}
.compass-nav-icon {
  flex-shrink: 0;
}

/* Footer logo — explicit class to avoid filter override */
.footer-logo-img {
  height: 80px !important;
  width: auto;
  border-radius: 10px;
  background: #ffffff;
  padding: 6px 12px;
  display: block;
  margin-bottom: 0.75rem;
  filter: none !important;
}

/* ============ STEP EXPAND (CHANGE 4) ============ */
.step-expand {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0,0,0,0.08);
  font-size: 0.9rem;
  line-height: 1.6;
  color: #4b5563;
  animation: fadeIn 0.2s ease;
}
.step-toggle {
  background: none;
  border: none;
  color: #E8642A;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.375rem 0;
  margin-top: 0.5rem;
  display: block;
  letter-spacing: 0.02em;
}
.step-toggle:hover { text-decoration: underline; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }

/* ============ PRICING EXPAND (CHANGE 5) ============ */
.pricing-expand {
  margin-top: 0.75rem;
  padding: 0.75rem;
  background: rgba(0,0,0,0.03);
  border-radius: 6px;
  font-size: 0.875rem;
  line-height: 1.6;
  animation: fadeIn 0.2s ease;
}
.pricing-toggle {
  background: none;
  border: none;
  color: #E8642A;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.375rem 0;
  margin: 0.5rem 0;
  display: block;
  letter-spacing: 0.02em;
}
.pricing-toggle:hover { text-decoration: underline; }

/* Pricing card CTA buttons — consistent branding across all tiers */
.pricing-card .btn-outline {
  background: var(--forest);
  color: #fff;
  border: 2px solid var(--forest);
  font-weight: 700;
  letter-spacing: 0.03em;
}
.pricing-card .btn-outline:hover {
  background: #1a3d2b;
  border-color: #1a3d2b;
}
.pricing-card .btn-primary {
  letter-spacing: 0.03em;
  font-weight: 700;
}

/* ============ NAV COMPASS LINK (CHANGE 7B) ============ */
.nav-compass-link {
  color: #C4A46B;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
}
.nav-compass-link:hover { color: #ffffff; }

/* ============ FIXED COMPASS BUTTON (CHANGE 7C) ============ */
.compass-fixed-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  background: #E8642A;
  color: #fff;
  border-radius: 50px;
  padding: 0.75rem 1.25rem 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 20px rgba(232,100,42,0.45);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.compass-fixed-btn:hover {
  background: #d4561f;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(232,100,42,0.55);
}
.compass-fixed-svg {
  animation: compassSpin 8s linear infinite;
  flex-shrink: 0;
}
.compass-fixed-label {
  white-space: nowrap;
}
@media (max-width: 480px) {
  .compass-fixed-btn {
    bottom: 1.25rem;
    right: 1.25rem;
    padding: 0.75rem;
  }
  .compass-fixed-label { display: none; }
}

/* ============ MARCH 18 MIKE PASS ============ */
.section-label--xl {
  font-size: 1.05rem;
  letter-spacing: 0.22em;
  font-weight: 800;
}

.nav-logo img,
.nav-logo img.nav-logo-img {
  height: 84px;
  width: auto;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
}

.nav.scrolled .nav-logo img,
.nav.scrolled .nav-logo img.nav-logo-img {
  height: 74px;
}

.nav-compass-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  border: 1.5px solid rgba(196,164,107,0.75);
  background: linear-gradient(135deg, rgba(196,164,107,0.18), rgba(232,100,42,0.18));
  color: #f8e8bf !important;
  box-shadow: 0 8px 24px rgba(196,164,107,0.16);
}
.nav-compass-link:hover {
  color: #ffffff !important;
  border-color: #f2d18b;
  box-shadow: 0 10px 28px rgba(232,100,42,0.24);
}
.compass-nav-icon {
  display: inline-block;
  animation: compassSpin 10s linear infinite;
}

.trust-bar {
  background: linear-gradient(180deg, #163522 0%, #10281a 100%);
  padding: 2rem 0 2.5rem;
}
.trust-shell {
  background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 18px 48px rgba(0,0,0,0.18);
}
.trust-intro {
  text-align: center;
  margin-bottom: 1.25rem;
}
.trust-kicker {
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  margin-bottom: 0.5rem;
}
.trust-intro h3 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}
.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 0;
  max-width: none;
}
.trust-pill {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 1rem 1rem 0.95rem;
  text-align: left;
  min-height: 124px;
}
.trust-pill strong {
  display: block;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.98rem;
  margin-bottom: 0.4rem;
}
.trust-pill span {
  display: block;
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
  line-height: 1.5;
  white-space: normal;
}

.step-card {
  background: linear-gradient(180deg, #ffffff 0%, #fbf7ef 100%);
  border: 1px solid rgba(181,65,27,0.12);
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(17,24,39,0.06);
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(17,24,39,0.1);
}
.step-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  background: rgba(27,67,50,0.08);
  color: var(--forest);
  font-size: 0.84rem;
  font-weight: 700;
  margin-top: 0.6rem;
}
.step-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(232,100,42,0.12), rgba(196,164,107,0.14));
  border: 1px solid rgba(232,100,42,0.22);
  color: #b5411b;
  font-size: 0.88rem;
  text-decoration: none;
}
.step-toggle:hover { text-decoration: none; }
.step-expand {
  margin-top: 1rem;
  padding-top: 0;
  border-top: none;
}
.step-expand-card {
  background: #fff;
  border: 1px solid rgba(27,67,50,0.1);
  border-radius: 18px;
  padding: 1rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}
.step-expand-label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 800;
  color: #b5411b;
  margin-bottom: 0.45rem;
}
.step-expand-card h4 {
  font-size: 1.05rem;
  color: var(--forest);
  margin-bottom: 0.85rem;
}
.step-detail-list {
  display: grid;
  gap: 0.7rem;
}
.step-detail-list div {
  display: grid;
  gap: 0.15rem;
  padding-left: 0.95rem;
  position: relative;
}
.step-detail-list div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #e8642a;
}
.step-detail-list strong {
  color: var(--charcoal);
  font-size: 0.92rem;
}
.step-detail-list span {
  color: #5b6470;
  font-size: 0.9rem;
}

.purchase-callout {
  border-radius: 22px;
}
.buyout-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1.15rem;
}
.buyout-step {
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(181,65,27,0.12);
  border-radius: 16px;
  padding: 0.9rem 0.8rem;
  min-height: 96px;
}
.buyout-step span {
  display: inline-flex;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--terracotta);
  color: #fff;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 0.55rem;
}
.buyout-step p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--charcoal);
}
.buyout-arrow {
  color: var(--terracotta);
  font-size: 1.35rem;
  font-weight: 800;
}

.gear-card {
  border: 1px solid rgba(27,67,50,0.08);
}

.compass-section-shell {
  position: relative;
}
.compass-section-shell::before {
  content: '';
  position: absolute;
  inset: -20px 20px auto;
  height: 220px;
  background: radial-gradient(circle, rgba(232,100,42,0.14) 0%, rgba(232,100,42,0.02) 60%, transparent 75%);
  pointer-events: none;
}
.compass-rose-wrap {
  margin-bottom: 2rem;
}
.compass-rose-svg {
  width: 164px;
  height: 164px;
  filter: drop-shadow(0 0 18px rgba(232,100,42,0.32));
}
.btn-compass {
  background: linear-gradient(135deg, #e7bf76, #e8642a);
  color: #10281a;
  font-size: 1.03rem;
  padding: 1rem 2.6rem;
  box-shadow: 0 16px 34px rgba(232,100,42,0.24);
}

.pricing {
  background: linear-gradient(180deg, #fff7ec 0%, #eef5f0 45%, #f5fbf7 100%);
}
.pricing-kicker {
  color: var(--terracotta);
}
.pricing h2 {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-card {
  overflow: hidden;
  border: 1px solid rgba(27,67,50,0.08);
}
.pricing-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 8px;
  background: linear-gradient(90deg, #e8642a, #c4a46b, #52b788);
}
.pricing-card--featured {
  background: linear-gradient(180deg, #fff 0%, #fff8ef 100%);
}
.price-amount {
  text-shadow: 0 8px 18px rgba(27,67,50,0.08);
}
.pricing-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(232,100,42,0.08);
  border: 1px solid rgba(232,100,42,0.16);
  margin-bottom: 1rem;
}
.pricing-toggle:hover {
  text-decoration: none;
}

.about {
  background: linear-gradient(180deg, #faedcd 0%, #fffaf1 100%);
}
.about-img img {
  min-height: 520px;
  object-position: center;
}
.about-text p {
  font-size: 1.02rem;
}

.waitlist h2 {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.faq-support-callout {
  margin-top: 2rem;
  padding: 1.35rem 1.4rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(27,67,50,0.06), rgba(232,100,42,0.08));
  border: 1px solid rgba(27,67,50,0.1);
  display: grid;
  gap: 0.45rem;
  text-align: center;
}
.faq-support-callout strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: var(--forest);
}
.faq-support-callout span {
  color: var(--warm-gray);
}
.faq-support-links {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0.35rem;
}
.faq-support-links a,
.btn-faq-chat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(27,67,50,0.1);
  font-weight: 700;
  color: var(--forest);
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
}
.btn-faq-chat:hover { background: #f0f5f1; }

/* FAQ Inline Chat Panel */
.faq-chat-panel {
  margin-top: 1.5rem;
  border: 1px solid rgba(27,67,50,0.2);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.faq-chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background: var(--forest);
  color: #fff;
  font-weight: 700;
  font-size: 0.9375rem;
}
.faq-chat-close {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
}
.faq-chat-messages {
  padding: 1rem;
  min-height: 120px;
  max-height: 280px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-chat-msg {
  padding: 0.6rem 0.875rem;
  border-radius: 10px;
  font-size: 0.9375rem;
  max-width: 85%;
  line-height: 1.5;
}
.faq-chat-msg--bot {
  background: #f0f5f1;
  color: #1B4332;
  align-self: flex-start;
}
.faq-chat-msg--user {
  background: var(--forest);
  color: #fff;
  align-self: flex-end;
}
.faq-chat-input-row {
  display: flex;
  border-top: 1px solid rgba(27,67,50,0.1);
}
.faq-chat-input {
  flex: 1;
  border: none;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  outline: none;
  font-family: inherit;
}
.faq-chat-send {
  background: var(--forest);
  color: #fff;
  border: none;
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9375rem;
}
.faq-chat-send:hover { background: #1a3d2b; }

.footer-logo-circle,
.footer-logo-img {
  width: 44px !important;
  height: 44px !important;
  padding: 0 !important;
  border-radius: 50%;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.2);
}
.footer-brand img {
  height: 44px !important;
  width: 44px !important;
  margin-bottom: 0.75rem;
  padding: 0 !important;
  background: transparent;
}
.footer-social--shifted {
  justify-content: flex-end;
  padding-left: 1rem;
}

@media (max-width: 1024px) {
  .trust-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .buyout-flow { grid-template-columns: 1fr; }
  .buyout-arrow { display: none; }
}

@media (max-width: 768px) {
  .nav-logo img,
  .nav-logo img.nav-logo-img,
  .nav.scrolled .nav-logo img,
  .nav.scrolled .nav-logo img.nav-logo-img { height: 64px; }
  .trust-bar { padding-top: 1.5rem; }
  .trust-inner { grid-template-columns: 1fr; }
  .section-label--xl { font-size: 0.92rem; }
  .steps-grid { gap: 1.25rem; }
  .step-card { padding: 1.35rem; }
  .compass-rose-svg { width: 132px; height: 132px; }
  .about-img img { min-height: 360px; }
  .footer-social--shifted { justify-content: center; padding-left: 0; }
}
