
:root {
  --primary: #1F3B4D;
  --accent: #C36C3F;
  --steel: #B0B3B5;
  --bg: #F8F9FA;
  --sky: #66A8CC;
  --text: #0f172a;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; color: var(--text); background: var(--bg); }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; }

.container { width: min(1100px, 92%); margin: 0 auto; }

.nav { position: sticky; top: 0; z-index: 50; backdrop-filter: saturate(180%) blur(8px); background: rgba(248,249,250,0.85); border-bottom: 1px solid #e6e9ee; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 1.4rem 0; }
.brand img { height: 56px; width: auto; display:block; }

.nav a.btn { background: var(--primary); color: white; padding: .6rem .9rem; border-radius: 10px; font-weight: 600; }
.nav a.btn:hover { background: #163040; }

.hero { position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-image:
    image-set(url('../images/pikes-peak-hero.jpg') type('image/jpeg') 1x, url('../images/pikes-peak-hero.svg') type('image/svg+xml') 1x);

  background-image: image-set(url('../images/pikes-peak-hero.jpg') type('image/jpeg') 1x, url('../images/pikes-peak-hero.svg') type('image/svg+xml') 1x);
  background-size: cover;
  background-position: center;
  padding: 72px 0 56px;
  border-bottom: 1px solid #e6e9ee;
}

.hero p { font-size: clamp(1rem, 2.5vw, 1.2rem); margin: 0 0 22px; color: #334155; }
.hero .cta { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary { background: var(--accent); color: #fff; border: none; padding: .9rem 1.1rem; border-radius: 12px; font-weight: 700; cursor: pointer; }
.btn-primary:hover { filter: brightness(0.95); }
.btn-secondary { background: transparent; color: var(--primary); border: 2px solid var(--primary); padding: .8rem 1rem; border-radius: 12px; font-weight: 700; cursor: pointer; }
.btn-secondary:hover { background: #e7edf1; }

.pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.pill { background: #fff; border: 1px solid #e7eaee; border-radius: 999px; padding: .35rem .7rem; font-size: .9rem; color: #334155; }

.section { padding: 56px 0; }
.section h2 { color: var(--primary); margin: 0 0 20px; font-size: clamp(1.6rem, 3.5vw, 2rem); }
.grid { display: grid; gap: 18px; grid-template-columns: repeat(1, minmax(0, 1fr)); }
.card { background: #fff; border: 1px solid #e6e9ee; border-radius: 14px; padding: 18px; }
.card h3 { margin: 0 0 8px; color: #0f172a; }
.card p { margin: 0; color: #475569; }
.card .price { font-weight: 800; color: var(--accent); margin-top: 10px; }

@media (min-width: 720px) {
  .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero-wrap { display: grid; gap: 24px; grid-template-columns: 1.2fr .8fr; align-items: center; }
}

.badge { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px dashed var(--steel); padding: .5rem .75rem; border-radius: 12px; color: #334155; }

.packages .card { border: 2px solid #e6e9ee; }
.packages .card.featured { border-color: var(--accent); box-shadow: 0 6px 24px rgba(195,108,63,0.15); }
.card ul { margin: 10px 0 0 18px; padding: 0; }
.card li { margin: 6px 0; }

.testimonials blockquote { margin: 0; padding: 0; font-style: italic; color: #475569; }
.testimonials cite { display: block; margin-top: 8px; color: #0f172a; font-weight: 600; }

.contact form { display: grid; gap: 12px; }
input, textarea { width: 100%; padding: .8rem 1rem; border: 1px solid #d7dbe1; border-radius: 10px; font-size: 1rem; }
label span { color: #64748b; font-size: .9rem; }
button[type="submit"] { background: var(--primary); color: white; padding: .9rem 1.1rem; border-radius: 12px; font-weight: 700; border: none; cursor: pointer; }
button[type="submit"]:hover { background: #163040; }

.footer { background: #0f172a; color: #cbd5e1; padding: 26px 0; margin-top: 32px; }
.footer a { color: #e2e8f0; }
.footer .small { color: #94a3b8; font-size: .9rem; }

.brand{display:flex;align-items:center;gap:10px;padding:6px 0;}

 .hero p { text-shadow: 0 1px 2px rgba(0,0,0,.18); }


.brand{display:flex;align-items:center;gap:12px;padding:10px 0;}
.brand-text{line-height:1.05;}
.brand-title{font-weight:800;color:var(--primary);font-size:clamp(1.05rem,2vw,1.25rem);white-space:nowrap;}
.brand-tag{color:#4b5b68;font-size:.9rem;white-space:nowrap;}


/* Optional: remove overlay entirely by adding class "no-overlay" to the <section class="hero"> */
.hero.no-overlay {
  background-image: image-set(url('../images/pikes-peak-hero.jpg') type('image/jpeg') 1x, url('../images/pikes-peak-hero.svg') type('image/svg+xml') 1x);
}

.hero h1 { text-shadow: 0 3px 14px rgba(0,0,0,.30); }

/* Uniform neutral overlay for readability */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  /* Neutral gray top fade for readability over sky */
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.22) 0%,
    rgba(0,0,0,0.16) 22%,
    rgba(0,0,0,0.12) 35%,
    rgba(0,0,0,0.06) 50%,
    rgba(0,0,0,0.00) 62%
  );
  pointer-events: none;
}
/* Disable overlay if needed by adding 'no-overlay' class */
.hero.no-overlay::before { background: transparent; }

/* Readability panel behind hero text */
.copy{
  background: rgba(255,255,255,0.68);
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
@media (max-width: 719px){
  .copy{ background: rgba(255,255,255,0.40); padding: 12px; border-radius: 12px; }
}

/* Thank-you card styling */
#contact .card h3 { margin-top: 0; }


/* --- Testimonials Carousel --- */
.testimonials-carousel{
  background: linear-gradient(180deg, #E6F4F9 0%, #D9EFF6 100%);
  border-top: 1px solid #e6e9ee;
  border-bottom: 1px solid #e6e9ee;
  padding-top: 48px;
  padding-bottom: 48px;
}
.testimonials-carousel h2{
  color: var(--primary);
  margin-bottom: 18px;
}
.reviews-wrap{
  position: relative;
  min-height: 130px;
}
.review-card{
  background: #ffffffcc;
  border: 1px solid #e6e9ee;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 10px 28px rgba(17, 24, 39, .06);
  transition: opacity .5s ease, transform .5s ease;
}
.review-card.fade-out{
  opacity: 0;
  transform: translateY(8px);
}
.review-card blockquote{
  margin: 0;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: #334155;
  line-height: 1.6;
}
.review-card cite{
  display: block;
  margin-top: 10px;
  color: #0f172a;
  font-weight: 600;
}
