/* =========================================================
   Kedarkantha Trek From Delhi — Design System
   ========================================================= */

:root {
  /* Color palette — alpine mountain */
  --ink: #0b1a24;
  --ink-2: #1a2c38;
  --ink-3: #2b3e4a;
  --muted: #5c6b76;
  --muted-2: #8a97a1;
  --line: #e6e8ea;
  --line-2: #d4d8db;
  --bg: #faf8f4;
  --bg-2: #f2eee6;
  --surface: #ffffff;
  --primary: #0f2c3f;          /* deep alpine */
  --primary-2: #163d55;
  --accent: #d97706;           /* sunrise amber */
  --accent-2: #ea580c;
  --accent-soft: #fef3e2;
  --success: #16a34a;
  --danger: #dc2626;
  --glacier: #4a90a4;
  --gold: #b98a2f;

  /* Type scale */
  --font-serif: "Fraunces", "Playfair Display", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --step--1: clamp(0.83rem, 0.79rem + 0.15vw, 0.9rem);
  --step-0: clamp(0.95rem, 0.9rem + 0.2vw, 1.05rem);
  --step-1: clamp(1.1rem, 1rem + 0.4vw, 1.25rem);
  --step-2: clamp(1.35rem, 1.15rem + 0.7vw, 1.6rem);
  --step-3: clamp(1.7rem, 1.35rem + 1.2vw, 2.2rem);
  --step-4: clamp(2.2rem, 1.7rem + 2vw, 3.2rem);
  --step-5: clamp(2.8rem, 2rem + 3vw, 4.6rem);
  --step-6: clamp(3.4rem, 2.2rem + 4.5vw, 6rem);

  /* Layout */
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --shadow-sm: 0 1px 2px rgba(15,44,63,.05), 0 1px 3px rgba(15,44,63,.06);
  --shadow: 0 8px 24px -12px rgba(15,44,63,.18), 0 4px 12px -6px rgba(15,44,63,.08);
  --shadow-lg: 0 24px 60px -20px rgba(15,44,63,.28), 0 10px 30px -10px rgba(15,44,63,.14);

  --container: 1200px;
  --gutter: clamp(1.2rem, 3vw, 2.4rem);
  --section-pad: clamp(3.5rem, 6vw, 6.5rem);

  --transition: 220ms cubic-bezier(.4,0,.2,1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, video, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font: inherit; color: inherit; }
ul, ol { list-style: none; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
}
h1 { font-size: var(--step-5); font-weight: 400; letter-spacing: -0.02em; }
h2 { font-size: var(--step-4); font-weight: 400; letter-spacing: -0.02em; }
h3 { font-size: var(--step-3); font-weight: 500; }
h4 { font-size: var(--step-2); font-weight: 500; }
h5 { font-size: var(--step-1); font-weight: 600; }
p { color: var(--ink-2); }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}

.lead { font-size: var(--step-1); line-height: 1.55; color: var(--ink-2); font-weight: 400; }

/* Layout helpers */
.container {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
}
.section { padding-block: var(--section-pad); }
.section--tight { padding-block: clamp(2.5rem, 4vw, 4rem); }
.section--dark { background: var(--ink); color: #e8ebee; }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #f6f7f8; }
.section--dark p { color: #b8c2c8; }
.section--cream { background: var(--bg-2); }

.grid { display: grid; gap: 2rem; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }

.stack > * + * { margin-top: 1rem; }
.stack-lg > * + * { margin-top: 1.75rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.65rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: all var(--transition);
  cursor: pointer;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(217,119,6,.45);
}
.btn--primary:hover { background: var(--accent-2); transform: translateY(-2px); box-shadow: 0 12px 28px -8px rgba(217,119,6,.55); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--primary); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--outline:hover { border-color: var(--ink); background: var(--ink); color: #fff; }
.btn--ghost { color: var(--ink); }
.btn--ghost:hover { color: var(--accent); }
.btn--lg { padding: 1.1rem 2rem; font-size: 1rem; }
.btn--sm { padding: 0.6rem 1.2rem; font-size: 0.85rem; }

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid rgba(15,44,63,.06);
  transition: all var(--transition);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 1.5rem;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.nav__brand-mark {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.nav__brand-sub {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav__links a {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--ink-2);
  position: relative;
  padding: 0.4rem 0;
}
.nav__links a:hover { color: var(--accent); }
.nav__links a.is-active { color: var(--ink); }
.nav__links a.is-active::after {
  content: ""; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--accent); border-radius: 2px;
}
.nav__cta { display: flex; align-items: center; gap: 0.7rem; }
.nav__phone {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.88rem; font-weight: 600; color: var(--ink);
}
.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 10px;
  align-items: center; justify-content: center;
  background: var(--bg-2);
}
.nav__toggle span {
  display: block; width: 20px; height: 2px;
  background: var(--ink); position: relative;
}
.nav__toggle span::before, .nav__toggle span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--ink);
  transition: transform var(--transition);
}
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after { top: 6px; }
.nav__toggle.is-open span { background: transparent; }
.nav__toggle.is-open span::before { top: 0; transform: rotate(45deg); }
.nav__toggle.is-open span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 960px) {
  .nav__links, .nav__phone { display: none; }
  .nav__toggle { display: flex; }
  .nav__drawer {
    position: fixed;
    top: 76px; left: 0; right: 0; bottom: 0;
    background: #fff;
    padding: 2rem var(--gutter);
    display: none;
    z-index: 99;
    overflow-y: auto;
  }
  .nav__drawer.is-open { display: block; }
  .nav__drawer ul { display: flex; flex-direction: column; gap: 0; list-style: none; }
  .nav__drawer li { border-bottom: 1px solid var(--line); }
  .nav__drawer a {
    display: block; padding: 1.1rem 0; font-size: 1.1rem;
    font-family: var(--font-serif); color: var(--ink);
  }
  .nav__drawer-cta { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
  .nav__drawer-cta .btn { width: 100%; }
}
@media (min-width: 961px) {
  .nav__drawer { display: none; }
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute; inset: 0; z-index: -2;
}
.hero__media video, .hero__media img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(11,26,36,.15) 0%, rgba(11,26,36,.55) 60%, rgba(11,26,36,.9) 100%);
}
.hero__inner {
  width: 100%;
  padding-block: 5rem 4rem;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 1.5rem;
}
.hero__badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.hero h1 {
  color: #fff;
  max-width: 18ch;
  margin-bottom: 1.25rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent-soft);
  font-weight: 300;
}
.hero__sub {
  max-width: 46ch;
  color: rgba(255,255,255,.85);
  font-size: var(--step-1);
  line-height: 1.5;
  margin-bottom: 2rem;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.18);
}
.hero__meta-item {
  display: flex; flex-direction: column; gap: 0.15rem;
}
.hero__meta-label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,.6);
}
.hero__meta-value {
  font-family: var(--font-serif); font-size: 1.6rem; color: #fff; font-weight: 400;
}
.hero__rating {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: #fff;
}
.hero__stars { color: #fbbf24; letter-spacing: 2px; font-size: 1rem; }

/* Section headers */
.section-head {
  max-width: 720px;
  margin-bottom: 3.5rem;
}
.section-head--center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 1rem; }
.section-head h2 { margin-bottom: 1rem; }
.section-head p { font-size: var(--step-1); color: var(--muted); line-height: 1.55; }

/* Cards */
.card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--line);
  transition: all var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid; place-items: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
}
.card h3, .card h4 { margin-bottom: 0.6rem; }
.card p { color: var(--muted); }

/* Feature grid (Why Choose) */
.feature {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.feature:hover { border-color: transparent; box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.feature:hover::before { transform: scaleX(1); }
.feature__num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 1rem;
  font-style: italic;
}
.feature h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }
.feature p { color: var(--muted); font-size: 0.95rem; }

/* Package cards */
.packages { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr)); align-items: stretch; }
.package {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 1px solid var(--line);
  position: relative;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.package > .btn { margin-top: auto; }
.package--featured {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.package--featured h3, .package--featured .package__price { color: #fff; }
.package--featured .package__inclusion { color: rgba(255,255,255,.75); }
.package--featured .package__inclusion svg { color: var(--accent); }
.package__badge {
  position: absolute; top: 1.5rem; right: 1.5rem;
  padding: 0.35rem 0.8rem;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.package__type {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 0.5rem;
}
.package--featured .package__type { color: var(--accent); }
.package h3 { font-size: 1.6rem; margin-bottom: 1rem; }
.package__price-row {
  display: flex; align-items: baseline; gap: 0.75rem;
  margin-bottom: 0.4rem;
}
.package__price {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
}
.package__price-old {
  font-size: 1.1rem; color: var(--muted); text-decoration: line-through;
}
.package__per { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.75rem; }
.package--featured .package__per { color: rgba(255,255,255,.6); }
.package__inclusions { list-style: none; margin: 0 0 2rem; padding: 0; }
.package__inclusion {
  display: flex; align-items: flex-start; gap: 0.65rem;
  padding: 0.6rem 0;
  font-size: 0.93rem;
  color: var(--ink-2);
  border-bottom: 1px solid var(--line);
}
.package--featured .package__inclusion { border-color: rgba(255,255,255,.1); }
.package__inclusion:last-child { border-bottom: none; }
.package__inclusion svg { flex-shrink: 0; color: var(--accent); margin-top: 3px; }
.package .btn { width: 100%; }

/* Overview / split section */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__content h2 { margin-bottom: 1.25rem; }
.split__content p { margin-bottom: 1rem; color: var(--ink-2); font-size: var(--step-1); line-height: 1.7; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split--reverse .split__media { order: 0; }
  .split__media { aspect-ratio: 4/3; }
}

/* Quick facts strip */
.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  overflow: hidden;
}
.fact {
  padding: 1.75rem 1.5rem;
  border-right: 1px solid var(--line);
}
.fact:last-child { border-right: none; }
@media (max-width: 720px) { .fact { border-right: none; border-bottom: 1px solid var(--line); } .fact:last-child { border-bottom: none; } }
.fact__label {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 0.5rem;
}
.fact__value {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
}
.fact__sub { font-size: 0.85rem; color: var(--muted); margin-top: 0.25rem; }

/* Fact list (info list) */
.info-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1.25rem;
  padding: 2rem;
  background: var(--bg-2);
  border-radius: var(--radius-lg);
}
.info-list__item { display: flex; flex-direction: column; gap: 0.2rem; }
.info-list__label { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.info-list__value { font-size: 1rem; font-weight: 500; color: var(--ink); }

/* Itinerary */
.itinerary { display: grid; gap: 1rem; }
.day {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.day:hover { box-shadow: var(--shadow); border-color: transparent; }
.day__head {
  display: flex; align-items: center; gap: 1.25rem;
  padding: 1.5rem 1.75rem;
  cursor: pointer;
  width: 100%;
  text-align: left;
  transition: background var(--transition);
}
.day__head:hover { background: var(--bg-2); }
.day__num {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid; place-items: center;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
}
.day__title { flex: 1; }
.day__title h4 { font-size: 1.15rem; margin-bottom: 0.15rem; }
.day__title p { font-size: 0.85rem; color: var(--muted); }
.day__arrow {
  transition: transform var(--transition);
  color: var(--muted);
  flex-shrink: 0;
}
.day.is-open .day__arrow { transform: rotate(180deg); color: var(--accent); }
.day__body {
  padding: 0 1.75rem;
  max-height: 0;
  overflow: hidden;
  transition: all var(--transition);
}
.day.is-open .day__body {
  max-height: 800px;
  padding: 0 1.75rem 1.75rem;
}
.day__body ul { list-style: none; padding: 0; }
.day__body ul li {
  padding: 0.4rem 0 0.4rem 1.25rem;
  position: relative;
  color: var(--ink-2);
  font-size: 0.95rem;
}
.day__body ul li::before {
  content: ""; position: absolute; left: 0; top: 1rem;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
}
.day__stats {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  margin-top: 1rem; padding-top: 1rem;
  border-top: 1px dashed var(--line-2);
}
.day__stat { font-size: 0.85rem; color: var(--muted); }
.day__stat strong { color: var(--ink); font-weight: 600; }

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: 1.5rem;
}
.testimonial {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
}
.testimonial__quote {
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 1;
  color: var(--accent);
  font-weight: 400;
  opacity: 0.3;
  position: absolute;
  top: 1.5rem; right: 1.75rem;
}
.testimonial__stars { color: #fbbf24; margin-bottom: 1rem; letter-spacing: 3px; }
.testimonial__body {
  color: var(--ink-2);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.testimonial__author {
  display: flex; align-items: center; gap: 0.9rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.testimonial__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-2);
  display: grid; place-items: center;
  font-family: var(--font-serif);
  color: var(--accent);
  font-weight: 500;
  flex-shrink: 0;
  overflow: hidden;
}
.testimonial__avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial__name { font-weight: 600; color: var(--ink); font-size: 0.95rem; }
.testimonial__meta { font-size: 0.8rem; color: var(--muted); }

/* FAQ Accordion */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__q {
  width: 100%;
  padding: 1.5rem 0;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
  transition: color var(--transition);
}
.faq__q:hover { color: var(--accent); }
.faq__icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg-2);
  display: grid; place-items: center;
  position: relative;
  transition: all var(--transition);
}
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute;
  background: var(--ink);
  transition: transform var(--transition);
}
.faq__icon::before { width: 12px; height: 2px; }
.faq__icon::after { width: 2px; height: 12px; }
.faq__item.is-open .faq__icon { background: var(--accent); }
.faq__item.is-open .faq__icon::before, .faq__item.is-open .faq__icon::after { background: #fff; }
.faq__item.is-open .faq__icon::after { transform: rotate(90deg); }
.faq__a {
  max-height: 0; overflow: hidden;
  transition: all var(--transition);
  color: var(--ink-2);
  line-height: 1.7;
}
.faq__item.is-open .faq__a { max-height: 500px; padding-bottom: 1.5rem; }

/* Enquiry / Booking form */
.enquiry {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 860px) { .enquiry { grid-template-columns: 1fr; gap: 2.5rem; } }
.enquiry__form {
  background: var(--surface);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.enquiry__form h3 { margin-bottom: 0.5rem; }
.enquiry__form p { margin-bottom: 1.75rem; color: var(--muted); font-size: 0.95rem; }
.form-row { display: grid; gap: 1rem; margin-bottom: 1rem; }
.form-row.is-two { grid-template-columns: 1fr 1fr; }
@media (max-width: 500px) { .form-row.is-two { grid-template-columns: 1fr; } }
.field label {
  display: block;
  font-size: 0.82rem; font-weight: 600;
  color: var(--ink); margin-bottom: 0.4rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--line-2);
  border-radius: 12px;
  background: var(--bg);
  transition: all var(--transition);
  font-size: 0.95rem;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); background: #fff;
  box-shadow: 0 0 0 4px rgba(217,119,6,.12);
}
.field textarea { resize: vertical; min-height: 100px; }
.field.hp { position: absolute; left: -9999px; }
.form-status { margin-top: 1rem; padding: 0.9rem 1rem; border-radius: 10px; font-size: 0.9rem; display: none; }
.form-status.is-success { display: block; background: #dcfce7; color: #14532d; }
.form-status.is-error { display: block; background: #fee2e2; color: #7f1d1d; }
.form-status.is-loading { display: block; background: var(--bg-2); color: var(--ink-2); }

/* Blog cards */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: 2rem; }
.blog-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all var(--transition);
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.blog-card__media {
  aspect-ratio: 16/10;
  background: var(--bg-2);
  overflow: hidden;
}
.blog-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 800ms cubic-bezier(.2,.6,.2,1); }
.blog-card:hover .blog-card__media img { transform: scale(1.06); }
.blog-card__body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.blog-card__meta { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem; }
.blog-card__body h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }
.blog-card__body p { color: var(--muted); font-size: 0.93rem; margin-bottom: 1rem; flex: 1; }
.blog-card__link { color: var(--ink); font-weight: 600; font-size: 0.9rem; display: inline-flex; gap: 0.35rem; align-items: center; }
.blog-card__link:hover { color: var(--accent); gap: 0.6rem; }

/* Guest story photos (proof-of-real-customer) */
.story-hero {
  max-width: 900px;
  margin: 0 auto 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  box-shadow: var(--shadow-lg);
}
.story-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }
.story-hero__caption {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin: -1.5rem auto 2.5rem;
  font-style: italic;
}

.story-figure {
  margin: 2.5rem -1rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.story-figure img { width: 100%; height: auto; display: block; }
.story-figure__caption {
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
  background: var(--bg-2);
  text-align: center;
}
@media (min-width: 720px) {
  .story-figure { margin: 3rem -3rem; }
}

.story-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 1rem;
  margin: 2.5rem 0;
}
.story-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  aspect-ratio: 1 / 1;
  transition: transform 400ms cubic-bezier(.2,.6,.2,1);
}
.story-gallery a { display: block; overflow: hidden; border-radius: var(--radius); }
.story-gallery a:hover img { transform: scale(1.05); }

.trekker-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--bg-2);
  border-radius: var(--radius-lg);
  margin: 2.5rem 0;
  border-left: 4px solid var(--accent);
}
.trekker-card__avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--accent-soft);
}
.trekker-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.trekker-card__meta {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.25rem;
}
.trekker-card__name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: 0.15rem;
}
.trekker-card__desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Footer */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding: 5rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
@media (max-width: 500px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__brand { color: #fff; font-family: var(--font-serif); font-size: 1.3rem; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.6rem; }
.footer__brand .nav__brand-mark { background: var(--accent); }
.footer p { color: rgba(255,255,255,.6); font-size: 0.9rem; line-height: 1.65; margin-bottom: 1rem; }
.footer h5 { color: #fff; font-family: var(--font-sans); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1.25rem; }
.footer ul { list-style: none; padding: 0; }
.footer ul li { margin-bottom: 0.7rem; }
.footer ul a { color: rgba(255,255,255,.7); font-size: 0.92rem; transition: color var(--transition); }
.footer ul a:hover { color: var(--accent); }
.footer__contact { font-size: 0.92rem; }
.footer__contact a { color: rgba(255,255,255,.85); display: block; margin-bottom: 0.5rem; }
.footer__contact a:hover { color: var(--accent); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 2rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: 0.85rem; color: rgba(255,255,255,.5);
}
.footer__bottom a { color: rgba(255,255,255,.7); }

/* Floating WhatsApp */
.wa-float {
  position: fixed;
  right: 1.25rem; bottom: 1.25rem;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 12px 30px -8px rgba(37,211,102,.55);
  z-index: 90;
  transition: transform var(--transition);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-4 { margin-bottom: 4rem; }
.mx-auto { margin-inline: auto; }
.max-prose { max-width: 68ch; margin-inline: auto; }
.max-prose p { font-size: var(--step-1); line-height: 1.75; margin-bottom: 1.25rem; }

/* Rich prose page (for blogs, policies) */
.prose {
  max-width: 720px;
  margin-inline: auto;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-2);
}
.prose h2 { font-size: var(--step-3); margin: 2.5rem 0 1rem; color: var(--ink); }
.prose h3 { font-size: var(--step-2); margin: 2rem 0 0.85rem; color: var(--ink); }
.prose h4 { font-size: 1.2rem; margin: 1.5rem 0 0.6rem; color: var(--ink); font-family: var(--font-sans); font-weight: 700; }
.prose p { margin-bottom: 1.25rem; }
.prose ul, .prose ol { margin: 0 0 1.5rem 1.4rem; }
.prose ul li, .prose ol li { margin-bottom: 0.5rem; list-style: disc; }
.prose ol li { list-style: decimal; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--accent-2); }
.prose img { border-radius: var(--radius); margin: 2rem 0; }
.prose blockquote {
  border-left: 3px solid var(--accent);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 1.75rem 0;
  color: var(--ink-2);
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  line-height: 1.5;
}
.prose hr { border: none; border-top: 1px solid var(--line); margin: 3rem 0; }

/* Post header */
.post-header {
  padding: 4rem 0 2rem;
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.post-header .container { max-width: 820px; }
.post-header__eyebrow { color: var(--accent); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; }
.post-header h1 { font-size: var(--step-4); margin-bottom: 1rem; }
.post-header p { color: var(--muted); font-size: 1.1rem; }

/* Page header (non-post) */
.page-header {
  padding: 4rem 0 3rem;
  background:
    linear-gradient(135deg, var(--ink) 0%, var(--primary) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  top: -50%; right: -20%;
  width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(217,119,6,.15), transparent 70%);
}
.page-header .container { position: relative; }
.page-header .eyebrow { color: var(--accent); }
.page-header h1 { color: #fff; margin-bottom: 1rem; max-width: 20ch; }
.page-header p { color: rgba(255,255,255,.75); max-width: 60ch; font-size: 1.15rem; }

/* Contact block */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  padding: 1.75rem;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 1rem;
}
.contact-card__icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid; place-items: center;
}
.contact-card__label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.35rem; }
.contact-card__value { font-family: var(--font-serif); font-size: 1.35rem; color: var(--ink); }
.contact-card__value a { color: var(--ink); }
.contact-card__value a:hover { color: var(--accent); }

/* Animations */
@media (prefers-reduced-motion: no-preference) {
  .fade-up { opacity: 0; transform: translateY(20px); transition: all 700ms cubic-bezier(.2,.6,.2,1); }
  .fade-up.in-view { opacity: 1; transform: translateY(0); }
}

/* Utilities: hide scrollbar */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
