:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-soft: #f4f8ff;
  --primary: #1f3f5b;
  --secondary: #2f6ea4;
  --accent: #14a3b8;
  --orange: #f5842a;
  --orange-soft: #fff4ea;
  --text: #223547;
  --muted: #617485;
  --border: #e4ebf3;
  --shadow: 0 16px 32px rgba(32, 64, 98, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

.container {
  width: 100%;
  margin: 0;
  padding-inline: 1.5rem;
}

#top {
  scroll-margin-top: 130px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(19, 59, 108, 0.08);
  padding: 0.45rem 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 108px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  color: var(--primary);
}

.brand-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: min(520px, 44vw);
  max-height: 72px;
}

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

.menu a {
  display: inline-flex;
  align-items: center;
  height: 2.4rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.menu a:hover,
.menu a:focus-visible {
  color: var(--orange);
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.3rem;
  border: 0;
  background: #0a66c2;
  color: #ffffff;
  text-decoration: none;
}

.linkedin-glyph {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.45rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #ffffff;
  transform: translateY(0.02em);
}

.hero {
  padding: 3.3rem 0 2.8rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.53) 0%, rgba(255, 255, 255, 0.53) 45%, rgba(255, 255, 255, 1) 100%),
    url("hero-mountain.jpg");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center 38%;
}

.hero-copy .eyebrow {
  color: var(--orange);
  font-size: 1.01rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.eyebrow {
  font-weight: 800;
  letter-spacing: 0.09em;
  font-size: 0.78rem;
  color: var(--orange);
  margin: 0 0 0.9rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
}

h1,
h2 {
  font-family: "Rajdhani", "Manrope", sans-serif;
  letter-spacing: 0.01em;
  color: #112841;
}

h1 {
  font-size: clamp(2rem, 3.8vw, 3.35rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.45rem);
}

h3 {
  font-size: 1.2rem;
}

.lead {
  font-size: 1.08rem;
  max-width: 60ch;
  color: #0f2134;
  font-weight: 600;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.22);
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  margin: 1rem 0 1.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0.8rem;
  background: linear-gradient(135deg, #f99a4e, #f5842a);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 0.86rem 1.26rem;
  box-shadow: 0 10px 22px rgba(245, 132, 42, 0.28);
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-small {
  padding: 0.6rem 1rem;
  font-size: 0.92rem;
}

.btn-ghost {
  background: #ffffff;
  color: var(--primary);
  border: 1px solid #d9e6f3;
  box-shadow: 0 6px 14px rgba(31, 63, 91, 0.09);
}

.quick-stats {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.quick-stats li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  padding: 0.85rem;
}

.quick-stats strong {
  display: block;
  color: var(--primary);
}

.quick-stats span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-card {
  background: #ffffff;
  border: 1px solid #f1d4bc;
  border-radius: 1.2rem;
  padding: 1.2rem;
  box-shadow: 0 20px 35px rgba(245, 132, 42, 0.12);
  align-self: start;
}

.hero-card p,
.hero-card li {
  color: var(--muted);
}

.hero-card ul {
  margin: 0.75rem 0 0.7rem 1.1rem;
  padding: 0;
}

.text-link {
  color: var(--orange);
  font-weight: 700;
  text-decoration: none;
}

.trust-bar {
  border-top: 1px solid #f4dcc8;
  border-bottom: 1px solid #f4dcc8;
  background: linear-gradient(90deg, #fff5eb, #fffaf4);
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.trust-items p {
  margin: 0;
  font-weight: 600;
  color: #17395d;
  flex: 1 1 0;
  text-align: center;
}

.section {
  padding: 4rem 0;
}

.section-head {
  max-width: 70ch;
  margin-bottom: 1.5rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.booking-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.booking-btn {
  margin-top: 0.95rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 4px solid rgba(245, 132, 42, 0.62);
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: 0 10px 24px rgba(31, 63, 91, 0.07);
}

.card p {
  margin-bottom: 0;
  color: var(--muted);
}

.section-contrast {
  background: linear-gradient(180deg, #fdfefe, #f7fbff);
  border-block: 1px solid var(--border);
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

.checks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.checks li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.8rem;
  padding: 0.75rem 0.9rem;
  font-weight: 600;
}

.quotes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

blockquote {
  margin: 0;
  background: var(--surface);
  border-left: 4px solid var(--accent);
  border-radius: 0.7rem;
  padding: 1rem;
  color: var(--muted);
}

.cta {
  background: linear-gradient(180deg, #ffffff 0%, #f9fcff 100%);
  color: var(--text);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta .eyebrow,
.cta h2 {
  color: var(--primary);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 1.3rem;
}

.contact-options {
  margin-top: 1rem;
  color: #2a4056;
}

.contact-options p {
  margin: 0.25rem 0;
}

.contact-link {
  color: #1f3f5b;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-form {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.1rem;
  display: grid;
  gap: 0.45rem;
  box-shadow: 0 14px 28px rgba(31, 63, 91, 0.08);
}

.contact-form label {
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #fff;
  border: 1px solid #d4dceb;
  border-radius: 0.6rem;
  padding: 0.72rem;
  font: inherit;
}

.site-footer {
  padding: 1.2rem 0;
  background: #1d3a52;
  color: #d6e4f5;
}

.footer-link {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.mobile-call {
  display: none;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0.65rem;
  z-index: 19;
  text-decoration: none;
  border-radius: 0.8rem;
  padding: 0.75rem 1.2rem;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, #f28a3f, #c85f1d);
  box-shadow: 0 10px 24px rgba(112, 56, 18, 0.35);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 900px) {
  .btn-small {
    display: none;
  }

  .nav {
    flex-wrap: wrap;
    align-items: center;
    min-height: auto;
    padding-bottom: 0.5rem;
  }

  .menu {
    order: 3;
    display: flex;
    width: 100%;
    gap: 1rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 0.2rem;
  }

  .menu a {
    height: auto;
    white-space: nowrap;
    font-size: 0.94rem;
  }

  .hero-grid,
  .split,
  .cta-grid,
  .quotes {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .image-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .booking-cards {
    grid-template-columns: 1fr;
  }

  .trust-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .quick-stats {
    grid-template-columns: 1fr;
  }

  .section,
  .hero {
    padding: 2.2rem 0;
  }

  .hero {
    padding-top: 3.1rem;
    padding-bottom: 2.2rem;
    background-position: center 0%;
  }

  .mobile-call {
    display: inline-flex;
  }

  .brand-logo {
    max-width: min(420px, 72vw);
    max-height: 60px;
  }

}

.image-showcase {
  background: radial-gradient(circle at 12% 18%, #fff6ee 0%, #f5f8fc 45%, #eaf2fc 100%);
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.image-card {
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.image-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

.image-card figcaption {
  padding: 0.9rem;
  color: var(--muted);
  font-weight: 600;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(16, 30, 45, 0.5);
  z-index: 40;
  padding: 1rem;
}

.modal.open {
  display: flex;
}

.modal-card {
  width: min(460px, 94vw);
  background: #fff;
  border-radius: 1rem;
  border: 1px solid var(--border);
  box-shadow: 0 16px 36px rgba(18, 42, 64, 0.22);
  padding: 1.2rem;
}

.modal-card h3 {
  margin: 0 0 0.45rem;
}

.modal-card p {
  margin: 0 0 1rem;
  color: var(--muted);
}
