/* ═══════════════════════════════════════════════════════════
   Vermilion River Adventures — Global Styles
   Design system derived from Team Float landing page
   ═══════════════════════════════════════════════════════════ */

/* ─── TOKENS ─── */
:root {
  --teal:     #00A39B;
  --teal-dk:  #007972;
  --teal-lt:  #E6F7F6;
  --sand:     #F5F0E8;
  --charcoal: #1E2A2A;
  --mid:      #4A5C5C;
  --gold:     #C9902A;
  --white:    #FFFFFF;
  --radius:   6px;
  --radius-lg: 16px;
  --max:      1100px;
  --mono:     'DM Sans', sans-serif;
  --serif:    'Playfair Display', Georgia, serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.10);
  --transition: 0.25s ease;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--mono);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; transition: color var(--transition); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ─── UTILITY ─── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.wrap-wide { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(30,42,42,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s, box-shadow 0.3s;
}
.site-nav.scrolled {
  background: rgba(30,42,42,0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo img {
  height: 38px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  padding: 7px 10px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.nav-cta {
  background: var(--teal) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  padding: 8px 18px !important;
  border-radius: 100px !important;
}
.nav-cta:hover {
  background: var(--teal-dk) !important;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.7) !important;
  font-size: 0.85rem !important;
  text-decoration: none;
}
.nav-phone svg { width: 14px; height: 14px; }
.nav-phone:hover { color: var(--teal) !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  background: var(--charcoal);
  overflow: hidden;
  padding: 140px 24px 100px;
  text-align: center;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 110%, rgba(0,163,155,0.30) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(201,144,42,0.12) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30 Q150 0 300 30 Q450 60 600 30 Q750 0 900 30 Q1050 60 1200 30 L1200 60 L0 60Z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat bottom / cover;
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 780px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,144,42,0.4);
  border-radius: 100px;
  padding: 5px 16px;
  margin-bottom: 28px;
  animation: fadeUp 0.7s ease both;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero h1 em {
  font-style: normal;
  color: var(--teal);
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin: 0 auto 44px;
  font-weight: 300;
  line-height: 1.7;
  animation: fadeUp 0.7s 0.2s ease both;
}

/* Inner page hero (shorter) */
.hero-inner {
  min-height: auto;
  padding: 130px 24px 70px;
}
.hero-inner h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--teal);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  animation: fadeUp 0.7s 0.3s ease both;
}
.btn-primary:hover { background: var(--teal-dk); transform: translateY(-2px); }
.btn-primary svg { width: 18px; height: 18px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--charcoal);
  font-size: 1rem;
  font-weight: 500;
  padding: 15px 34px;
  border-radius: 100px;
  border: 1.5px solid #C5D0D0;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.btn-secondary:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }

.btn-gold {
  background: var(--gold);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 100px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s, transform 0.2s;
}
.btn-gold:hover { background: #b07f22; transform: translateY(-2px); }

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  padding: 15px 34px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.3);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); transform: translateY(-2px); }

/* ─── HERO BUTTONS ROW ─── */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  animation: fadeUp 0.7s 0.3s ease both;
}

/* ═══════════════════════════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════════════════════════ */
.trust {
  background: var(--teal-lt);
  border-bottom: 1px solid rgba(0,163,155,0.15);
  padding: 18px 24px;
}
.trust-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 36px;
  justify-content: center;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--teal-dk);
}
.trust-item svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════
   SECTIONS — GENERAL
   ═══════════════════════════════════════════════════════════ */
.section {
  padding: 80px 24px;
}
.section-sand {
  background: var(--sand);
}
.section-dark {
  background: var(--charcoal);
  color: var(--white);
}
.section-teal-lt {
  background: var(--teal-lt);
}
.section h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-center {
  text-align: center;
}
.section-center h2 {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.section-center p {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.section-intro {
  font-size: 1.05rem;
  color: var(--mid);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 40px;
}
.section-dark .section-intro { color: rgba(255,255,255,0.65); }
.section-dark .section-label { color: rgba(255,255,255,0.5); }

/* ═══════════════════════════════════════════════════════════
   CARDS
   ═══════════════════════════════════════════════════════════ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  max-width: var(--max);
  margin: 0 auto;
}
.card {
  border: 1.5px solid #E0E8E8;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.card-body {
  padding: 28px;
}
.card-body h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.card-body p {
  font-size: 0.93rem;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 20px;
}
.card-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card-link:hover { color: var(--teal-dk); }
.card-link svg { width: 16px; height: 16px; transition: transform 0.2s; }
.card-link:hover svg { transform: translateX(4px); }

/* Dark card variant */
.card-dark {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
}
.card-dark .card-body h3 { color: var(--white); }
.card-dark .card-body p { color: rgba(255,255,255,0.55); }

/* ═══════════════════════════════════════════════════════════
   ICON CARDS (logistics, features, etc.)
   ═══════════════════════════════════════════════════════════ */
.icon-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
}
.icon-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 24px 24px 26px;
  text-align: left;
}
.icon-card-light {
  background: var(--white);
  border-color: #E0E8E8;
  box-shadow: var(--shadow-sm);
}
.icon-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(0,163,155,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.icon-card-icon svg { width: 22px; height: 22px; color: var(--teal); }
.icon-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.icon-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}
.icon-card-light h3 { color: var(--charcoal); }
.icon-card-light p { color: var(--mid); }
.icon-card-light .icon-card-icon { background: var(--teal-lt); }

/* ═══════════════════════════════════════════════════════════
   PRICING TABLE
   ═══════════════════════════════════════════════════════════ */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.pricing-table thead {
  background: var(--charcoal);
  color: var(--white);
}
.pricing-table th {
  padding: 14px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: left;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pricing-table td {
  padding: 14px 20px;
  font-size: 0.93rem;
  border-bottom: 1px solid #E0E8E8;
}
.pricing-table tbody tr { background: var(--white); }
.pricing-table tbody tr:nth-child(even) { background: var(--sand); }
.pricing-table tbody tr:hover { background: var(--teal-lt); }
.price-highlight {
  font-weight: 700;
  color: var(--teal);
}

/* ═══════════════════════════════════════════════════════════
   CONTENT SECTIONS (Two-col, etc.)
   ═══════════════════════════════════════════════════════════ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}
.two-col-text h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}
.two-col-text p {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 16px;
}
.two-col-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.two-col-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

/* ═══════════════════════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════════════════════ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid #E0E8E8;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--mono);
}
.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-question.active svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer.open {
  max-height: 500px;
}
.faq-answer-inner {
  padding: 0 0 20px;
  font-size: 0.93rem;
  color: var(--mid);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   CTA BAND
   ═══════════════════════════════════════════════════════════ */
.cta-band {
  padding: 88px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(0,163,155,0.08) 0%, transparent 70%);
}
.cta-band h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  max-width: 640px;
  margin: 0 auto 18px;
  line-height: 1.1;
  position: relative;
}
.cta-band p {
  font-size: 1.05rem;
  color: var(--mid);
  max-width: 480px;
  margin: 0 auto 40px;
  font-weight: 300;
  position: relative;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  position: relative;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT FORM
   ═══════════════════════════════════════════════════════════ */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #D0D8D8;
  border-radius: var(--radius);
  font-family: var(--mono);
  font-size: 0.93rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,163,155,0.12);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ═══════════════════════════════════════════════════════════
   BREADCRUMBS
   ═══════════════════════════════════════════════════════════ */
.breadcrumbs {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  animation: fadeUp 0.7s ease both;
}
.breadcrumbs a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}
.breadcrumbs a:hover { color: var(--teal); }
.breadcrumbs span { margin: 0 8px; }

/* ═══════════════════════════════════════════════════════════
   IMAGE GALLERY
   ═══════════════════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
}
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}

/* ═══════════════════════════════════════════════════════════
   CHIPS
   ═══════════════════════════════════════════════════════════ */
.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.chip {
  background: var(--teal-lt);
  color: var(--teal-dk);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 100px;
  border: 1px solid rgba(0,163,155,0.2);
}

/* ═══════════════════════════════════════════════════════════
   HOW IT WORKS (steps)
   ═══════════════════════════════════════════════════════════ */
.steps-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 36px;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
}
.step-desc {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   PACKAGES (team float)
   ═══════════════════════════════════════════════════════════ */
.packages-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  align-items: start;
}
.pkg {
  border: 1.5px solid #E0E8E8;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow var(--transition), transform var(--transition);
}
.pkg:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.pkg.featured {
  border-color: var(--teal);
  box-shadow: 0 8px 32px rgba(0,163,155,0.15);
}
.pkg-header {
  padding: 28px 32px 24px;
  background: var(--sand);
  border-bottom: 1.5px solid #E0E8E8;
}
.pkg.featured .pkg-header {
  background: var(--charcoal);
  border-color: var(--teal);
}
.pkg-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--gold);
  border-radius: 100px;
  padding: 3px 12px;
  margin-bottom: 12px;
}
.pkg-name {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 6px;
}
.pkg.featured .pkg-name { color: var(--white); }
.pkg-tagline {
  font-size: 0.88rem;
  color: var(--mid);
  font-weight: 400;
}
.pkg.featured .pkg-tagline { color: rgba(255,255,255,0.6); }
.pkg-price { margin-top: 18px; }
.pkg-price .amount {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}
.pkg-price .basis {
  font-size: 0.85rem;
  color: var(--mid);
  margin-top: 2px;
}
.pkg.featured .pkg-price .basis { color: rgba(255,255,255,0.55); }
.pkg-price .overage {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 500;
}
.pkg-body { padding: 28px 32px 32px; }
.pkg-desc {
  font-size: 0.93rem;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 24px;
}
.pkg-includes-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 14px;
}
.pkg-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
}
.pkg-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--charcoal);
  line-height: 1.5;
}
.pkg-list li .check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--teal-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.pkg-list li .check svg { width: 10px; height: 10px; color: var(--teal-dk); }
.pkg-fit {
  background: var(--teal-lt);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.85rem;
  color: var(--teal-dk);
  margin-bottom: 24px;
}
.pkg-fit strong { font-weight: 600; }
.pkg-cta {
  display: block;
  text-align: center;
  background: var(--teal);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s;
}
.pkg-cta:hover { background: var(--teal-dk); }
.pkg.featured .pkg-cta { background: var(--gold); }
.pkg.featured .pkg-cta:hover { background: #b07f22; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.65);
  padding: 60px 24px 30px;
}
.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img {
  height: 36px;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 300px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--teal); }
.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
}
.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--teal); }
.footer-social svg { width: 20px; height: 20px; }

/* ═══════════════════════════════════════════════════════════
   CONTENT PROSE (for longer text pages)
   ═══════════════════════════════════════════════════════════ */
.prose {
  max-width: 760px;
  margin: 0 auto;
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.8;
}
.prose h2 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 48px 0 16px;
}
.prose h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 32px 0 12px;
}
.prose p { margin-bottom: 16px; }
.prose ul, .prose ol {
  margin: 0 0 20px 24px;
  list-style: disc;
}
.prose ol { list-style: decimal; }
.prose li {
  margin-bottom: 8px;
  line-height: 1.7;
}
.prose strong { font-weight: 600; color: var(--charcoal); }
.prose a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.prose a:hover { color: var(--teal-dk); }
.prose .callout {
  background: var(--teal-lt);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin: 24px 0;
  font-size: 0.9rem;
  color: var(--teal-dk);
}
.prose .callout strong { color: var(--teal-dk); }

/* ═══════════════════════════════════════════════════════════
   MAP IMAGE
   ═══════════════════════════════════════════════════════════ */
.map-container {
  max-width: 700px;
  margin: 32px auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.map-container img {
  width: 100%;
  height: auto;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .two-col-img img { height: 300px; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(100vh - 68px);
    height: calc(100dvh - 68px);
    background: rgba(30,42,42,0.98);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 32px;
    gap: 2px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 999;
    display: flex;
  }
  .nav-links.open {
    transform: translateX(0);
  }
  .nav-links a {
    font-size: 1rem;
    padding: 12px 16px;
    width: 100%;
    border-radius: 8px;
    white-space: normal;
  }
  .nav-phone {
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .nav-cta {
    margin-top: 4px;
    text-align: center;
    justify-content: center;
  }
  .nav-toggle { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
  .hero { padding: 120px 20px 80px; min-height: 70vh; }
  .hero-inner { padding: 110px 20px 60px; }
  .section { padding: 60px 20px; }
  .pkg-header, .pkg-body { padding-left: 22px; padding-right: 22px; }
  .pricing-table { font-size: 0.85rem; }
  .pricing-table th, .pricing-table td { padding: 10px 12px; }
}
