:root {
  --ink: #16201d;
  --muted: #5f6d68;
  --paper: #f7f4ee;
  --sand: #e8dfd1;
  --forest: #183a34;
  --forest-2: #25574d;
  --sky: #d7e7eb;
  --stone: #6b7168;
  --copper: #b66b37;
  --gold: #d6a85a;
  --white: #fffdf8;
  --danger: #a73c30;
  --success: #2f745f;
  --line: rgba(22, 32, 29, 0.14);
  --shadow: 0 20px 56px rgba(22, 32, 29, 0.14);
  --shadow-soft: 0 10px 28px rgba(22, 32, 29, 0.08);
  --admin-bg: #f4f7f6;
  --admin-panel: #ffffff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.modal-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a.button,
.action-link {
  min-height: 44px;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--white);
  padding: 10px 14px;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 2.8vw, 44px);
  min-height: 86px;
  padding: 10px clamp(18px, 4vw, 64px);
  color: var(--ink);
  background: rgba(255, 253, 248, 0.96);
  border-bottom: 1px solid rgba(22, 32, 29, 0.1);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(22, 32, 29, 0.04);
  transition: background 180ms ease, color 180ms ease, border 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled,
.site-header.light {
  background: rgba(247, 244, 238, 0.96);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(22, 32, 29, 0.08);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0;
  font-weight: 800;
  letter-spacing: 0;
}

.brand small {
  font-size: 0.72rem;
  color: currentColor;
  opacity: 0.72;
  font-weight: 600;
}

.brand-logo {
  display: block;
  width: 172px;
  flex: 0 0 auto;
}

.brand-logo img {
  width: 100%;
  height: auto;
  mix-blend-mode: normal;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 2px;
  padding: 7px;
  border: 1px solid rgba(22, 32, 29, 0.1);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.header-actions {
  display: none;
  align-items: center;
  gap: 10px;
}

.desktop-nav a {
  position: relative;
  padding: 10px 12px;
  border-radius: 4px;
  white-space: nowrap;
  color: rgba(22, 32, 29, 0.82);
  transition: color 160ms ease, background 160ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--copper);
  transition: transform 160ms ease;
}

.desktop-nav a:hover {
  color: var(--forest);
  background: rgba(23, 57, 49, 0.07);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.desktop-nav a.is-active {
  color: var(--forest);
  background: rgba(23, 57, 49, 0.1);
}

.desktop-nav a.is-active::after {
  transform: scaleX(1);
}

.header-actions .button {
  min-height: 48px;
  padding-inline: 23px;
  border-color: rgba(118, 78, 24, 0.25);
  box-shadow: 0 7px 16px rgba(121, 78, 25, 0.16);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.button,
.ghost-button,
.text-button,
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.1;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button {
  background: var(--gold);
  color: #22180d;
  padding: 13px 20px;
  box-shadow: 0 5px 12px rgba(121, 78, 25, 0.14);
}

.button:hover,
.ghost-button:hover,
.text-button:hover,
.icon-button:hover {
  transform: translateY(-1px);
}

.button.dark {
  background: var(--forest);
  color: var(--white);
}

.button.dark:hover {
  background: var(--forest-2);
}

.button.full {
  width: 100%;
}

.ghost-button {
  border-color: currentColor;
  color: currentColor;
  background: transparent;
  padding: 12px 16px;
}

.text-button {
  color: var(--forest);
  background: transparent;
  padding: 10px 0;
}

.icon-button {
  width: 44px;
  height: 44px;
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.hero {
  min-height: min(88svh, 820px);
  display: grid;
  align-items: end;
  position: relative;
  isolation: isolate;
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 24, 22, 0.88) 0%, rgba(12, 24, 22, 0.58) 42%, rgba(12, 24, 22, 0.1) 100%);
  z-index: -1;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 132px 0 70px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-weight: 850;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.hero h1 {
  margin: 0;
  max-width: 840px;
  font-size: clamp(3.2rem, 7.7vw, 6.7rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  color: var(--gold);
}

.hero-copy {
  max-width: 640px;
  margin: 22px 0 0;
  font-size: clamp(1.02rem, 2vw, 1.32rem);
  color: rgba(255, 253, 248, 0.88);
}

.hero-actions,
.cta-row,
.card-actions,
.form-actions,
.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions {
  margin-top: 28px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-strip span,
.pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 253, 248, 0.28);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 800;
  background: rgba(255, 253, 248, 0.08);
}

.section {
  padding: clamp(68px, 8vw, 104px) clamp(18px, 4vw, 56px);
}

.section.dark {
  background: var(--forest);
  color: var(--white);
}

.section.sky {
  background: var(--sky);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-head {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin-bottom: 36px;
}

.section-head h2,
.destination-hero h1,
.admin-title h1 {
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 3.85rem);
  line-height: 1.04;
  letter-spacing: 0;
  text-transform: uppercase;
}

/* Shared editorial heading system for every public content section. */
.section-head {
  gap: 16px;
  max-width: 860px;
  margin-bottom: 40px;
}

.section-head .eyebrow {
  margin: 0;
  font-size: 0.76rem;
}

.section-head h2 {
  max-width: 720px;
  font-size: clamp(2rem, 3.6vw, 3.35rem);
  line-height: 1.08;
  text-transform: none;
}

.section-head p {
  max-width: 690px;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.58;
}

.page-intro h1 {
  text-transform: none;
}

.section-head p,
.rich-copy {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.page-intro {
  margin-top: 80px;
  padding: clamp(70px, 8vw, 104px) clamp(18px, 4vw, 56px) clamp(52px, 7vw, 82px);
  background: var(--sand);
}

.page-intro .section-inner {
  max-width: 900px;
}

.page-intro h1 {
  max-width: 820px;
  margin: 0 0 18px;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.94;
  text-transform: uppercase;
}

.page-intro p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 750;
}

.breadcrumbs a::after {
  content: "/";
  margin-left: 8px;
  color: var(--stone);
}

.destination-hero .breadcrumbs {
  color: rgba(255, 253, 248, 0.86);
}

.destination-hero .breadcrumbs a::after {
  color: rgba(255, 253, 248, 0.58);
}

.dark .section-head p,
.dark .rich-copy {
  color: rgba(255, 253, 248, 0.72);
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 22px;
  align-items: stretch;
}

.destination-card,
.feature-card,
.faq-item,
.lead-card,
.metric-card,
.admin-panel,
.timeline-item {
  border-radius: 8px;
}

.destination-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.destination-card img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 260ms ease;
}

.destination-card:hover img {
  transform: scale(1.04);
}

.destination-card:hover,
.trek-card:hover,
.founder-card:hover,
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(22, 32, 29, 0.14);
  border-color: rgba(24, 58, 52, 0.3);
}

.destination-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.destination-body h3 {
  margin: 6px 0 8px;
  color: var(--forest-2);
  font-size: 1.35rem;
  text-transform: uppercase;
}

.destination-body .tagline {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.destination-body > p:not(.tagline) {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.destination-body .card-actions { margin-top: auto; }

.card-kicker {
  color: var(--copper);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.destination-card .card-actions {
  align-items: stretch;
  gap: 10px;
}

.destination-card .button { flex: 1 1 170px; }

.destination-card .text-button {
  min-height: 44px;
  padding: 10px 2px;
  white-space: nowrap;
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 800;
}

.destination-card .text-button::after {
  content: " ->";
  display: inline-block;
  margin-left: 4px;
  transition: transform 180ms ease;
}

.destination-card .text-button:hover::after {
  transform: translateX(3px);
}

.card-trip-meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin: auto 0 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.card-trip-meta strong {
  color: var(--copper);
  font-size: 0.88rem;
  text-align: right;
}

.destination-card .card-itinerary-button {
  flex: 1 1 170px;
  color: var(--forest);
}

.tagline {
  color: var(--forest);
  font-weight: 850;
  margin: 0 0 12px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 18px;
}

.tag {
  border: 1px solid var(--line);
  color: var(--stone);
  border-radius: 999px;
  padding: 6px 9px;
  font-size: 0.78rem;
  font-weight: 750;
}

.mini-facts {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  margin: 12px 0 16px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.why-layout,
.philosophy-layout {
  display: grid;
  gap: 28px;
  align-items: center;
}

.section-visual,
.contact-visual,
.trek-story-media {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--forest);
}

.section-visual img,
.contact-visual img,
.trek-story-media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.section-visual figcaption,
.contact-visual figcaption,
.trek-story-media figcaption {
  padding: 12px 14px;
  color: rgba(255, 253, 248, 0.84);
  font-size: 0.84rem;
  font-weight: 700;
}

.why-layout .feature-card {
  background: rgba(255, 253, 248, 0.1);
  border-color: rgba(255, 253, 248, 0.2);
}

.why-layout .feature-card strong,
.why-layout .feature-card span {
  color: var(--white);
}

.feature-card {
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.72);
  padding: 24px;
  min-height: 144px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(22, 32, 29, 0.04);
}

.feature-card strong {
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.split {
  display: grid;
  gap: 30px;
  align-items: center;
}

.split img {
  border-radius: 8px;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  box-shadow: var(--shadow);
}

/* Homepage About preview: keep the narrative and action deliberately aligned. */
#about-preview .split { gap: clamp(34px, 6vw, 76px); }
#about-preview .about-preview-copy { align-self: center; max-width: 620px; margin: 0; }
#about-preview .about-preview-copy h2 { max-width: 560px; }
#about-preview .about-preview-copy > p:not(.eyebrow) { max-width: 590px; }
#about-preview .about-preview-copy .text-button { width: fit-content; margin-top: 8px; padding: 11px 0; border-bottom: 1px solid rgba(22, 32, 29, 0.22); font-size: 0.78rem; }
#about-preview .about-preview-copy .text-button span { font-size: 1.05rem; transition: transform 160ms ease; }
#about-preview .about-preview-copy .text-button:hover span { transform: translateX(4px); }
#about-preview .split > img { border: 1px solid rgba(22, 32, 29, 0.12); box-shadow: 0 18px 38px rgba(22, 32, 29, 0.13); object-position: center; }

.founder-preview-cta {
  display: flex;
  justify-content: center;
  margin: -10px 0 30px;
}

.founder-preview-cta .text-button {
  padding: 10px 0;
}

.process {
  display: grid;
  gap: 12px;
}

.process-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 253, 248, 0.18);
}

.process-number {
  color: var(--gold);
  font-weight: 900;
  font-size: 1.4rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.gallery-grid img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 220ms ease, filter 220ms ease;
}

.gallery-grid img:hover {
  transform: scale(1.015);
  filter: saturate(1.06);
}

.gallery-grid img:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}

.gallery-grid .gallery-video { width: 100%; min-height: 220px; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 8px; background: #101816; }

.gallery-full {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.gallery-full img,
.gallery-full img:first-child {
  grid-column: auto;
  aspect-ratio: 4 / 3;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 18px;
  font-weight: 850;
}

.faq-item p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.final-cta {
  position: relative;
  min-height: 440px;
  display: grid;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 24, 22, 0.66);
  z-index: -1;
}

.final-cta img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.footer {
  background: #f2ece1;
  color: var(--ink);
  padding: 48px clamp(18px, 4vw, 56px) 72px;
  border-top: 1px solid rgba(22, 32, 29, 0.12);
}

.footer-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 32px;
}

.footer .brand-logo { width: 186px; }
.footer .brand-logo img { filter: drop-shadow(0 1px 0 rgba(255, 253, 248, 0.95)); }
.footer-grid > div:first-child > p { max-width: 440px; margin: 16px 0 0; color: var(--muted); line-height: 1.55; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  color: var(--forest);
  font-size: 0.92rem;
  font-weight: 750;
}

.footer-links a:hover,
.social-links a:hover {
  color: var(--gold);
}

.footer-copyright { margin: 20px 0 0; padding-top: 16px; border-top: 1px solid rgba(22, 32, 29, 0.12); color: var(--muted); font-size: 0.78rem; }

.contact-layout {
  display: grid;
  gap: 28px;
  align-items: start;
}

.contact-copy {
  color: var(--muted);
}

.contact-copy h2 {
  margin: 0 0 14px;
  color: var(--forest);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
  text-transform: uppercase;
}

.contact-copy p {
  margin: 0 0 20px;
}

.contact-visual {
  margin-top: 28px;
}

.contact-visual img {
  aspect-ratio: 16 / 10;
}

.contact-copy strong,
.contact-copy a {
  color: var(--forest);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.contact-form .field input,
.contact-form .field select,
.contact-form .field textarea {
  width: 100%;
}

.contact-message,
.contact-consent,
.contact-form > button {
  grid-column: 1 / -1;
}

.founder-detail-grid {
  max-width: 1080px;
  margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
}

.founder-detail {
  display: grid;
  grid-template-columns: minmax(190px, 0.78fr) minmax(0, 1.22fr);
  min-height: 430px;
  border-color: rgba(22, 32, 29, 0.14);
  background: #fffefa;
}

.founder-detail::before {
  content: "Founder";
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 6px 8px;
  border: 1px solid rgba(255, 253, 248, 0.32);
  border-radius: 4px;
  background: rgba(16, 43, 37, 0.78);
  color: var(--white);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.founder-detail img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-position: center top;
}

.founder-detail > div { padding: 30px 30px 26px; }

.founder-detail .eyebrow { margin: 0 0 9px; font-size: 0.72rem; }

.founder-detail h3 {
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  line-height: 1.08;
}

.founder-detail p:not(.eyebrow) {
  margin-top: 14px;
  font-size: 0.98rem;
  line-height: 1.58;
  -webkit-line-clamp: initial;
}

.founder-notes {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 9px 14px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.founder-notes strong {
  margin: 0;
  color: var(--forest);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.founder-detail .social-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--forest);
  font-size: 0.76rem;
}

.founder-detail .social-links a::after { content: "→"; font-size: 0.95rem; }

.founder-instagram { display: inline-flex; align-items: center; gap: 5px; margin-top: 16px; color: var(--forest); font-size: 0.76rem; font-weight: 850; text-transform: uppercase; }
.founder-instagram:first-letter { font-size: 1.2rem; }
.founder-detail .social-links .founder-instagram { margin-top: 0; }

.itinerary-list {
  display: grid;
  gap: 14px;
}

.itinerary-list div {
  display: grid;
  gap: 4px;
  padding-left: 14px;
  border-left: 3px solid var(--gold);
  color: var(--muted);
}

.itinerary-list strong {
  color: var(--forest);
}

.trek-story-media {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(180px, 0.6fr);
  align-items: stretch;
}

.trek-story-media img {
  aspect-ratio: 16 / 7;
  height: 100%;
}

.trek-story-media figcaption {
  display: grid;
  place-items: center;
  padding: 24px;
  line-height: 1.5;
}

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

.mobile-action-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 110;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 30px rgba(22, 32, 29, 0.12);
}

.mobile-action-bar a,
.mobile-action-bar button {
  min-height: 58px;
  border: 0;
  border-right: 1px solid var(--line);
  background: var(--white);
  color: var(--forest);
  font-weight: 900;
  text-transform: uppercase;
}

.destination-hero {
  min-height: 440px;
  display: grid;
  align-items: end;
  color: var(--white);
  position: relative;
  isolation: isolate;
  padding: 104px clamp(18px, 4vw, 56px) 48px;
}

.destination-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12, 24, 22, 0.78), rgba(12, 24, 22, 0.2));
  z-index: -1;
}

.destination-hero img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.destination-content {
  display: grid;
  gap: 26px;
}

.detail-grid {
  display: grid;
  gap: 18px;
}

.fact-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.fact {
  border-left: 3px solid var(--gold);
  padding: 10px 12px;
  background: rgba(255, 253, 248, 0.7);
}

.fact small {
  display: block;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 800;
}

.modal-backdrop,
.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(10, 18, 16, 0.72);
  display: grid;
  place-items: center;
  padding: 18px;
}

.lead-modal,
.success-modal {
  width: min(720px, 100%);
  max-height: min(90svh, 900px);
  overflow: hidden;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.modal-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}

.modal-header h2 {
  margin: 0;
  font-size: clamp(1.6rem, 5vw, 2.6rem);
  line-height: 1;
  text-transform: uppercase;
}

.lead-form {
  padding: 24px;
}

.modal-backdrop:has(.lead-modal) {
  overscroll-behavior: none;
}


.progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 22px;
}

.progress span {
  height: 6px;
  border-radius: 999px;
  background: var(--sand);
}

.progress span.active {
  background: var(--forest);
}

.form-grid {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label,
.fieldset legend {
  font-weight: 850;
}

.field input,
.field select,
.field textarea,
.admin-filter input,
.admin-filter select,
.login-card input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  min-height: 46px;
  padding: 12px;
  background: var(--white);
  color: var(--ink);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.admin-filter input:focus,
.admin-filter select:focus,
.login-card input:focus {
  border-color: var(--forest-2);
  box-shadow: 0 0 0 3px rgba(37, 87, 77, 0.12);
  outline: 0;
}

.field textarea {
  resize: vertical;
  min-height: 118px;
}

.field-error {
  color: var(--danger);
  font-size: 0.86rem;
  min-height: 1.2em;
}

.fieldset {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
}

.radio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 8px;
}

.radio-tile,
.check-row {
  display: flex;
  gap: 9px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px;
  background: #fffbf2;
}

.smart-note {
  border-left: 3px solid var(--forest);
  background: var(--sky);
  padding: 12px;
  border-radius: 6px;
  color: var(--forest);
  font-weight: 750;
}

.success-modal {
  width: min(700px, 100%);
  padding: clamp(28px, 4.5vw, 44px);
  border: 1px solid rgba(22, 32, 29, 0.12);
  border-top: 4px solid var(--gold);
  box-shadow: 0 28px 70px rgba(8, 23, 19, 0.26);
}

.success-modal h2 {
  max-width: 560px;
  margin: 16px 0 12px;
  font-size: clamp(2.15rem, 5vw, 3.65rem);
  line-height: 1;
}

.success-topline { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.success-topline .eyebrow { margin: 0; }
.success-topline span { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid rgba(22, 32, 29, 0.12); border-radius: 50%; background: var(--forest); color: var(--white); font-size: 1.15rem; font-weight: 850; }
.success-modal > p { max-width: 530px; margin: 0; color: var(--muted); font-size: 1.05rem; line-height: 1.55; }
.success-reference { display: grid; grid-template-columns: auto 1fr; gap: 4px 14px; align-items: center; max-width: 490px; margin-top: 26px; padding: 14px 16px; border: 1px solid rgba(22, 32, 29, 0.1); border-radius: 6px; background: #f4f8f6; }
.success-reference span { color: var(--muted); font-size: 0.7rem; font-weight: 850; letter-spacing: 0; text-transform: uppercase; }
.success-reference strong { color: var(--forest); font-size: 1rem; }
.success-reference small { grid-column: 1 / -1; color: var(--muted); font-size: 0.78rem; }
.success-modal .success-actions { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); }
.lead-modal-close { flex: 0 0 auto; width: 38px; height: 38px; min-height: 38px; border-color: rgba(22, 32, 29, 0.18); background: rgba(255, 253, 248, 0.72); font-size: 1.3rem; line-height: 1; }
.lead-modal-close:hover { background: var(--forest); color: var(--white); }

.enquiry-id {
  display: inline-flex;
  margin: 18px 0;
  padding: 10px 12px;
  border-radius: 6px;
  background: var(--sky);
  color: var(--forest);
  font-weight: 900;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 500;
  background: var(--forest);
  color: var(--white);
  padding: 12px 14px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.admin-shell {
  min-height: 100svh;
  background: #f4f5f1;
  color: #16201d;
}

.admin-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(244, 247, 246, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid #d9e2df;
  display: grid;
  grid-template-columns: minmax(190px, auto) minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 14px clamp(16px, 3vw, 34px);
}

.admin-brand {
  color: var(--forest);
  white-space: nowrap;
}

.admin-header-context {
  display: grid;
  gap: 2px;
  justify-self: center;
  color: #44534e;
  text-align: center;
}

.admin-header-context strong {
  color: var(--forest);
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.admin-header-context span {
  font-size: 0.72rem;
}

.admin-nav {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 2px;
  min-width: 0;
}

.admin-nav-button {
  position: relative;
  min-height: 42px;
  padding: 10px 14px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: #53635e;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.admin-nav-button:hover {
  background: rgba(23, 57, 49, 0.06);
  color: var(--forest);
}

.admin-nav-button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -3px;
}

.admin-nav-button.is-active {
  border-bottom-color: var(--copper);
  background: rgba(23, 57, 49, 0.08);
  color: var(--forest);
}

.content-admin-header .admin-nav-button {
  padding-inline: 12px;
}

.admin-header .admin-actions {
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 8px;
}

.admin-header .admin-actions .ghost-button,
.admin-header .admin-actions .button {
  min-height: 40px;
  padding: 10px 13px;
  font-size: 0.72rem;
  white-space: nowrap;
}

.admin-main {
  width: min(1480px, 100%);
  margin: 0 auto;
  padding: 30px clamp(16px, 3vw, 42px) 56px;
}

.admin-title {
  display: grid;
  gap: 7px;
  margin-bottom: 26px;
  padding-bottom: 20px;
  border-bottom: 1px solid #dce3df;
}

.admin-title h1 {
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.admin-title p {
  margin: 0;
  color: #687772;
}

.admin-title > span {
  color: #687772;
  font-size: 0.95rem;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.metric-card {
  background: var(--admin-panel);
  border: 1px solid #dbe3df;
  border-top: 3px solid var(--gold);
  padding: 19px 20px;
  box-shadow: 0 8px 20px rgba(22, 32, 29, 0.05);
}

.metric-card small {
  display: block;
  color: #64746f;
  font-weight: 850;
  text-transform: uppercase;
}

.metric-card strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  margin-top: 8px;
}

.admin-grid {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.admin-panel {
  background: var(--admin-panel);
  border: 1px solid #dbe3df;
  padding: 22px;
  box-shadow: 0 8px 22px rgba(22, 32, 29, 0.045);
}

.admin-panel > .admin-actions:first-child {
  align-items: center;
  gap: 12px;
}

.admin-panel h2,
.admin-panel h3,
.drawer h2,
.drawer h3 {
  margin: 0 0 12px;
}

.admin-panel h2 { color: var(--forest); font-size: 1.15rem; }

.content-manager {
  margin-top: 22px;
}

.content-manager-heading,
.content-list-heading,
.content-record-title,
.content-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.content-manager-heading {
  align-items: end;
  margin-bottom: 14px;
}

.content-manager-heading h2 {
  margin: 3px 0 6px;
  color: var(--forest);
  font-size: 1.35rem;
}

.content-manager-heading p {
  margin: 0;
  color: #63716d;
}

.content-manager-actions,
.content-check-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.content-lists {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.content-list-panel {
  min-width: 0;
  padding: 18px;
}

.content-list-heading {
  margin-bottom: 12px;
}

.content-list-heading h3 {
  margin: 0;
  color: var(--forest);
}

.content-list-heading span {
  min-width: 28px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #edf4f1;
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
}

.content-record-list {
  display: grid;
  gap: 8px;
  max-height: 550px;
  overflow: auto;
  padding-right: 2px;
}

.content-record {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 11px;
  padding: 10px;
  border: 1px solid #e0e7e4;
  background: #fbfcfa;
}

.content-record > img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 5px;
  background: #e8edeb;
}

.content-record-main {
  min-width: 0;
}

.content-record-title {
  align-items: start;
}

.content-record-title strong,
.content-record-title small,
.content-record-main p {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.content-record-title strong {
  color: var(--forest);
}

.content-record-title small,
.content-record-main p {
  color: #66746f;
  font-size: 0.78rem;
}

.content-record-main p {
  margin: 5px 0 0;
}

.content-record-actions {
  grid-column: 1 / -1;
}

.status-muted {
  background: #f5efea;
  color: #785843;
}

.content-editor {
  margin: 0 0 18px;
  padding: 22px;
}

.content-editor > .content-manager-heading {
  align-items: start;
  padding-bottom: 14px;
  border-bottom: 1px solid #dce5e1;
}

.content-editor h2 {
  font-size: 1.35rem;
}

.content-form-section {
  padding: 22px 0;
  border-bottom: 1px solid #dfe7e3;
}

.content-form-section > div:first-child h3 {
  margin: 3px 0 15px;
  color: var(--forest);
  font-size: 1rem;
}

.content-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}

.content-form-grid .field {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.content-form-grid .field input,
.content-form-grid .field textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid #d3ded9;
  border-radius: 5px;
  padding: 10px 11px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  resize: vertical;
}

.content-form-grid .field textarea {
  min-height: 104px;
}

.content-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  color: var(--forest);
  font-size: 0.88rem;
  font-weight: 800;
}

.content-media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 124px;
  gap: 14px;
  align-items: center;
}

.content-upload-field {
  display: grid;
  gap: 7px;
  min-width: 0;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--forest);
}

.content-upload-field input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.content-upload-control {
  display: block;
  border: 1px dashed #aebeb8;
  border-radius: 5px;
  padding: 12px;
  background: #f8fbf9;
  color: #52635d;
  font-size: 0.82rem;
  font-weight: 700;
}

.content-upload-field:focus-within .content-upload-control,
.content-upload-field:hover .content-upload-control {
  border-color: var(--forest);
  background: #eef5f1;
}

.content-cover-preview {
  width: 124px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid #d5dfda;
  border-radius: 5px;
  background: #edf2ef;
}

.content-cover-preview img,
.content-gallery-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-gallery-control {
  margin-top: 16px;
}

.content-gallery-preview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
  margin-top: 12px;
}

.content-gallery-preview figure {
  display: grid;
  gap: 6px;
  margin: 0;
  min-width: 0;
}

.content-gallery-preview img {
  aspect-ratio: 4 / 3;
  border: 1px solid #d6e0db;
  border-radius: 5px;
}

.content-form-actions {
  justify-content: start;
  padding-top: 20px;
}

.filters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.admin-filter {
  display: grid;
  gap: 6px;
}

.admin-filter input, .admin-filter select { min-height: 44px; background: #fbfcfa; border-color: #d7e0dc; }

.admin-filter label {
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  color: #5d6c67;
}

.table-wrap {
  overflow: auto;
}

.lead-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 1120px;
}

.lead-table th,
.lead-table td {
  padding: 11px 10px;
  border-bottom: 1px solid #e2e9e6;
  text-align: left;
  vertical-align: top;
  font-size: 0.88rem;
}

.lead-table th {
  color: #5c6a65;
  background: #f2f5f3;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.lead-table tr {
  cursor: pointer;
}

.lead-table tbody tr { transition: background 160ms ease; }
.lead-table tbody tr:hover { background: #f7faf8; }

.lead-table td:first-child strong { color: var(--forest); }

.admin-review { border-color: #dbe3df; background: #fbfcfa; }

.status {
  display: inline-flex;
  align-items: center;
  padding: 5px 8px;
  border-radius: 999px;
  background: #edf4f1;
  color: var(--forest);
  font-size: 0.76rem;
  font-weight: 900;
}

.quick-actions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.small-button {
  border: 1px solid #d3ded9;
  background: #fff;
  color: var(--forest);
  border-radius: 6px;
  padding: 7px 9px;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.danger-button {
  border-color: #e4b7b0;
  background: #fff8f7;
  color: #a33125;
}

.danger-button:hover,
.danger-button:focus-visible {
  background: #a33125;
  border-color: #a33125;
  color: #fff;
}

.mobile-leads {
  display: grid;
  gap: 10px;
}

.lead-card {
  border: 1px solid #dce5e1;
  background: #fff;
  padding: 14px;
}

.lead-card-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.lead-card strong {
  display: block;
}

.lead-card dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 12px 0;
}

.lead-card dt {
  color: #61716c;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 850;
}

.lead-card dd {
  margin: 0;
}

.drawer-backdrop {
  place-items: stretch end;
  padding: 0;
}

.drawer {
  width: min(860px, 100%);
  height: 100svh;
  overflow: auto;
  background: var(--admin-bg);
  padding: 18px;
  box-shadow: var(--shadow);
}

.drawer > .admin-actions:first-child {
  position: sticky;
  top: -18px;
  z-index: 2;
  margin: -18px -18px 0;
  padding: 18px;
  background: rgba(244, 247, 246, 0.96);
  border-bottom: 1px solid #dce5e1;
  backdrop-filter: blur(12px);
}

.drawer-section {
  background: #fff;
  border: 1px solid #dce5e1;
  border-radius: 8px;
  padding: 16px;
  margin-top: 12px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.info-item {
  border-bottom: 1px solid #e4ece8;
  padding-bottom: 8px;
}

.info-item small {
  display: block;
  color: #65756f;
  text-transform: uppercase;
  font-weight: 850;
  font-size: 0.72rem;
}

@media (min-width: 1100px) {
  .admin-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .admin-grid > .admin-panel:nth-child(2) {
    grid-column: 1 / -1;
  }
}

.timeline {
  display: grid;
  gap: 10px;
}

.timeline-item {
  border: 1px solid #e2e9e6;
  padding: 12px;
  background: #fbfdfc;
}

.timeline-item time {
  display: block;
  color: #65756f;
  font-size: 0.8rem;
}

.chart-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.chart-row {
  display: grid;
  grid-template-columns: 105px 1fr 34px;
  gap: 8px;
  align-items: center;
  margin: 9px 0;
}

.bar {
  height: 10px;
  background: #e6eeeb;
  border-radius: 999px;
  overflow: hidden;
}

.bar span {
  display: block;
  height: 100%;
  width: var(--bar-width, 0%);
  background: var(--forest-2);
}

.empty-state {
  color: #687772;
  border: 1px dashed #cad8d3;
  border-radius: 8px;
  padding: 18px;
  background: #fbfdfc;
}

.login-wrap {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 18px;
  background: linear-gradient(180deg, #183a34 0%, #f4f7f6 100%);
}

.login-card {
  width: min(420px, 100%);
  background: #fff;
  border-radius: 8px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.login-card h1 {
  margin: 0 0 6px;
  text-transform: uppercase;
}

.hidden-desktop {
  display: block;
}

.hidden-mobile {
  display: none;
}

.trek-grid,
.category-grid,
.founder-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}

.trek-card,
.founder-card,
.review-card,
.category-card,
.review-form {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.trek-card { overflow: hidden; display: flex; flex-direction: column; }
.trek-card img { aspect-ratio: 16 / 10; object-fit: cover; transition: transform 260ms ease; }
.trek-card:hover img { transform: scale(1.04); }
.trek-card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.trek-card-body h3, .founder-card h3, .review-form h3 { margin: 0; font-size: 1.35rem; }
.trek-card-body p { margin: 0; color: var(--muted); }
.trek-card-body > p:not(.eyebrow) { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.trek-card .card-actions { margin-top: auto; }
.trek-meta { display: flex; flex-wrap: wrap; gap: 7px; }
.trek-meta span { padding: 5px 8px; border: 1px solid var(--line); border-radius: 999px; color: var(--forest); font-size: .76rem; font-weight: 800; }
.section-cta { justify-content: center; margin-top: 28px; }
.category-card { text-align: left; padding: 24px; color: var(--ink); cursor: pointer; min-height: 144px; }
.category-card strong { display: block; color: var(--forest); font-size: 1.15rem; text-transform: uppercase; margin-bottom: 10px; }
.category-card span { color: var(--muted); }
.founder-card { overflow: hidden; display: flex; flex-direction: column; }
.founder-card img { aspect-ratio: 4 / 3.8; object-fit: cover; object-position: center 14%; }
.founder-card > div { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.founder-card p:not(.eyebrow), .review-card p { color: var(--muted); margin: 10px 0 0; }
.founder-card p:not(.eyebrow) { display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.founder-card h3 { font-size: 1.28rem; }
.review-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.review-card img { aspect-ratio: 16 / 10; object-fit: cover; border-radius: 0; margin: 0; }
.review-card > div { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.review-card > div strong { margin-top: auto; }
.review-card p { display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.founder-wrap { margin-top: clamp(56px, 8vw, 90px); }
.upload-preview { display: grid; gap: 10px; padding: 12px; border: 1px dashed var(--line); border-radius: 6px; }
.upload-preview[hidden] { display: none !important; }
.upload-preview img { width: min(220px, 100%); aspect-ratio: 4 / 3; object-fit: cover; border-radius: 6px; }
.upload-preview video { width: min(220px, 100%); aspect-ratio: 4 / 3; object-fit: cover; border-radius: 6px; background: #101816; }
.sample-note { color: var(--muted); font-size: .85rem; margin: 18px 0 0; }
.admin-review-list { display: grid; gap: 12px; }
.admin-review { display: grid; grid-template-columns: 96px 1fr; gap: 14px; border: 1px solid #dce5e1; padding: 12px; border-radius: 8px; }
.admin-review img { width: 96px; height: 96px; object-fit: cover; border-radius: 6px; }
.admin-review video { width: 96px; height: 96px; object-fit: cover; border-radius: 6px; background: #101816; }
.admin-review p { margin: 6px 0; }
.review-card > span { color: var(--copper); font-size: 1.1rem; letter-spacing: 2px; }
.review-card small { display: block; margin-top: 4px; color: var(--muted); }
.review-form { max-width: 980px; margin: 30px auto 0; padding: 28px; box-shadow: var(--shadow-soft); }
.review-form-head { display: grid; gap: 3px; margin-bottom: 22px; }
.review-form-head .eyebrow { margin-bottom: 2px; }
.review-form-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 16px; }
.review-form-grid > .field { grid-column: span 2; }
.review-form-grid .review-message-field { grid-column: 1 / -1; }
.review-form-grid .review-message-field textarea { min-height: 132px; resize: vertical; }
.review-upload-field { grid-column: span 4; display: grid; gap: 8px; color: var(--ink); font-weight: 750; }
.review-file-input { position: absolute; inline-size: 1px; block-size: 1px; opacity: 0; pointer-events: none; }
.review-upload-control { display: flex; align-items: center; justify-content: space-between; min-height: 54px; gap: 14px; padding: 10px 14px; border: 1px dashed rgba(22, 32, 29, 0.3); border-radius: 6px; background: #fffefa; color: var(--forest); cursor: pointer; transition: border-color 160ms ease, background 160ms ease; }
.review-upload-field:hover .review-upload-control { border-color: var(--forest); background: #f6fbf8; }
.review-upload-control strong { font-size: 0.86rem; text-transform: uppercase; }
.review-upload-control small { color: var(--muted); font-size: 0.78rem; font-weight: 650; }
.review-form-grid .upload-preview { grid-column: 1 / -1; grid-template-columns: minmax(0, 1fr) auto; align-items: center; }
.review-form-grid .upload-preview img { width: 112px; aspect-ratio: 4 / 3; }
.review-submit { grid-column: span 2; align-self: end; width: 100%; min-height: 54px; }
.compact-form { grid-template-columns: repeat(3, 1fr); }
.compact-form .field:last-of-type { grid-column: 1 / -1; }
.trek-filters { display: grid; grid-template-columns: 1fr minmax(220px, .5fr) auto; gap: 12px; margin-bottom: 24px; }
.trek-filters input, .trek-filters select { min-height: 46px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 6px; background: var(--white); }
.destination-filters { grid-template-columns: minmax(0, 1.25fr) minmax(220px, .55fr) auto; align-items: end; gap: 12px; margin-bottom: 34px; padding: 14px; border: 1px solid rgba(22, 32, 29, 0.12); border-radius: 8px; background: #f7f4ee; box-shadow: 0 10px 28px rgba(22, 32, 29, 0.06); }
.destination-search-field, .destination-category-field { display: grid; gap: 6px; }
.destination-search-field > span, .destination-category-field > span { color: var(--forest); font-size: 0.7rem; font-weight: 850; text-transform: uppercase; }
.destination-filters input, .destination-filters select { min-height: 52px; border-color: rgba(22, 32, 29, 0.18); background: var(--white); }
.destination-filters input:focus, .destination-filters select:focus { border-color: var(--forest); box-shadow: 0 0 0 3px rgba(214, 168, 90, 0.2); outline: none; }
.destination-filters .button { min-height: 52px; padding-inline: 26px; box-shadow: 0 8px 16px rgba(22, 32, 29, 0.15); }
.detail-list { padding-left: 20px; color: var(--muted); }
.detail-list li { margin: 8px 0; }

@media (max-width: 759px) {
  .compact-form, .trek-filters { grid-template-columns: 1fr; }
  .compact-form .field:last-of-type { grid-column: auto; }

  .contact-form { grid-template-columns: 1fr; padding: 18px; }
  .contact-message, .contact-consent, .contact-form > button { grid-column: auto; }
}

@media (min-width: 760px) {
  .desktop-nav,
  .header-actions {
    display: flex;
  }

  .menu-toggle,
  .mobile-nav {
    display: none;
  }

  .mobile-action-bar {
    display: none;
  }

  .split {
    grid-template-columns: 1fr 0.86fr;
  }

  .detail-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .footer {
    padding-bottom: 46px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
  }

  .contact-layout {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .why-layout,
  .philosophy-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  }

  .hidden-desktop {
    display: none;
  }

  .hidden-mobile {
    display: block;
  }

  .mobile-leads {
    display: none;
  }
}

@media (min-width: 760px) and (max-width: 1100px) {
  .site-header { gap: 16px; min-height: 76px; }
  .brand-logo { width: 148px; }
  .desktop-nav { font-size: 0.63rem; }
  .desktop-nav a { padding-inline: 7px; }
  .desktop-nav a::after { left: 7px; right: 7px; }
  .header-actions { display: none; }
}

@media (min-width: 1101px) {
  .desktop-nav { flex: 1 1 auto; justify-content: center; }
  .header-actions { flex: 0 0 auto; }
}

@media (max-width: 759px) {
  .site-header {
    min-height: 70px;
    padding: 10px 16px;
  }

  .hero-inner {
    width: calc(100% - 32px);
    padding-bottom: 92px;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(12, 24, 22, 0.68), rgba(12, 24, 22, 0.88));
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.7rem);
  }

  .section {
    padding: 58px 16px;
  }

  .brand-logo { width: 136px; }
  .trek-story-media { grid-template-columns: 1fr; }
  .trek-story-media img { aspect-ratio: 16 / 10; }
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-height: 42px;
    padding: 8px 11px;
    border: 1px solid rgba(22, 32, 29, 0.16);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.64);
    color: var(--forest);
    font-size: 0.67rem;
    font-weight: 850;
    text-transform: uppercase;
  }
  .menu-toggle i { display: grid; gap: 3px; width: 16px; }
  .menu-toggle i span { display: block; width: 16px; height: 1.5px; background: currentColor; }
  .menu-toggle b { margin-left: 4px; font: inherit; }
  .mobile-nav.open {
    position: fixed;
    top: 78px;
    left: 12px;
    right: 12px;
    z-index: 120;
    display: grid;
    gap: 0;
    padding: 7px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 18px 38px rgba(22, 32, 29, 0.16);
  }
  .mobile-nav a {
    padding: 14px 12px;
    border-bottom: 1px solid var(--line);
    color: var(--forest);
    font-size: 0.84rem;
    font-weight: 850;
    text-transform: uppercase;
  }
  .mobile-nav a.is-active { color: var(--forest); background: rgba(23, 57, 49, 0.08); }
  .mobile-nav a:last-child { border-bottom: 0; }
  .destination-grid, .trek-grid, .founder-grid, .review-grid { gap: 16px; }
  .destination-body, .trek-card-body, .founder-card > div { padding: 18px; }

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

  .modal-backdrop {
    padding: 0;
    align-items: end;
  }

  .lead-modal,
  .success-modal {
    max-height: 94svh;
    border-radius: 8px 8px 0 0;
  }

  .lead-table-wrap {
    display: none;
  }
}

/* Final visual system refinements shared by all public routes. */
.page-intro {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 390px;
  margin-top: 86px;
  padding-block: clamp(54px, 5vw, 72px);
  background: #e8dfd0;
  border-bottom: 1px solid rgba(22, 32, 29, 0.08);
}

.page-intro::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  z-index: -1;
  width: min(43vw, 680px);
  background: url("/images/hero-himalayan-road.jpg") center / cover no-repeat;
  border-left: 1px solid rgba(22, 32, 29, 0.14);
}

.destination-page-intro::before {
  background-image: url("/images/destinations-intro-snow-peaks.jpg");
  background-position: center 72%;
}

.destination-page-intro {
  height: min(60svh, 520px);
  min-height: 0;
  padding-block: 28px;
}

.gallery-page-intro {
  height: min(60svh, 520px);
  min-height: 0;
  padding-block: 28px;
}

.gallery-page-intro::before { display: none; }

.gallery-intro-visual {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 0;
  width: min(43vw, 680px);
  border-left: 1px solid rgba(22, 32, 29, 0.14);
  background: #e8dfd0;
}

.gallery-intro-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feedback-page-intro {
  height: min(60svh, 520px);
  min-height: 0;
  padding-block: 28px;
}

.feedback-page-intro::before { display: none; }

.feedback-page-intro h1 {
  max-width: 650px;
  font-size: 3.35rem;
  line-height: 0.96;
}

.feedback-intro-gallery {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 0;
  width: min(43vw, 680px);
  border-left: 1px solid rgba(22, 32, 29, 0.14);
  background: #e8dfd0;
}

.feedback-intro-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-intro .section-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  padding-right: min(43vw, 520px);
}

.page-intro .eyebrow { margin-bottom: 14px; }

.page-intro h1 {
  max-width: 690px;
  margin-bottom: 20px;
  font-size: clamp(2.7rem, 5.1vw, 4.7rem);
  line-height: 0.98;
}

.page-intro p:not(.eyebrow) {
  max-width: 650px;
  font-size: clamp(1rem, 1.25vw, 1.13rem);
  line-height: 1.55;
}

.breadcrumbs {
  width: fit-content;
  margin-bottom: 22px;
  padding: 7px 10px;
  border: 1px solid rgba(22, 32, 29, 0.12);
  border-radius: 5px;
  background: rgba(255, 253, 248, 0.58);
  color: var(--forest);
  font-size: 0.72rem;
}

.breadcrumbs a::after { color: var(--copper); }

.destination-card,
.trek-card,
.founder-card,
.review-card {
  position: relative;
  box-shadow: 0 12px 30px rgba(22, 32, 29, 0.07);
}

.destination-card::after,
.trek-card::after,
.founder-card::after,
.review-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-radius: inherit;
  pointer-events: none;
  transition: border-color 180ms ease;
}

.destination-card:hover::after,
.trek-card:hover::after,
.founder-card:hover::after,
.review-card:hover::after { border-color: rgba(214, 168, 90, 0.72); }

.destination-card > a,
.trek-card > a { display: block; overflow: hidden; }

.why-feature-grid .feature-card {
  position: relative;
  min-height: 164px;
  justify-content: flex-end;
  overflow: hidden;
}

.why-feature-grid .feature-card em {
  position: absolute;
  top: 17px;
  right: 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 900;
}

.why-feature-grid .feature-card::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 24px;
  width: 28px;
  height: 2px;
  background: var(--gold);
}

.founder-card img { transition: transform 300ms ease; }
.founder-card:hover img { transform: scale(1.035); }

.contact-form,
.review-form { border-top: 3px solid var(--gold); }

.modal-intro {
  max-width: 500px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.lead-modal .modal-header { align-items: flex-start; }

/* Keep the required first-visit form fully visible without modal scrolling. */
.lead-modal {
  width: min(640px, calc(100vw - 32px));
  max-height: calc(100svh - 32px);
}

.lead-modal .modal-header {
  padding: 18px 28px 16px;
}

.lead-modal .modal-header h2 {
  max-width: 540px;
  font-size: clamp(1.65rem, 3.6vw, 2.35rem);
  line-height: 1.04;
}

.modal-intro {
  margin-top: 7px;
  font-size: 0.88rem;
}

.lead-form {
  padding: 18px 28px 20px;
}

.lead-form .progress {
  margin-bottom: 16px;
}

.lead-form .form-grid {
  gap: 10px;
}

.lead-form h3 {
  margin: 0 0 2px;
  font-size: 1.08rem;
}

.lead-form .field {
  gap: 4px;
}

.lead-form .field input,
.lead-form .field select {
  min-height: 42px;
  padding: 9px 11px;
}

.lead-form .field textarea {
  min-height: 78px;
  padding: 9px 11px;
}

.lead-form .field-error {
  min-height: 0;
  line-height: 1.15;
}

.lead-form .field-error:empty {
  display: none;
}

.whatsapp-number-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: -2px;
  color: var(--forest);
  font-size: 0.83rem;
  font-weight: 750;
}

.whatsapp-number-check input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--forest);
}

.lead-form .form-actions {
  margin-top: 14px !important;
}

@media (max-width: 759px) {
  .lead-modal { width: calc(100vw - 20px); max-height: calc(100svh - 20px); }
  .lead-modal .modal-header { padding: 16px 18px 14px; }
  .lead-modal .modal-header h2 { font-size: clamp(1.42rem, 7vw, 1.9rem); }
  .lead-form { padding: 16px 18px 18px; }
}

.contact-form .field input,
.contact-form .field select,
.contact-form .field textarea,
.review-form input,
.review-form select,
.review-form textarea {
  border-color: rgba(22, 32, 29, 0.2);
  background: #fffefa;
}

.contact-form .field input:focus,
.contact-form .field select:focus,
.contact-form .field textarea:focus,
.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(214, 168, 90, 0.22);
  outline: none;
}

@media (min-width: 960px) {
  .destination-grid:not(.related-grid) { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .trek-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .review-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .founder-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: 1.22fr 0.78fr 0.78fr; grid-template-rows: repeat(2, minmax(170px, 1fr)); }
  .gallery-grid img:first-child { grid-column: auto; grid-row: 1 / span 2; aspect-ratio: auto; height: 100%; }
  .gallery-grid img { aspect-ratio: auto; height: 100%; min-height: 0; }
  .gallery-full { grid-template-columns: repeat(3, minmax(0, 1fr)); grid-template-rows: none; }
  .gallery-full img, .gallery-full img:first-child { grid-row: auto; aspect-ratio: 4 / 3; height: auto; }
}

@media (max-width: 759px) {
  .page-intro {
    min-height: 0;
    margin-top: 70px;
    padding: 48px 16px 54px;
  }
  .page-intro::before { display: none; }
  .feedback-page-intro {
    height: auto;
    min-height: 0;
    padding-bottom: 0;
  }
  .destination-page-intro {
    height: auto;
    min-height: 0;
  }
  .gallery-page-intro {
    height: auto;
    min-height: 0;
    padding-bottom: 0;
  }
  .gallery-intro-visual {
    position: relative;
    inset: auto;
    display: block;
    width: calc(100% + 32px);
    height: clamp(180px, 52vw, 280px);
    margin: 28px -16px 0;
    border-top: 1px solid rgba(22, 32, 29, 0.14);
    border-left: 0;
  }
  .feedback-intro-gallery {
    position: relative;
    inset: auto;
    display: block;
    width: calc(100% + 32px);
    height: clamp(180px, 52vw, 280px);
    margin: 28px -16px 0;
    border-top: 1px solid rgba(22, 32, 29, 0.14);
    border-left: 0;
  }
  .page-intro .section-inner { padding-right: 0; }
  .page-intro h1 { font-size: clamp(2.35rem, 12vw, 3.6rem); }
  .page-intro p:not(.eyebrow) { font-size: 1rem; }
  .breadcrumbs { margin-bottom: 18px; font-size: 0.69rem; }
  .founder-detail { grid-template-columns: 1fr; min-height: 0; }
  .founder-detail img { aspect-ratio: 16 / 10; height: auto; }
  .founder-detail > div { padding: 22px 20px 24px; }
  .founder-notes { grid-template-columns: 88px minmax(0, 1fr); font-size: 0.79rem; }
  .section-head { margin-bottom: 28px; }
  .destination-card .card-actions { align-items: flex-start; }
  .destination-card .button { flex-basis: 100%; }
  .destination-card .card-itinerary-button { flex-basis: 100%; }
  .destination-card .text-button { justify-content: flex-start; }
  .why-feature-grid .feature-card { min-height: 146px; }
  .review-form { padding: 20px 18px; }
  .review-form-grid { grid-template-columns: 1fr; gap: 14px; }
  .review-form-grid > .field, .review-upload-field, .review-submit { grid-column: auto; }
  .review-upload-control { align-items: flex-start; flex-direction: column; gap: 4px; }
  .review-form-grid .upload-preview { grid-column: auto; grid-template-columns: 1fr; }
}

/* Unified destination and trek experience system. */
.destination-grid,
.trek-grid {
  gap: clamp(16px, 2vw, 24px);
}

.destination-card,
.trek-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(22, 32, 29, 0.14);
  border-radius: 8px;
  background: #fffefa;
  box-shadow: 0 10px 26px rgba(22, 32, 29, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.destination-card > a:first-child {
  display: block;
  overflow: hidden;
  background: var(--forest);
}

.destination-card > a:first-child img,
.trek-card > img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 420ms ease;
}

.destination-body,
.trek-card-body {
  padding: 22px;
  gap: 12px;
}

.destination-body h3,
.trek-card-body h3 {
  margin: 0;
  color: var(--forest-2);
  font-size: clamp(1.22rem, 1.7vw, 1.42rem);
  line-height: 1.12;
}

.destination-body > p:not(.tagline),
.trek-card-body > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.58;
}

.destination-body .tagline {
  margin: 0;
  color: var(--forest);
  font-size: 0.98rem;
  line-height: 1.45;
}

.destination-card .tags,
.trek-card .trek-meta {
  gap: 7px;
  margin: 2px 0 0;
}

.destination-card .tag,
.trek-card .trek-meta span {
  border-color: rgba(22, 32, 29, 0.16);
  border-radius: 999px;
  background: rgba(23, 57, 49, 0.045);
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 800;
}

.destination-card .card-trip-meta {
  margin: auto 0 0;
  padding: 14px 0 0;
  border-top-color: rgba(22, 32, 29, 0.12);
  color: var(--forest);
}

.destination-card .card-actions,
.trek-card .card-actions {
  width: 100%;
  margin-top: 2px;
  padding-top: 14px;
  border-top: 1px solid rgba(22, 32, 29, 0.12);
  align-items: stretch;
  gap: 10px;
}

.destination-card .button,
.trek-card .button,
.trek-card .ghost-button,
.destination-card .text-button {
  min-height: 44px;
  flex: 1 1 150px;
}

.destination-card .text-button,
.trek-card .ghost-button {
  border: 1px solid rgba(22, 32, 29, 0.22);
  border-radius: 6px;
  padding: 10px 13px;
  color: var(--forest);
  background: transparent;
  font-size: 0.72rem;
  font-weight: 850;
  text-align: center;
}

.destination-card .text-button::after { content: none; }

@media (hover: hover) {
  .destination-card:hover,
  .trek-card:hover {
    transform: translateY(-6px);
    border-color: rgba(24, 58, 52, 0.3);
    box-shadow: 0 20px 38px rgba(22, 32, 29, 0.15);
  }

  .destination-card:hover > a:first-child img,
  .trek-card:hover > img {
    transform: scale(1.06);
  }
}

.destination-hero {
  min-height: 500px;
  padding: 116px clamp(18px, 4vw, 56px) 54px;
}

.destination-hero::before {
  background: linear-gradient(90deg, rgba(12, 24, 22, 0.84) 0%, rgba(12, 24, 22, 0.58) 52%, rgba(12, 24, 22, 0.18) 100%);
}

.destination-hero .section-inner {
  width: min(1180px, 100%);
}

.destination-hero h1 {
  max-width: 800px;
  text-wrap: balance;
}

.destination-hero .hero-copy {
  max-width: 700px;
  line-height: 1.5;
}

.destination-hero .hero-actions {
  margin-top: 24px;
}

.destination-hero .fact-strip {
  max-width: 980px;
  gap: 10px;
  margin-top: 28px;
}

.destination-hero .fact {
  min-height: 72px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  background: rgba(12, 24, 22, 0.34);
  backdrop-filter: blur(8px);
}

.destination-hero .fact small,
.destination-hero .fact strong {
  color: var(--white);
}

.destination-hero .fact small {
  margin-bottom: 5px;
  color: rgba(255, 253, 248, 0.7);
  font-size: 0.68rem;
}

.destination-content {
  gap: clamp(26px, 3vw, 38px);
}

.destination-content .detail-grid {
  gap: clamp(20px, 3vw, 30px);
  align-items: start;
}

.destination-content h2 {
  color: var(--forest-2);
  font-size: clamp(1.5rem, 2.35vw, 2.1rem);
  line-height: 1.12;
}

.destination-content > .fact-strip {
  grid-template-columns: repeat(auto-fit, minmax(142px, 1fr));
  gap: 10px;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(22, 32, 29, 0.12);
  border-radius: 8px;
  background: #f5f1e8;
}

.destination-content > .fact-strip .fact {
  min-height: 76px;
  padding: 12px 13px;
  border: 1px solid rgba(22, 32, 29, 0.11);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  background: #fffefa;
  box-shadow: 0 4px 12px rgba(22, 32, 29, 0.04);
}

.destination-content > .fact-strip .fact small {
  margin-bottom: 5px;
  font-size: 0.68rem;
}

.destination-content .admin-panel {
  padding: clamp(20px, 2.5vw, 30px);
  border-color: rgba(22, 32, 29, 0.14);
  border-radius: 8px;
  background: #fffefa;
  box-shadow: 0 10px 24px rgba(22, 32, 29, 0.06);
}

.destination-content .admin-panel h2 {
  margin-bottom: 16px;
  font-size: clamp(1.28rem, 2vw, 1.65rem);
}

.destination-content .feature-grid {
  gap: 12px;
}

.destination-content .feature-card {
  min-height: 0;
  padding: 18px;
  border-color: rgba(22, 32, 29, 0.12);
  border-radius: 6px;
  background: #f7f4ee;
  box-shadow: none;
}

.destination-content .admin-panel .feature-card {
  padding: 13px 0;
  border: 0;
  border-top: 1px solid rgba(22, 32, 29, 0.11);
  border-radius: 0;
  background: transparent;
}

.destination-content .admin-panel .feature-card:first-child { border-top: 0; padding-top: 0; }
.destination-content .admin-panel .feature-card:last-child { padding-bottom: 0; }
.destination-content .feature-card strong { color: var(--forest); }
.destination-content .feature-card span { color: var(--muted); line-height: 1.5; }

.destination-content .detail-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.destination-content .detail-list li {
  position: relative;
  margin: 0;
  padding-left: 19px;
  line-height: 1.5;
}

.destination-content .detail-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.destination-content .itinerary-list {
  gap: 10px;
}

.destination-content .itinerary-list div {
  grid-template-columns: minmax(94px, 0.38fr) minmax(0, 1fr);
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(22, 32, 29, 0.12);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  background: #f7f4ee;
}

.destination-content .itinerary-list strong {
  font-size: 0.86rem;
  text-transform: uppercase;
}

.destination-content .trek-story-media {
  border: 1px solid rgba(22, 32, 29, 0.12);
  box-shadow: 0 14px 30px rgba(22, 32, 29, 0.1);
}

.destination-content .trek-story-media figcaption {
  background: var(--forest);
}

.destination-content .gallery-grid img {
  border: 1px solid rgba(22, 32, 29, 0.12);
  box-shadow: 0 8px 18px rgba(22, 32, 29, 0.08);
}

.destination-content .faq-item {
  border-radius: 6px;
  border-color: rgba(22, 32, 29, 0.14);
}

.related-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

@media (max-width: 759px) {
  .admin-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px 12px;
    padding: 12px 16px;
  }

  .admin-brand {
    min-width: 0;
    overflow: hidden;
  }

  .admin-brand span,
  .admin-brand small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .admin-header-context {
    display: none;
  }

  .admin-header .admin-actions .ghost-button {
    display: none;
  }

  .admin-header .admin-actions .button {
    min-height: 38px;
    padding-inline: 11px;
  }

  .admin-nav {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    border: 1px solid #d5dfda;
    background: #eef3f0;
  }

  .admin-nav-button {
    min-width: 0;
    padding-inline: 8px;
    font-size: 0.69rem;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .content-admin-header .admin-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .content-admin-header .admin-nav-button {
    font-size: 0.63rem;
    padding-inline: 5px;
  }

  .content-manager-heading {
    align-items: start;
    flex-direction: column;
  }

  .content-manager-actions {
    width: 100%;
  }

  .content-manager-actions .button,
  .content-manager-actions .ghost-button {
    flex: 1 1 150px;
  }

  .content-lists,
  .content-form-grid {
    grid-template-columns: 1fr;
  }

  .content-record {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .content-record > img {
    width: 54px;
    height: 54px;
  }

  .content-record-title {
    display: grid;
    gap: 5px;
  }

  .content-record-title .status {
    justify-self: start;
  }

  .content-record-actions .small-button {
    flex: 1 1 calc(50% - 6px);
    text-align: center;
  }

  .content-media-grid {
    grid-template-columns: 1fr;
  }

  .content-cover-preview {
    width: min(180px, 100%);
  }

  .content-gallery-preview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .destination-card > a:first-child img,
  .trek-card > img {
    aspect-ratio: 4 / 3;
  }

  .destination-body,
  .trek-card-body {
    padding: 18px;
  }

  .destination-card .card-actions,
  .trek-card .card-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .destination-card .button,
  .trek-card .button,
  .trek-card .ghost-button,
  .destination-card .text-button {
    width: 100%;
  }

  .destination-hero {
    min-height: 0;
    padding: 106px 16px 40px;
  }

  .destination-hero .fact-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .destination-content .detail-grid {
    gap: 20px;
  }

  .destination-content .admin-panel {
    padding: 20px;
  }

  .destination-content .itinerary-list div {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 15px;
  }

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

@media (prefers-reduced-motion: reduce) {
  .destination-card,
  .trek-card,
  .destination-card > a:first-child img,
  .trek-card > img {
    transition: none;
  }
}
