:root {
  /* Role-based palette: Forest Pine, Solar Burst, Cloud Dancer, Slate Dusk, Deep Charcoal */
  /* Primary — Forest Pine #2D4F3E: nature, stability, growth. Headers/footers. */
  --color-primary: #2D4F3E;
  --color-primary-hover: #243d30;
  --on-primary: #fff;
  --on-primary-muted: rgba(255, 255, 255, 0.88);
  /* Secondary / CTA — Solar Burst #E67E22: energy and action. */
  --color-cta: #E67E22;
  --color-cta-hover: #d66d14;
  --color-cta-muted: rgba(230, 126, 34, 0.14);
  /* Accent — Slate Dusk #34495E: reliability. Secondary buttons, icons. */
  --color-accent: #34495E;
  --color-accent-hover: #2c3e50;
  --color-accent-muted: rgba(52, 73, 94, 0.12);
  /* Neutral — Cloud Dancer #F0E7DC: warmth, authenticity. Page background. */
  --bg: #F0E7DC;
  --bg-warm: #ebe2d6;
  /* Surfaces (cards, panels): light on neutral */
  --surface: #f8f6f3;
  --surface-2: #f0ebe5;
  --surface-card: #fff;
  /* Text — Deep Charcoal #1A1A1A: high legibility (mobile/sunlight). */
  --text: #1A1A1A;
  --muted: #4a4a4a;
  --muted-2: #6b6b6b;
  --stroke: rgba(26, 26, 26, 0.12);
  --shadow: 0 12px 40px rgba(26, 26, 26, 0.08);
  /* Hero overlay (use with bg image) — strong left-side dark, fades right for card visibility */
  --hero-overlay: linear-gradient(
    105deg,
    rgba(10, 22, 15, 0.82) 0%,
    rgba(10, 22, 15, 0.68) 38%,
    rgba(10, 22, 15, 0.32) 62%,
    rgba(10, 22, 15, 0.10) 100%
  );
  --radius: 16px;
  --radius-sm: 10px;
  --container: 1120px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.55;
  word-wrap: break-word;
  overflow-x: hidden;
  min-width: 0;
}

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

a:hover {
  text-decoration: underline;
  text-decoration-color: var(--color-cta);
  text-underline-offset: 3px;
}

img,
svg {
  display: block;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 5vw, 24px);
  min-width: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--color-cta);
  color: #fff;
  padding: 10px 12px;
  border-radius: 10px;
  z-index: 9999;
}
.skip-link:focus {
  left: 12px;
  outline: 2px solid var(--color-cta);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--color-primary);
  backdrop-filter: blur(12px);
  color: var(--on-primary);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.02em;
  min-width: 0;
  flex-shrink: 0;
}
.brand-mark {
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  border-radius: 12px;
  background: var(--on-primary);
  opacity: 0.95;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
}
/* Logo image replaces brand-mark */
.brand-logo {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.20));
}
.brand-text {
  font-size: clamp(16px, 4vw, 18px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 160px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.nav-link {
  font-weight: 600;
  font-size: 14px;
  color: var(--on-primary-muted);
  padding: 10px 10px;
  border-radius: 12px;
}
.nav-link:hover {
  color: var(--on-primary);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.12);
}
.nav-link.is-active {
  color: var(--on-primary);
  background: var(--color-cta-muted);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 0 0 1px rgba(230, 126, 34, 0.4);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.menu-btn {
  display: none;
  appearance: none;
  border: 0;
  padding: 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--on-primary);
  cursor: pointer;
  border: 1px solid transparent;
}
.menu-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}
.menu-icon {
  display: inline-block;
  width: 22px;
  height: 14px;
  background: linear-gradient(var(--on-primary), var(--on-primary)) 0 0 / 100% 2px no-repeat,
    linear-gradient(var(--on-primary), var(--on-primary)) 0 50% / 100% 2px no-repeat,
    linear-gradient(var(--on-primary), var(--on-primary)) 0 100% / 100% 2px no-repeat;
  opacity: 0.9;
}

.mobile-menu {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--color-primary);
}
.mobile-menu.is-open {
  display: block;
}
.mobile-menu-inner {
  padding: 14px clamp(16px, 5vw, 24px) 20px;
  display: grid;
  gap: 10px;
  min-width: 0;
}
.mobile-link {
  display: block;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--on-primary);
  font-weight: 600;
}
.mobile-link:hover {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.16);
}
.mobile-cta {
  margin-top: 6px;
}

/* ─── Mobile sub-links (dropdown items in mobile menu) ─── */
.mobile-sub-group {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin: 2px 0 4px 12px;
  padding-left: 10px;
  border-left: 2px solid rgba(255,255,255,0.15);
}
.mobile-sub-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.78);
  font-weight: 500;
  font-size: 13px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.mobile-sub-link:hover {
  text-decoration: none;
  background: rgba(255,255,255,0.12);
  color: #fff;
}
.mobile-sub-link.is-active {
  background: var(--color-cta-muted);
  color: #fff;
  font-weight: 700;
}
.mobile-sub-icon {
  font-size: 1rem;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  flex-shrink: 0;
}

/* ─── Desktop nav dropdown ─── */
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-item > .nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
/* Invisible bridge so hover doesn't break between trigger and dropdown */
.nav-item.has-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 16px;
  z-index: 199;
}
.nav-chevron {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid rgba(255,255,255,0.65);
  transition: transform 0.2s ease, border-top-color 0.2s;
  flex-shrink: 0;
  margin-top: 1px;
}
.nav-item:hover .nav-chevron,
.nav-item:focus-within .nav-chevron,
.nav-item.is-open .nav-chevron {
  transform: rotate(180deg);
  border-top-color: #fff;
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 240px;
  background: var(--color-primary);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 16px;
  padding: 6px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.42), 0 2px 10px rgba(0,0,0,0.24);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 200;
  list-style: none;
  margin: 0;
}
/* caret pointer */
.nav-dropdown::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 7px solid rgba(255,255,255,0.13);
}
.nav-dropdown::after {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 6px solid var(--color-primary);
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown,
.nav-item.is-open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.09);
  margin: 4px 6px;
}
.nav-dropdown-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  padding: 6px 12px 2px;
  display: block;
}
.nav-dropdown li { list-style: none; }
.nav-dropdown li a,
.nav-dropdown-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 10px;
  color: rgba(255,255,255,0.82);
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.14s, color 0.14s;
  line-height: 1.35;
}
.nav-dropdown li a:hover,
.nav-dropdown-link:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
  text-decoration: none;
}
.nav-dropdown li a.is-active,
.nav-dropdown-link.is-active {
  background: var(--color-cta-muted);
  color: #fff;
  font-weight: 700;
}
.dd-icon {
  font-size: 1rem;
  line-height: 1;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  flex-shrink: 0;
}
.dd-text { flex: 1; min-width: 0; }
.dd-title { display: block; }
.dd-meta {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.40);
  font-weight: 400;
  margin-top: 1px;
}
.nav-dropdown-all {
  font-weight: 700 !important;
  color: var(--color-accent) !important;
  background: rgba(230,126,34,0.08) !important;
}
.nav-dropdown-all:hover {
  background: rgba(230,126,34,0.18) !important;
  color: #fff !important;
}

/* ─── Mega-menu (wide dropdown with trek grid) ─── */
.nav-mega {
  min-width: 480px;
}
.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  padding: 2px 0;
}
.mega-grid .nav-dropdown-link {
  border-radius: 8px;
  font-size: 13px;
}
@media (max-width: 600px) {
  .nav-mega { min-width: 300px; }
  .mega-grid { grid-template-columns: 1fr; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none !important;
  user-select: none;
}
.btn:focus-visible {
  outline: 3px solid var(--color-cta);
  outline-offset: 2px;
}
.btn-primary {
  background: var(--color-cta);
  color: #fff;
  border-color: var(--color-cta-hover);
  box-shadow: 0 4px 14px rgba(230, 126, 34, 0.3);
}
.btn-primary:hover {
  background: var(--color-cta-hover);
}
.btn-ghost {
  background: transparent;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
}
.btn-ghost:hover {
  background: var(--color-accent-muted);
  border-color: var(--color-accent-hover);
  color: var(--color-accent-hover);
}
.site-header .btn-ghost {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--on-primary);
}
.site-header .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
}
.btn-sm {
  padding: 10px 12px;
  border-radius: 12px;
}

.section {
  padding: 86px 0;
}
.section-alt {
  background: var(--surface);
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
}

/* ── Treks section — parallax hill background ── */
.section-treks-bg {
  position: relative;
  background:
    linear-gradient(
      to bottom,
      rgba(240, 231, 220, 0.82) 0%,
      rgba(240, 231, 220, 0.72) 40%,
      rgba(240, 231, 220, 0.82) 100%
    ),
    url('./images/mountain-valley-panorama-wide.webp') center / cover no-repeat;
  background-attachment: fixed;
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
}
/* Fallback for mobile (fixed attachment doesn't work on iOS) */
@supports (-webkit-overflow-scrolling: touch) {
  .section-treks-bg {
    background-attachment: scroll;
  }
}
@media (max-width: 768px) {
  .section-treks-bg {
    background-attachment: scroll;
  }
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

h1,
h2,
h3 {
  margin: 0 0 10px;
  letter-spacing: -0.03em;
}
h1 {
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.05;
}
h2 {
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.12;
}
h3 {
  font-size: 18px;
  line-height: 1.2;
}

.lead {
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 16px;
}
.muted {
  color: var(--muted);
}
.fineprint {
  margin-top: 18px;
  font-size: 13px;
  color: var(--muted-2);
}

/* ─── Ken Burns zoom-in — fires once on page load ─── */
@keyframes heroImgZoom {
  from { transform: scale(1.09); }
  to   { transform: scale(1.0);  }
}
@keyframes heroBgZoom {
  from { background-size: 114% auto; }
  to   { background-size: 106% auto; }
}

/* Article / blog pages: <img> inside .article-hero */
.article-hero {
  overflow: hidden;          /* clip the scaled image */
}
.article-hero img {
  animation: heroImgZoom 9s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  will-change: transform;
}

/* Main-site pages: CSS background-image on .hero-with-photo */
.hero-with-photo {
  animation: heroBgZoom 11s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Honour reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .article-hero img,
  .hero-with-photo {
    animation: none;
  }
}

/* Hero: use .hero-with-photo + background-image for landscape photos; UI complements dominant hues. */
.hero {
  padding: 86px 0 74px;
  position: relative;
}
/* Hero gradient: Forest Pine + Slate Dusk (placeholder until you set a real hero image) */
.hero-earth {
  background: linear-gradient(145deg, #2D4F3E 0%, #34495E 35%, #3d5c4e 60%, #4a6b5a 80%, #6b8f7a 100%);
  background-size: cover;
  background-position: center;
}
/* Two-layer overlay: directional left-dark + uniform base for snow/sky images */
.hero-earth::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(10, 22, 15, 0.80) 0%,
      rgba(10, 22, 15, 0.62) 40%,
      rgba(10, 22, 15, 0.28) 65%,
      rgba(10, 22, 15, 0.08) 100%
    ),
    rgba(8, 20, 12, 0.28);
  pointer-events: none;
}
.hero-earth .hero-inner {
  position: relative;
  z-index: 1;
}
.hero-earth .hero-copy {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55), 0 1px 3px rgba(0, 0, 0, 0.4);
}
.hero-earth .hero-copy .muted,
.hero-earth .hero-copy .lead {
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}
.hero-earth .kicker {
  background: rgba(230, 126, 34, 0.88);
  border-color: rgba(230, 126, 34, 0.95);
  color: #fff;
  backdrop-filter: blur(4px);
  text-shadow: none;
}
.hero-earth .stat {
  background: rgba(0, 0, 0, 0.45);
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero-earth .stat dt { color: rgba(255, 255, 255, 0.78); }
.hero-earth .stat dd { color: #fff; text-shadow: 0 1px 4px rgba(0,0,0,0.4); }
/* Ghost button visibility inside photo hero */
.hero-earth .btn-ghost,
.hero-with-photo .btn-ghost {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-earth .btn-ghost:hover,
.hero-with-photo .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: #fff;
}
/* Contact cards inside hero */
.contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.contact-card {
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  padding: 12px 16px;
  min-width: 160px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.contact-card .muted {
  color: #555 !important;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-shadow: none;
  margin-bottom: 4px;
}
.contact-card a,
.contact-card div:not(.muted) {
  color: #1a1a1a !important;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  text-shadow: none;
}
.contact-card a:hover {
  color: #2D4F3E !important;
  text-decoration: underline;
}
.hero-with-photo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-with-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(10, 22, 15, 0.80) 0%,
      rgba(10, 22, 15, 0.62) 40%,
      rgba(10, 22, 15, 0.28) 65%,
      rgba(10, 22, 15, 0.08) 100%
    ),
    rgba(8, 20, 12, 0.28);
  pointer-events: none;
}
.hero-with-photo .hero-inner {
  position: relative;
  z-index: 1;
}
.hero-with-photo .hero-copy {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55), 0 1px 3px rgba(0, 0, 0, 0.4);
}
.hero-with-photo .hero-copy .muted,
.hero-with-photo .hero-copy .lead {
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}
.hero-with-photo .kicker {
  background: rgba(230, 126, 34, 0.88);
  border-color: rgba(230, 126, 34, 0.95);
  color: #fff;
  backdrop-filter: blur(4px);
  text-shadow: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 36px;
  align-items: center;
  min-width: 0;
}
/* Contact page: align form to top so submit is visible without scrolling */
.hero-inner--contact {
  align-items: start;
}
.hero-contact {
  padding: 52px 0 44px;
}
.hero-copy {
  max-width: 60ch;
  min-width: 0;
}
.kicker {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--color-cta-muted);
  border: 1px solid rgba(230, 126, 34, 0.4);
  color: var(--color-cta);
  font-weight: 700;
  font-size: 13px;
  margin: 0 0 14px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
}
.stat {
  background: var(--surface-2);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-sm);
  padding: 12px 12px;
}
.stat dt {
  font-size: 12px;
  color: var(--muted);
}
.stat dd {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-art {
  position: relative;
}
.hero-card {
  border-radius: 24px;
  padding: 18px;
  background: var(--surface-card);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: -120px -120px auto auto;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle at 40% 30%, var(--color-cta-muted), transparent 62%);
  transform: rotate(10deg);
  pointer-events: none;
}
.hero-card-top {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.pill {
  font-size: 12px;
  font-weight: 800;
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--color-cta-muted);
  border: 1px solid rgba(230, 126, 34, 0.4);
  color: var(--color-cta);
}
.pill-soft {
  background: var(--surface-2);
  border: 1px solid var(--stroke);
  color: var(--muted);
}
.hero-card-title {
  margin: 0 0 8px;
}
.hero-card-sub {
  margin: 0 0 16px;
  color: var(--muted);
}
.hero-card-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.meta {
  background: var(--surface-2);
  border: 1px solid var(--stroke);
  border-radius: 14px;
  padding: 10px;
}
.meta-label {
  display: block;
  font-size: 12px;
  color: var(--muted);
}
.meta-value {
  font-weight: 900;
  letter-spacing: -0.02em;
}
.hero-card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: start;
  min-width: 0;
}

.panel {
  background: var(--surface-card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 18px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 10px;
}
.feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 14px;
  background: var(--surface-2);
  border: 1px solid var(--stroke);
}
.icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--color-cta-muted);
  border: 1px solid rgba(52, 73, 94, 0.25);
}
.feature-title {
  font-weight: 900;
  letter-spacing: -0.02em;
}

.checklist {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.checklist li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 16px;
  height: 16px;
  border-radius: 6px;
  background: var(--color-cta-muted);
  border: 1px solid rgba(230, 126, 34, 0.35);
}
.checklist li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 10px;
  width: 7px;
  height: 4px;
  border-left: 2px solid var(--color-cta);
  border-bottom: 2px solid var(--color-cta);
  transform: rotate(-45deg);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  min-width: 0;
}

.card {
  background: var(--surface-card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  min-width: 0;
  overflow-wrap: break-word;
}
.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--color-cta-muted);
  border: 1px solid rgba(230, 126, 34, 0.4);
  color: var(--color-cta);
  font-weight: 900;
  font-size: 12px;
}
.badge-soft {
  background: var(--surface-2);
  border: 1px solid var(--stroke);
  color: var(--muted);
}
.badge-ink {
  background: rgba(45, 42, 38, 0.08);
  border: 1px solid var(--stroke);
  color: var(--muted-2);
}

.trip-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0 12px;
}
.trip-meta dt {
  font-size: 12px;
  color: var(--muted-2);
}
.trip-meta dd {
  margin: 0;
  font-weight: 900;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 8px 0 12px;
}
.price-from {
  font-size: 13px;
  color: var(--muted);
}
.price-value {
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -0.03em;
}
.price-note {
  font-size: 13px;
}

.includes {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.includes li {
  font-size: 12px;
  font-weight: 800;
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--stroke);
  color: var(--muted);
}

.card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.why-card {
  border-radius: var(--radius);
  padding: 18px;
  background: var(--surface-card);
  border: 1px solid var(--stroke);
}

.section-banner {
  padding: 44px 0;
}
.banner-inner {
  border-radius: 26px;
  padding: 22px;
  background: var(--surface-card);
  border: 1px solid var(--stroke);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  min-width: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.service {
  border-radius: var(--radius);
  padding: 18px;
  background: var(--surface-2);
  border: 1px solid var(--stroke);
}

.callout {
  margin-top: 16px;
  border-radius: 22px;
  padding: 18px;
  background: var(--surface-card);
  border: 1px solid var(--stroke);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

/* ─── Guide banner (inline promo strip) ─── */
.guide-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, color-mix(in srgb, var(--color-primary) 80%, var(--color-accent)) 100%);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  margin-block: 0.5rem;
  color: #fff;
}
.guide-banner-text {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.guide-banner-kicker {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(255,255,255,0.6);
}
.guide-banner strong {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
}
.guide-banner p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  max-width: 52ch;
  margin: 0;
}
@media (max-width: 680px) {
  .guide-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem;
  }
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.person {
  border-radius: var(--radius);
  padding: 16px;
  background: var(--surface-card);
  border: 1px solid var(--stroke);
  display: flex;
  gap: 12px;
  align-items: center;
}
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 950;
  letter-spacing: -0.02em;
  background: var(--color-cta-muted);
  color: var(--color-cta);
  border: 1px solid rgba(230, 126, 34, 0.35);
}
.avatar-alt {
  background: var(--surface-2);
  color: var(--text);
  border-color: var(--stroke);
}
.avatar-ink {
  background: rgba(45, 42, 38, 0.12);
  color: var(--muted);
  border-color: var(--stroke);
}
.avatar-soft {
  background: var(--surface-2);
  color: var(--muted);
  border-color: var(--stroke);
}
.avatar-photo {
  width: 90px;
  height: 120px;
  border-radius: 12px;
  object-fit: cover;
  object-position: center 15%;
  border: 2px solid var(--stroke);
  flex-shrink: 0;
  transition: transform .18s ease, box-shadow .18s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.10);
}
.avatar-photo:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
}
.person-body h3 {
  margin: 0 0 4px;
}
.person-body p {
  margin: 0;
}

.carousel-actions {
  display: flex;
  gap: 10px;
}
.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--surface-2);
  border: 1px solid var(--stroke);
  color: var(--text);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.icon-btn:hover {
  background: var(--color-accent-muted);
  color: var(--color-accent);
}
.icon-btn:focus-visible {
  outline: 3px solid var(--color-cta);
  outline-offset: 2px;
}

.carousel {
  position: relative;
}
.quote {
  display: none;
  margin: 0;
  border-radius: 22px;
  padding: 18px;
  background: var(--surface-card);
  border: 1px solid var(--stroke);
}
.quote.is-active {
  display: block;
}
.quote p {
  margin: 0 0 14px;
  font-size: 18px;
  color: var(--text);
}
.quote-by {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--color-cta);
}

.faq {
  display: grid;
  gap: 12px;
}
.faq-item {
  border-radius: var(--radius);
  background: var(--surface-card);
  border: 1px solid var(--stroke);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 16px 16px;
  background: transparent;
  border: 0;
  color: var(--text);
  cursor: pointer;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq-q::after {
  content: "+";
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 12px;
  background: var(--surface-2);
  border: 1px solid var(--stroke);
  font-size: 18px;
}
.faq-q[aria-expanded="true"]::after {
  content: "–";
}
.faq-q:focus-visible {
  outline: 3px solid var(--color-cta);
  outline-offset: -3px;
}
.faq-a {
  padding: 0 16px 16px;
  color: var(--muted);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}
.contact-card {
  border-radius: var(--radius);
  padding: 14px;
  background: var(--surface-card);
  border: 1px solid var(--stroke);
  display: grid;
  gap: 6px;
  min-width: 0;
  overflow-wrap: break-word;
}
.contact-card a {
  word-break: break-word;
}

/* ── Contact hero left column ───────────────────────────────── */
.contact-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-hero-title {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 0.75rem;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.55);
}
.contact-hero-highlight {
  color: #f9c74f;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.contact-hero-lead {
  font-size: 1rem;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
  margin: 0 0 1.1rem;
  line-height: 1.6;
}
.contact-trust-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.contact-trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 5px rgba(0,0,0,0.45);
  line-height: 1.4;
}
.contact-trust-list li span {
  text-shadow: inherit;
}

/* ── Contact cards in hero (new style) ────────────────────── */
.contact-cards-hero {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-card-hero {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 12px;
  padding: 9px 14px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
a.contact-card-hero:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.5);
}
.cch-icon {
  font-size: 1.3rem;
  line-height: 1;
  flex-shrink: 0;
}
.cch-body {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.cch-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-shadow: none;
}
.cch-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Form card ────────────────────────────────────────────── */
.form {
  border-radius: 18px;
  padding: 16px;
  background: var(--surface-card);
  border: 1px solid var(--stroke);
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
}
/* Scrollable form so submit button is always visible */
.form-scroll {
  max-height: calc(100vh - 150px);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,0.2) transparent;
}
.form-scroll::-webkit-scrollbar { width: 4px; }
.form-scroll::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.18); border-radius: 4px; }
/* Send button full-width, more prominent */
.btn-send {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 12px 20px;
  gap: 8px;
  letter-spacing: 0.01em;
}
.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.field {
  display: grid;
  gap: 5px;
  margin-bottom: 9px;
}
.field span {
  font-size: 13px;
  font-weight: 800;
  color: var(--text);
}
.field abbr {
  color: #b54a4a;
  text-decoration: none;
  margin-left: 2px;
  font-weight: 700;
}
input,
textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--stroke);
  color: var(--text);
  border-radius: 14px;
  padding: 9px 11px;
  font: inherit;
}
textarea {
  resize: vertical;
  min-height: 62px;
}
input:focus,
textarea:focus {
  outline: 0;
  border-color: var(--color-cta);
  box-shadow: 0 0 0 3px var(--color-cta-muted);
}
input[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: #b54a4a;
  box-shadow: 0 0 0 3px rgba(181, 74, 74, 0.2);
}

/* ── Form trust header ─────────────────────────────────────── */
.form-trust-header {
  margin-bottom: 1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.form-tagline {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary, #2d6a4f);
  margin: 0 0 0.2rem;
  letter-spacing: -0.01em;
}
.form-sub {
  font-size: 0.88rem;
  color: #555;
  margin: 0 0 0.6rem;
}
.form-required-note {
  font-size: 0.78rem;
  color: #777;
  margin: 0.4rem 0 0;
}
.form-no-spam {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  background: #f0faf4;
  border: 1px solid #b7dfc9;
  border-radius: 8px;
  padding: 0.45rem 0.75rem;
  font-size: 0.79rem;
  color: #2d5a3f;
  line-height: 1.45;
  flex-wrap: wrap;
}
.no-spam-badge {
  font-weight: 700;
  white-space: nowrap;
  color: #1a5c32;
}
/* ── field optional label ───────────────────────────────────── */
.field-optional {
  font-size: 0.78rem;
  font-weight: 400;
  color: #888;
  margin-left: 4px;
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.form-note {
  margin: 0;
  font-size: 0.75rem;
  text-align: center;
  color: #888;
  line-height: 1.4;
}
.form-toast {
  margin-top: 14px;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.5;
  border: 1.5px solid var(--stroke);
  background: var(--surface-2);
  animation: toastIn 0.25s ease;
}
@keyframes toastIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.form-toast.is-success {
  border-color: #2D7D46;
  background: #f0faf3;
  color: #1a5c32;
}
.form-toast.is-error {
  border-color: #b54a4a;
  background: #fff5f5;
  color: #8b3838;
}
/* Loading state on submit button */
button[aria-busy="true"] {
  opacity: 0.75;
  cursor: wait;
  pointer-events: none;
}

.footer {
  padding: 50px 0 26px;
  background: var(--color-primary);
  color: var(--on-primary);
  overflow-x: hidden;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  gap: 18px;
  align-items: start;
  min-width: 0;
}
.footer-brand {
  min-width: 0;
}
.footer-brand .muted {
  overflow-wrap: break-word;
  word-break: break-word;
  color: var(--on-primary-muted);
}
.footer .muted {
  color: var(--on-primary-muted);
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  min-width: 0;
}
.footer-col {
  display: grid;
  gap: 10px;
  align-content: start;
  min-width: 0;
}
.footer-col a,
.footer-col span {
  color: var(--on-primary-muted);
  font-weight: 600;
  font-size: 14px;
  overflow-wrap: break-word;
  word-break: break-word;
}
.footer-title {
  font-weight: 950;
  letter-spacing: -0.02em;
  color: var(--on-primary);
}
.footer-col a:hover {
  color: var(--on-primary);
  text-decoration-color: rgba(255, 255, 255, 0.6);
}
.social {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.social-link:hover {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.35);
}
.social-link svg {
  width: 20px;
  height: 20px;
  fill: var(--on-primary-muted);
}
.social-link:hover svg {
  fill: var(--on-primary);
}

.footer-bottom {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 13px;
  color: var(--on-primary-muted);
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }
  .menu-btn {
    display: inline-flex;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero {
    padding: 56px 0 48px;
  }
  .split {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .card,
  .why-card,
  .service {
    min-width: 0;
  }
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .contact-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 48px 0 44px;
  }
  .hero {
    padding: 40px 0 36px;
  }
  .hero-inner {
    gap: 24px;
  }
  .header-inner {
    min-height: 64px;
    padding: 10px 0;
  }
  .header-actions .btn-ghost {
    display: none;
  }
  .brand-text {
    max-width: 120px;
  }
  .stats {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .contact-cards {
    grid-template-columns: 1fr;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .banner-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 18px;
  }
  .callout {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 16px;
  }
  .footer {
    padding: 36px 0 20px;
  }
  .footer-inner {
    gap: 20px;
  }
  .footer-cols {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .footer-col {
    gap: 8px;
  }
  .panel,
  .form {
    padding: 16px;
  }
  .hero-card {
    padding: 16px;
  }
  .hero-card-meta {
    grid-template-columns: 1fr;
  }
  .card-actions,
  .hero-card-actions {
    flex-direction: column;
  }
  .card-actions .btn,
  .hero-card-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ── Image components ─────────────────────────────── */

/* Trek card top photo */
.card-img-wrap {
  margin: -18px -18px 16px;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--surface-2);
}
.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.card:hover .card-img {
  transform: scale(1.05);
}

/* Horizontal photo strip (3 columns, no gap) */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 300px;
  overflow: hidden;
}
.photo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.photo-strip img:hover {
  transform: scale(1.04);
}

/* Full-width scene image inside a section */
.scene-wrap {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 21/8;
  margin-top: 32px;
}
.scene-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Dual photo pair inside a section */
.photo-pair {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 32px;
}
.photo-pair-item {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
}
.photo-pair-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.photo-pair-item:hover img {
  transform: scale(1.04);
}

@media (max-width: 980px) {
  .photo-strip {
    height: 220px;
  }
  .scene-wrap {
    aspect-ratio: 16/7;
  }
}
@media (max-width: 640px) {
  .photo-strip {
    grid-template-columns: 1fr;
    height: auto;
  }
  .photo-strip img {
    height: 200px;
  }
  .photo-pair {
    grid-template-columns: 1fr;
  }
  .photo-pair-item {
    aspect-ratio: 16/9;
  }
  .scene-wrap {
    aspect-ratio: 4/3;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }
  .header-inner {
    min-height: 58px;
    gap: 8px;
  }
  .brand-text {
    max-width: 100%;
    font-size: 16px;
  }
  .section {
    padding: 40px 0 36px;
  }
  .hero {
    padding: 32px 0 28px;
  }
  h1 {
    font-size: clamp(26px, 8vw, 34px);
  }
  h2 {
    font-size: clamp(22px, 6vw, 28px);
  }
  .lead {
    font-size: 16px;
  }
  .footer {
    padding: 28px 0 18px;
  }
  .footer-bottom {
    margin-top: 18px;
    padding-top: 14px;
    font-size: 12px;
    text-align: center;
  }
  .contact-card,
  .stat {
    padding: 12px;
  }
  .btn {
    padding: 10px 14px;
    font-size: 13px;
  }
  .includes {
    flex-direction: column;
  }
  .includes li {
    width: 100%;
    text-align: center;
  }
}


/* ════════════════════════════════════════════════════════════════════════
   SOCIAL SPOTLIGHT
   ════════════════════════════════════════════════════════════════════════ */

.social-spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
  align-items: start;
}

/* ── Base card ── */
.social-card {
  border-radius: 20px;
  border: 1px solid var(--stroke);
  background: var(--surface-card);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: var(--shadow);
}

/* ── Instagram card ── */
.social-card--insta {
  background: linear-gradient(160deg, #fff8f5 0%, #fff 60%);
  border-color: rgba(220, 39, 67, 0.15);
}

/* ── Facebook card ── */
.social-card--fb {
  background: linear-gradient(160deg, #f0f5ff 0%, #fff 60%);
  border-color: rgba(24, 119, 242, 0.18);
}

/* ── Card header row ── */
.social-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* ── Brand icon circle ── */
.social-brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.social-brand-icon--insta {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.social-brand-icon--fb {
  background: #1877f2;
}

/* ── Platform name + handle ── */
.social-card-meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.social-card-platform {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.social-card-handle {
  font-size: 0.85rem;
  color: var(--muted-2);
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.social-card-handle:hover { text-decoration: underline; }

/* ── Follow / Like button pushed right ── */
.social-follow-btn { margin-left: auto; flex-shrink: 0; }

/* ── Instagram 3-post thumbnail row ── */
.social-posts-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.social-post-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.18s ease;
}
.social-post-slot:hover { transform: translateY(-3px); text-decoration: none; }

.social-post-thumb {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 10px;
  background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 50%, #ffe0b2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border: 1px dashed rgba(220, 39, 67, 0.2);
  transition: background 0.18s;
  overflow: hidden;
}
/* When a real image is inside, make it cover */
.social-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.social-post-slot:hover .social-post-thumb {
  background: linear-gradient(135deg, #f8bbd0 0%, #f48fb1 50%, #ffcc80 100%);
}

.social-post-label {
  font-size: 0.7rem;
  color: var(--muted-2);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ── LightWidget feed wrapper ── */
.instagram-feed-wrap {
  width: 100%;
  min-height: 300px;
  overflow: hidden;
  border-radius: 10px;
}
.instagram-feed-wrap iframe {
  width: 100% !important;
  min-height: 300px;
  display: block;
}

/* ── Instagram card caption ── */
.social-card-caption {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* ── Facebook placeholder post box ── */
.social-fb-placeholder {
  background: rgba(24, 119, 242, 0.04);
  border: 1px solid rgba(24, 119, 242, 0.14);
  border-radius: 12px;
  padding: 1.25rem;
  flex: 1;
}
.social-fb-announcement {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.social-fb-badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #1877f2;
  background: rgba(24, 119, 242, 0.1);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 4px 10px;
  border-radius: 20px;
  width: fit-content;
}
.social-fb-message {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
  font-style: italic;
}
.social-fb-time {
  font-size: 0.75rem;
  color: var(--muted-2);
}

/* ── Facebook button ── */
.btn-fb {
  background: #1877f2;
  color: #fff !important;
  border-color: #1877f2;
}
.btn-fb:hover {
  background: #166fe5;
  border-color: #166fe5;
  text-decoration: none;
}

/* ── Responsive ── */
@media (max-width: 720px) {
  .social-spotlight-grid {
    grid-template-columns: 1fr;
  }
}

/* ── WhatsApp float button ─────────────────────────────────────────── */
/* Temporarily disabled — remove the line below to re-enable */
.wa-float { display: none !important; }
.wa-float-disabled {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  padding: 12px 20px 12px 14px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s, box-shadow 0.2s, padding 0.3s;
  white-space: nowrap;
  max-width: 220px;
  overflow: hidden;
}
.wa-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
  color: #fff;
  text-decoration: none;
}
.wa-float svg { flex-shrink: 0; width: 26px; height: 26px; }
.wa-float-label { white-space: nowrap; }
@media (max-width: 480px) {
  .wa-float { padding: 12px; border-radius: 50%; max-width: 52px; }
  .wa-float-label { display: none; }
}

/* ── Scroll-to-top button ──────────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 90px;
  right: 28px;
  z-index: 998;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--surface);
  border: 1.5px solid var(--stroke);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s, transform 0.25s, box-shadow 0.2s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}
.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.scroll-top:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}
@media (max-width: 480px) {
  .scroll-top { bottom: 80px; right: 16px; }
  .wa-float   { bottom: 16px; left: 16px; }
}

/* ================================================================
   REVIEWS / TESTIMONIALS SECTION  (#reviews)
   rv-* class prefix — zero collision with any other rule
   ================================================================ */

/* Heading */
.rv-head { text-align: center; margin-bottom: 40px; }
.rv-head h2 { margin-bottom: 8px; }
.rv-head .muted { margin-bottom: 18px; }

/* Google rating badge pill */
.rv-gbadge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1.5px solid #d8e8dd; border-radius: 999px;
  padding: 7px 18px 7px 12px; box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.rv-gbadge-score { font-size: 1rem; font-weight: 800; color: #1a2e22; }
.rv-gbadge-stars { color: #FBBC05; font-size: .95rem; letter-spacing: 2px; }
.rv-gbadge-sep   { display: inline-block; width: 1px; height: 14px; background: #c8ddd0; flex-shrink: 0; }
.rv-gbadge-text  { font-size: .78rem; color: #4a6355; font-weight: 500; }

/* 3-column grid on desktop — fixed min-height stops layout collapsing between pages */
.rv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
  min-height: 380px;
}

/* Each column: card + author stacked — hidden by default, JS adds rv-item-on */
.rv-item { display: none; flex-direction: column; }

/* Fade in on every page change (desktop + mobile) — eliminates flicker */
.rv-item.rv-item-on {
  display: flex;
  animation: rv-fadein .28s ease forwards;
}
@keyframes rv-fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Grey card box */
.rv-card {
  background: #f2f2f2;
  border-radius: 14px;
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-sizing: border-box;
  flex: 1;
}

/* Top row: [stars + verified check]  [Google G logo] */
.rv-card-top { display: flex; align-items: flex-start; justify-content: space-between; }
.rv-stars-row { display: flex; align-items: center; gap: 6px; }
.rv-stars { color: #FBBC05; font-size: 1.25rem; letter-spacing: 1px; line-height: 1; }
.rv-check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0;
  background: #1a73e8; color: #fff;
  font-size: 10px; font-weight: 900; line-height: 1;
  font-style: normal; font-family: sans-serif;
}
.rv-glogo { flex-shrink: 0; display: block; }

/* Review text — clamped to 4 lines (~150 chars) */
.rv-text {
  font-size: .88rem; line-height: 1.72;
  color: #2d2d2d; margin: 0; padding: 0;
  border: none; font-style: normal;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* Expanded state — toggled by JS */
.rv-text.rv-text-exp {
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
}
/* Star-only cards: muted italic placeholder */
.rv-no-comment {
  color: #aaa; font-style: italic; font-size: .82rem;
}

/* Author row — BELOW the card */
.rv-author { display: flex; align-items: center; gap: 12px; padding: 14px 4px 0; }
.rv-av {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #1a3c2b, #3a7a50);
  color: #fff; font-size: .75rem; font-weight: 700; letter-spacing: .5px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(26,60,43,.22);
}
.rv-meta { flex: 1; min-width: 0; }
.rv-name { font-size: .875rem; font-weight: 700; color: #1a2e22; display: block; }
.rv-date { font-size: .73rem; color: #777; display: block; margin-top: 2px; }

/* ---- "Read more" expand button inside each card ---- */
.rv-read-more {
  display: inline-block;
  background: none; border: none; padding: 0; margin-top: 8px;
  font-size: .75rem; font-weight: 600; color: #1a73e8;
  cursor: pointer; text-align: left;
  transition: opacity .15s;
}
.rv-read-more:hover { opacity: .75; }

/* ---- Desktop carousel wrapper: fixed max-width, arrows flank the grid ---- */
.rv-carousel-wrap {
  display: flex; align-items: center; gap: 14px;
  max-width: 980px; margin: 0 auto;
}
.rv-carousel-wrap .rv-grid { flex: 1; min-width: 0; }

/* All arrow buttons (shared style) */
.rv-arr {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: #fff; border: 1.5px solid #cdddd4; color: #1a3c2b;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 14px; font-weight: 700; line-height: 1;
  transition: background .15s, border-color .15s, color .15s;
}
.rv-arr:hover { background: #1a3c2b; border-color: #1a3c2b; color: #fff; }

/* Desktop arrows — visible on desktop, hidden on mobile */
.rv-desk-arr { display: flex; }

/* ---- Navigation row (dots + mobile-only arrows) ---- */
.rv-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; margin-top: 22px;
}

/* Dots shared style */
.rv-dots { display: flex; gap: 7px; align-items: center; }
.rv-dot {
  width: 8px; height: 8px; border-radius: 99px;
  background: #bed0c5; border: none; cursor: pointer; padding: 0;
  transition: background .2s, width .25s;
}
.rv-dot.rv-dot-on { background: #1a3c2b; width: 24px; }

/* Desktop: 2 page-dots visible; mobile 6 item-dots hidden */
.rv-desk-dot { display: inline-block; }
.rv-mob-dot  { display: none; }

/* Mobile-only arrows in rv-nav — hidden on desktop */
.rv-mob-only { display: none; }

/* ---- Write a review CTA ---- */
.rv-cta {
  text-align: center; margin-top: 28px;
}
.rv-cta-link {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; border: 1.5px solid #d8e8dd; border-radius: 999px;
  padding: 10px 24px; color: #1a3c2b;
  font-size: .85rem; font-weight: 600; text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  transition: background .15s, box-shadow .15s;
}
.rv-cta-link:hover {
  background: #1a3c2b; color: #fff; border-color: #1a3c2b;
  box-shadow: 0 4px 14px rgba(26,60,43,.18);
}

/* ---- Mobile: single-card view ---- */
@media (max-width: 768px) {
  /* Stack carousel: no side arrows on mobile */
  .rv-carousel-wrap { flex-direction: column; gap: 0; }
  .rv-desk-arr { display: none; }

  /* Single-card layout — base .rv-item is already display:none */
  /* rv-item-on animation already defined globally (rv-fadein) */
  .rv-grid { display: block; min-height: 0; }

  /* Switch to 6 mobile dots, hide 2 desktop dots */
  .rv-desk-dot { display: none; }
  .rv-mob-dot  { display: inline-block; }

  /* Show mobile-only arrows in nav row */
  .rv-mob-only { display: flex; }
}
