:root {
  --bg: #9dac7d;
  --bg-soft: #eff2e7;
  --surface: rgba(248, 248, 241, 0.78);
  --surface-strong: rgba(224, 229, 210, 0.92);
  --line: rgba(79, 108, 79, 0.14);
  --text: #2e3d30;
  --text-soft: #4b5d4d;
  --olive: #4f6c4f;
  --olive-deep: #39503d;
  --gold: #aca975;
  --burnt: #6d8567;
  --shadow: 0 24px 60px rgba(46, 61, 48, 0.14);
  --paper: rgba(248, 248, 241, 0.92);
  --paper-soft: rgba(236, 239, 227, 0.88);
  --paper-strong: rgba(220, 226, 202, 0.94);
  --ink-inverse: #f5f5ee;
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      circle at top left,
      rgba(172, 169, 117, 0.24),
      transparent 30%
    ),
    radial-gradient(
      circle at top right,
      rgba(109, 133, 103, 0.22),
      transparent 32%
    ),
    linear-gradient(180deg, #eef2e7 0%, #d8dec8 46%, #b8c19b 100%);
}

body.modal-open {
  overflow: hidden;
}
/* 
green #7f723b
*/
img {
  display: block;
  max-width: 100%;
}

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

p {
  margin: 0;
  line-height: 1.7;
  color: var(--text-soft);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 1;
  color: var(--text);
}
li {
  margin-bottom: 1rem;
}
.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  /* background: rgba(123, 114, 59, 0.719); */
  background: rgba(244, 246, 237, 0.92);
  border-bottom: 1px solid rgba(79, 108, 79, 0.08);
}
/* 
rgba(123, 114, 59) 
rgba(107, 110, 55, 0.616)
*/

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 1rem;
}

.header-inner {
  min-height: 86px;
}

.brand img {
  width: 152px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav-primary {
  flex: 1;
  justify-content: center;
}

.site-nav a {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-soft);
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--burnt);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 1px solid rgba(79, 108, 79, 0.16);
  border-radius: 999px;
  background: var(--bg);
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(79, 108, 79, 0.26);
  background: var(--burnt);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: var(--text);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu-drawer {
  position: absolute;
  inset: calc(100% + 1px) 0 auto;
  padding: 0 0 1rem;
}

.menu-drawer-inner {
  display: flex;
  justify-content: flex-end;
}

.menu-drawer-panel {
  display: grid;
  gap: 1rem;
  width: min(100%, 360px);
  padding: 1.2rem;
  border: 1px solid rgba(79, 108, 79, 0.12);
  border-radius: var(--radius-md);
  /* background: rgba(121, 112, 59, 0.699); */
  background: rgba(244, 246, 237, 0.92);
  box-shadow: var(--shadow);
}

.menu-group {
  display: grid;
  gap: 0.4rem;
}

.menu-group a {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  transition: color 180ms ease;
}

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

.menu-group-primary {
  display: none;
}

.menu-drawer-panel .button {
  width: 100%;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--gold), var(--burnt));
  color: #233022;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 16px 30px rgba(79, 108, 79, 0.18);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(79, 108, 79, 0.26);
}

.button-small {
  min-height: 44px;
  padding-inline: 1.2rem;
}

.button-secondary {
  background: transparent;
  color: var(--text);
  border-color: rgba(79, 108, 79, 0.15);
  box-shadow: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0 4rem;
}

.hero-grid,
.faq-layout,
.faq-grid,
.about-grid,
.contact-grid {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  align-items: center;
}

.hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(3.6rem, 7vw, 6.4rem);
}

.eyebrow {
  margin-bottom: 1rem;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--olive);
}

.hero-text {
  max-width: 60ch;
  margin-top: 1.4rem;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.hero-meta div,
.panel-card,
.tour-card,
.about-card,
.contact-panel,
.gallery-card,
.highlights article {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-meta div {
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius-sm);
  background: var(--surface-strong);
}

.meta-label,
.panel-label,
.tour-tag,
.contact-item span {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.meta-label,
.tour-tag,
.contact-item span {
  color: var(--burnt);
}

.hero-meta strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.45;
}

.hero-panel {
  display: grid;
  gap: 1.2rem;
}

.panel-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  /* background: var(--surface-strong); */
  background: linear-gradient(
    180deg,
    rgba(248, 248, 241, 0.96),
    rgba(220, 226, 202, 0.92)
  );
}

.panel-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -28% auto;
  width: 180px;
  aspect-ratio: 1;
  border-radius: 50%;
  /* background: radial-gradient(circle, rgba(255, 255, 255, 0.46), transparent 85%); */
}

.panel-card-primary {
  min-height: 320px;
  background: linear-gradient(
    180deg,
    rgba(248, 248, 241, 0.96),
    rgba(220, 226, 202, 0.92)
  );
  /* linear-gradient(160deg, rgba(79, 108, 79, 0.18), rgba(135, 121, 59, 0.747)),
    var(--surface); */
}

.panel-card-primary h2 {
  margin-bottom: 1rem;
  font-size: 2.4rem;
}

.panel-card-accent {
  background: linear-gradient(
    180deg,
    rgba(248, 248, 241, 0.96),
    rgba(220, 226, 202, 0.92)
  );
  /* linear-gradient(135deg, rgba(172, 169, 117, 0.16), rgba(109, 133, 103, 0.08)),
    var(--surface-strong); */
}
.panel-card-accent img {
  border-radius: 20px;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
  opacity: 0.85;
}

.hero-orb-left {
  top: 5rem;
  left: -5rem;
  width: 220px;
  height: 220px;
  background: radial-gradient(
    circle,
    rgba(172, 169, 117, 0.4),
    transparent 70%
  );
}

.hero-orb-right {
  right: -6rem;
  bottom: 2rem;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(79, 108, 79, 0.22), transparent 72%);
}

.highlights {
  padding: 0 0 2.5rem;
}

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

.highlights article {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: rgba(248, 248, 241, 0.78);
}

.highlights span {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--olive);
  font-size: 0.92rem;
  font-weight: 800;
}

.highlights h3,
.tour-copy h3 {
  margin-bottom: 0.8rem;
  font-size: 2rem;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(79, 108, 79, 0.08), rgba(248, 248, 241, 0)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2rem;
}

.section-heading h2,
.faq-intro h1,
.about-copy h2,
.contact-copy h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.7rem, 5vw, 4rem);
}

.tour-grid,
.tour-grid-diff,
.gallery-grid,
.about-stack {
  display: grid;
  gap: 1.3rem;
}

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

.tour-card {
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(248, 248, 241, 0.96),
    rgba(220, 226, 202, 0.92)
  );

  display: flex;
  flex-direction: column;
}

.tour-visual {
  min-height: 220px;
  background-size: cover;
  background-position: center;
}

.tour-visual-one {
  background:
    linear-gradient(180deg, rgba(63, 43, 25, 0.1), rgba(63, 43, 25, 0.2)),
    linear-gradient(135deg, rgba(172, 169, 117, 0.9), rgba(79, 108, 79, 0.92));
}

.tour-visual-two {
  background:
    linear-gradient(180deg, rgba(63, 43, 25, 0.06), rgba(63, 43, 25, 0.24)),
    linear-gradient(135deg, rgba(109, 133, 103, 0.9), rgba(79, 108, 79, 0.86));
}

.tour-visual-three {
  background:
    linear-gradient(180deg, rgba(63, 43, 25, 0.08), rgba(63, 43, 25, 0.2)),
    linear-gradient(135deg, rgba(79, 108, 79, 0.94), rgba(172, 169, 117, 0.76));
}

.tour-visual img {
  /* border-radius: 150px; */
  height: 310px;
  width: 100%;
  /* zoom: 150%; */
  /* transform: scale(0.5); */
  object-fit: cover;

  /* object-fit: contain; */
}

.tour-copy {
  padding: 1.5rem;

  display: flex;
  flex-direction: column;
  flex: 1;
}

.tour-card a,
.hero-panel a {
  margin-top: auto;
  width: fit-content;
  padding: 0.5rem 0.5rem;
  border-radius: 5px;
  border: 1px solid rgba(79, 108, 79, 0.3);
  color: #233022;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 16px 30px rgba(79, 108, 79, 0.18);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.about-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  align-items: start;
}

.about-stack {
  grid-template-columns: 1fr;
}

.about-card {
  padding: 1.4rem 1.5rem;
  border-radius: var(--radius-md);
  background: linear-gradient(
    180deg,
    rgba(248, 248, 241, 0.96),
    rgba(220, 226, 202, 0.92)
  );
}

.about-card strong {
  display: block;
  margin-bottom: 0.7rem;
  font-size: 1.1rem;
}

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 220px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  display: flex;
  align-items: end;
  padding: 1.5rem;
  background:
    linear-gradient(180deg, rgba(63, 43, 25, 0.05), rgba(63, 43, 25, 0.38)),
    linear-gradient(135deg, rgba(172, 169, 117, 0.88), rgba(79, 108, 79, 0.78));
}

.gallery-card span {
  position: relative;
  z-index: 1;
  color: #f5f5ee;
  font-weight: 700;
}

.gallery-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(248, 248, 241, 0.26);
  border-radius: 20px;
}

.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-large-standing {
  grid-column: span 1;
  grid-row: span 2;
}

.gallery-small-one {
  background:
    linear-gradient(180deg, rgba(63, 43, 25, 0.05), rgba(63, 43, 25, 0.36)),
    linear-gradient(
      135deg,
      rgba(109, 133, 103, 0.94),
      rgba(172, 169, 117, 0.78)
    );
}

.gallery-small-two {
  background:
    linear-gradient(180deg, rgba(63, 43, 25, 0.05), rgba(63, 43, 25, 0.4)),
    linear-gradient(135deg, rgba(79, 108, 79, 0.94), rgba(135, 123, 87, 0.82));
}

.gallery-small-three {
  background:
    linear-gradient(180deg, rgba(63, 43, 25, 0.04), rgba(63, 43, 25, 0.34)),
    linear-gradient(135deg, rgba(172, 169, 117, 0.82), rgba(109, 133, 103, 0.9));
}

.gallery-small-four {
  background:
    linear-gradient(180deg, rgba(63, 43, 25, 0.05), rgba(63, 43, 25, 0.36)),
    linear-gradient(135deg, rgba(79, 108, 79, 0.88), rgba(172, 169, 117, 0.7));
}

.gallery-card img {
  border-radius: 15px;
  height: 100%;
  width: 100%;
  /* zoom: 150%; */
  /* transform: scale(0.5); */
  object-fit: cover;

  /* object-fit: contain; */
}

.gallery-card-custom-img {
  object-position: left center;
  object-position: right bottom;
  object-position: 30% 70%;
}

.contact-section {
  padding-bottom: 5.5rem;
}

.contact-grid {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
  align-items: start;
}

.did-you-know-intro {
  max-width: 58ch;
  margin-top: 0.35rem;
}

.discovery-trail {
  position: relative;
  display: grid;
  gap: 1.2rem;
  margin-top: 2rem;
  padding-left: 0.9rem;
}

.discovery-trail::before {
  content: "";
  position: absolute;
  top: 0.35rem;
  bottom: 0.35rem;
  left: 1.45rem;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(79, 108, 79, 0.2),
    rgba(109, 133, 103, 0.7),
    rgba(79, 108, 79, 0.16)
  );
}

.trail-stop {
  position: relative;
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.trail-marker {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 3rem;
  aspect-ratio: 1;
  border: 4px solid rgba(248, 248, 241, 0.92);
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    rgba(172, 169, 117, 0.96),
    rgba(109, 133, 103, 0.9)
  );
  color: #243024;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 12px 24px rgba(46, 61, 48, 0.16);
}

.trail-card {
  padding: 1.15rem 1.25rem;
  border: 1px solid rgba(79, 108, 79, 0.12);
  border-radius: 22px;
  background: linear-gradient(
    180deg,
    rgba(248, 248, 241, 0.92),
    rgba(225, 231, 210, 0.94)
  );
  box-shadow: 0 18px 36px rgba(46, 61, 48, 0.09);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.trail-stop:hover .trail-card,
.trail-stop:focus-within .trail-card {
  transform: translateY(-3px);
  border-color: rgba(79, 108, 79, 0.24);
  box-shadow: 0 24px 42px rgba(46, 61, 48, 0.15);
}

.trail-title {
  margin-bottom: 0.45rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  line-height: 0.95;
  color: var(--text);
}

.contact-form {
  position: relative;
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
}

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

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--text);
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(79, 108, 79, 0.15);
  border-radius: 18px;
  background: rgba(240, 242, 233, 0.96);
  color: var(--text);
  font: inherit;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.form-field textarea {
  /* min-height: 160px; */
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(79, 108, 79, 0.7);
  box-shadow: 0 0 0 4px rgba(79, 108, 79, 0.12);
  transform: translateY(-1px);
}

.contact-form-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-form .button[disabled] {
  cursor: wait;
  opacity: 0.7;
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
}

.form-status[data-state="pending"] {
  color: var(--burnt);
}

.form-status[data-state="success"] {
  color: var(--olive);
}

.form-status[data-state="error"] {
  color: #9d2f2f;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1001;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(35, 47, 36, 0.58);
  backdrop-filter: blur(10px);
}

.modal-overlay[hidden] {
  display: none;
}

.modal-card {
  position: relative;
  width: min(100%, 760px);
  max-height: min(90vh, 960px);
  overflow: auto;
  padding: 2rem;
  border: 1px solid rgba(79, 108, 79, 0.16);
  border-radius: var(--radius-lg);
  background: linear-gradient(
    180deg,
    rgba(248, 248, 241, 0.98),
    rgba(220, 226, 202, 0.98)
  );
  box-shadow: 0 30px 80px rgba(35, 47, 36, 0.32);
}

.modal-card h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(79, 108, 79, 0.16);
  border-radius: 999px;
  background: rgba(248, 248, 241, 0.9);
  color: var(--text);
  font: inherit;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.modal-close:hover,
.modal-close:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(46, 61, 48, 0.16);
}

.modal-intro {
  margin-bottom: 1.5rem;
}

.modal-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.modal-actions .form-status {
  flex: 1 1 220px;
}

.contact-panel {
  margin-top: 20%;
  height: 80%;
  display: grid;
  gap: 1rem;
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    180deg,
    rgba(248, 248, 241, 0.96),
    rgba(220, 226, 202, 0.92)
  );
}

.contact-item {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(79, 108, 79, 0.08);
}

.contact-item:last-child {
  border-bottom: 0;
}

.contact-item a,
.contact-item p {
  font-size: 1.06rem;
  font-weight: 700;
  color: var(--text);
}

.site-footer {
  margin-top: 5rem;
  border-top: 1px solid rgba(79, 108, 79, 0.08);
  background: rgba(79, 108, 79, 0.08);
}

.footer-inner {
  min-height: 82px;
}

.footer-inner p:first-child {
  color: var(--text);
  font-weight: 800;
}

.social-media-meta {
  height: 50px;
  margin: 15px;
}

.social-media-trip {
  height: 50px;
  margin: 15px;
}

.social-media-items {
  display: flex;
}

.tour-details p {
  width: 60%;
  margin: 1rem;
}
.hero-map-page {
  padding-bottom: 2rem;
}

.map-page-intro {
  display: grid;
  gap: 1.5rem;
}

.map-page-intro h1 {
  font-size: clamp(3.2rem, 6vw, 5.4rem);
}

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

.map-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.map-filter-button {
  min-height: 44px;
  padding: 0.75rem 1.2rem;
  border: 1px solid rgba(79, 108, 79, 0.14);
  border-radius: 999px;
  background: rgba(248, 248, 241, 0.76);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.map-filter-button:hover,
.map-filter-button:focus-visible,
.map-filter-button.is-active {
  transform: translateY(-1px);
  border-color: rgba(79, 108, 79, 0.24);
  background: linear-gradient(
    135deg,
    rgba(172, 169, 117, 0.92),
    rgba(109, 133, 103, 0.88)
  );
  box-shadow: 0 12px 24px rgba(79, 108, 79, 0.18);
}

.map-explorer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 1.5rem;
  align-items: start;
}

.map-stage,
.map-details,
.map-place-card {
  background: linear-gradient(
    180deg,
    rgba(248, 248, 241, 0.92),
    rgba(220, 226, 202, 0.92)
  );
}

.map-stage,
.map-details {
  padding: 1.6rem;
  border-radius: var(--radius-lg);
}

.map-stage-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.map-stage-note {
  max-width: 18ch;
  text-align: right;
  font-size: 0.95rem;
}

.kindia-map-shell {
  position: relative;
  user-select: none;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(79, 108, 79, 0.12);
  background: linear-gradient(
    180deg,
    rgba(248, 248, 241, 0.92),
    rgba(229, 234, 216, 0.92)
  );
}

.kindia-map {
  position: relative;
  aspect-ratio: 1455 / 1099;
  min-height: 460px;
}

.kindia-map .leaflet-top,
.kindia-map .leaflet-bottom,
.kindia-map .leaflet-control {
  z-index: 1;
}

.kindia-map .leaflet-control-zoom a {
  color: var(--text);
}

.kindia-map .leaflet-popup-content-wrapper,
.kindia-map .leaflet-popup-tip {
  background: rgba(248, 248, 241, 0.96);
  color: var(--text);
}

.kindia-popup strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.kindia-popup p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
}

.kindia-marker {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 0.1px;
  border-style: solid;
  border-color: #233022;
  border-radius: 50% 50% 50% 0;
  background: linear-gradient(135deg, var(--gold), var(--burnt));
  color: #243024;
  font: inherit;
  font-size: xx-small;
  font-weight: 800;
  cursor: pointer;
  transform: translate(-50%, -100%) rotate(-45deg);
  box-shadow: 0 14px 28px rgba(35, 47, 36, 0.28);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease;
}

.kindia-marker span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transform: rotate(45deg);
}

.kindia-marker:hover,
.kindia-marker:focus-visible,
.kindia-marker.is-active {
  transform: translate(-50%, -105%) rotate(-45deg) scale(1.08);
  box-shadow: 0 18px 32px rgba(35, 47, 36, 0.34);
}

.kindia-marker.is-hidden {
  opacity: 0.2;
}

.map-details h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(2.2rem, 4vw, 3.3rem);
}

.map-details-summary {
  margin-bottom: 1rem;
  font-size: 1.06rem;
}

.map-details-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.25rem 0;
}

.map-details-meta div {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  background: rgba(248, 248, 241, 0.62);
  border: 1px solid rgba(79, 108, 79, 0.1);
}

.map-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.1rem;
}

.map-tag-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(248, 248, 241, 0.72);
  border: 1px solid rgba(79, 108, 79, 0.12);
  font-size: 0.88rem;
  font-weight: 700;
}

.map-details-list {
  margin-top: 1.4rem;
}

.map-details-list h3 {
  margin-bottom: 0.75rem;
  font-size: 1.8rem;
}

.map-details-list ul {
  margin: 0;
  padding-left: 1.2rem;
}

.map-places-section {
  margin-top: 3rem;
}

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

.map-place-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.map-place-card.is-active {
  transform: translateY(-3px);
  border-color: rgba(79, 108, 79, 0.24);
  box-shadow: 0 24px 44px rgba(46, 61, 48, 0.18);
}

.map-place-button {
  width: 100%;
  height: 100%;
  padding: 1.4rem;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.map-place-button h3 {
  margin-bottom: 0.8rem;
  font-size: 2rem;
}

.faq-page {
  padding-bottom: 1.5rem;
}

.faq-layout,
.faq-grid {
  display: grid;
  gap: 1.5rem;
}

.faq-layout {
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: start;
}

.faq-intro {
  max-width: 46rem;
}

.faq-intro h1 {
  margin-bottom: 1rem;
  font-size: clamp(3.2rem, 6vw, 5.2rem);
  line-height: 0.95;
}

.faq-lead {
  max-width: 48ch;
  font-size: 1.08rem;
}

.faq-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.faq-pill-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.55rem 0.95rem;
  border: 1px solid rgba(79, 108, 79, 0.14);
  border-radius: 999px;
  background: rgba(248, 248, 241, 0.72);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--olive);
}

.faq-side-card,
.faq-note-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(
    180deg,
    rgba(248, 248, 241, 0.96),
    rgba(220, 226, 202, 0.92)
  );
  box-shadow: var(--shadow);
}

.faq-side-card {
  display: grid;
  gap: 1rem;
  padding: 1.7rem;
}

.faq-side-card h2,
.faq-note-card h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.faq-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  list-style: none;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  line-height: 0.98;
}

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(79, 108, 79, 0.1);
  color: var(--olive);
  font-size: 1.55rem;
  transition:
    transform 180ms ease,
    background-color 180ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
  background: rgba(109, 133, 103, 0.18);
}

.faq-answer {
  padding: 0 1.5rem 1.4rem;
}

.faq-note-card {
  position: sticky;
  top: 7rem;
  display: grid;
  gap: 1rem;
  padding: 1.6rem;
}

.faq-quick-list {
  display: grid;
  gap: 0.75rem;
}

.faq-quick-list div {
  display: grid;
  gap: 0.4rem;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: rgba(248, 248, 241, 0.74);
  border: 1px solid rgba(79, 108, 79, 0.1);
}

.faq-quick-list strong {
  font-size: 1rem;
  color: var(--text);
}

.faq-quick-list p {
  font-size: 0.98rem;
}

.editorial-page {
  padding-top: 1rem;
}

.story-shell {
  display: grid;
  gap: 1.6rem;
}

.story-hero,
.split-story {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 1.4rem;
  align-items: start;
}

.split-story-reverse .story-copy,
.split-story-reverse .story-columns-two,
.split-story-reverse .story-panel {
  order: 2;
}

.split-story-reverse .story-media,
.split-story-reverse .story-media-stack,
.split-story-reverse .story-gallery-grid {
  order: 1;
}

.story-intro-card,
.story-copy,
.story-panel,
.story-columns-two > article,
.story-stack-card {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(
    180deg,
    rgba(248, 248, 241, 0.96),
    rgba(220, 226, 202, 0.92)
  );
  box-shadow: var(--shadow);
}

.story-intro-card,
.story-copy,
.story-panel,
.story-columns-two > article,
.story-stack-card {
  padding: 1.65rem;
}

.story-intro-card {
  display: grid;
  gap: 1rem;
}

.story-intro-card h1 {
  font-size: clamp(3.1rem, 6vw, 5.2rem);
  line-height: 0.93;
}

.story-prose,
.story-text-stack {
  display: grid;
  gap: 0.9rem;
}

.story-prose strong,
.story-copy strong,
.story-panel strong,
.story-columns-two strong,
.story-stack-card strong {
  font-size: 1rem;
  color: var(--text);
}

.story-media {
  overflow: hidden;
  min-height: 100%;
  align-content: center;
}

.story-media img {
  padding: 20px;
  display: block;
  width: 100%;
  max-height: 100%;
  min-height: 320px;
  /* object-fit: cover; */
  object-fit: contain;
  /* border: solid #394b1ba1 1px; */
  border-radius: 30px;
  /* background: linear-gradient(180deg, rgba(248, 248, 241, 0.96), rgba(220, 226, 202, 0.92)); */
  background: linear-gradient(
    180deg,
    rgba(109, 133, 103, 0.493),
    rgba(220, 226, 202, 0.92)
  );
  /* box-shadow: var(--shadow); */
  /* 109 133 103 */
}
.story-media-smaller img {
  max-height: 500px;
  object-fit: cover;
}


/* .gallery-card-custom-img {
  object-position: left center;
  object-position: right bottom;
  object-position: 30% 70%;
} */

#spec-1 {
  object-position: left center;
  object-position: right bottom;
  object-position: 30% 70%;
}

.story-media-stack,
.story-gallery-grid,
.story-columns-two {
  display: grid;
  gap: 1rem;
}

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

.story-media-stack .story-media img {
  min-height: 185px;
}

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

.story-copy {
  align-content: center;
  display: grid;
  gap: 0.95rem;
  height: 100%;
}

.story-copy h1,
.story-copy h2,
.story-panel h2,
.story-stack-card h2,
.story-columns-two h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 0.96;
}

.story-copy h3,
.story-panel h3,
.story-stack-card h3,
.story-columns-two h3,
.story-columns-two h4 {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1;
}

.story-copy h4 {
  font-size: 1.05rem;
  line-height: 1.35;
}

.story-copy p,
.story-panel p,
.story-stack-card p,
.story-columns-two p,
.story-columns-two i,
.story-copy i {
  max-width: none;
}

.story-copy ul,
.story-panel ul,
.story-stack-card ul,
.story-columns-two ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-soft);
}

.story-copy li,
.story-panel li,
.story-stack-card li,
.story-columns-two li {
  margin-bottom: 0.65rem;
}

.story-inline-gap {
  display: grid;
  gap: 0.85rem;
}

.story-gallery-grid .story-media img {
  min-height: 230px;
}

@media (max-width: 1024px) {
  .contact-panel {
    margin-top: 0%;
    height: fit-content;
  }

  .hero-grid,
  .faq-layout,
  .faq-grid,
  .tour-grid,
  .tour-grid-diff,
  .about-grid,
  .contact-grid,
  .highlights-grid,
  .map-explorer-layout,
  .map-places-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 13ch;
  }

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

  .tour-details p {
    width: 100%;
  }

  .map-page-summary {
    grid-template-columns: 1fr;
  }

  .kindia-map {
    min-height: 360px;
  }

  .map-stage-header {
    flex-direction: column;
  }

  .map-stage-note {
    max-width: none;
    text-align: left;
  }

  .story-hero,
  .split-story,
  .story-gallery-grid,
  .story-columns-two {
    grid-template-columns: 1fr;
  }

  .split-story-reverse .story-copy,
  .split-story-reverse .story-columns-two,
  .split-story-reverse .story-panel,
  .split-story-reverse .story-media,
  .split-story-reverse .story-media-stack,
  .split-story-reverse .story-gallery-grid {
    order: initial;
  }
  /* .gallery-large {
    grid-column: span 2;
  } */
}

@media (min-width: 900px) {
  .discovery-trail {
    gap: 0.2rem;
  }

  .trail-stop + .trail-stop {
    margin-top: 1rem;
  }

  .trail-card {
    max-width: min(100%, 44rem);
  }

  .trail-stop:nth-child(odd) .trail-card {
    margin-right: clamp(3rem, 8vw, 8rem);
  }

  .trail-stop:nth-child(even) .trail-card {
    margin-left: clamp(2.5rem, 7vw, 7rem);
    margin-right: clamp(0rem, 2vw, 1.5rem);
  }

  .trail-stop:nth-child(1) .trail-card {
    max-width: min(100%, 34rem);
  }

  .trail-stop:nth-child(2) .trail-card {
    max-width: min(100%, 42rem);
  }

  .trail-stop:nth-child(3) .trail-card {
    max-width: min(100%, 36rem);
  }

  .trail-stop:nth-child(4) .trail-card {
    max-width: min(100%, 40rem);
  }

  .trail-stop:nth-child(5) .trail-card {
    max-width: min(100%, 38rem);
  }
}

@media (max-width: 720px) {
  .site-nav-primary,
  .header-cta {
    display: none;
  }
  .menu-group-primary {
    display: grid;
  }

  .menu-drawer-inner {
    justify-content: stretch;
  }

  .menu-drawer-panel {
    width: 100%;
  }


  .hero-meta {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    display: grid;
    justify-content: stretch;
  }

  .header-inner {
    min-height: 76px;
  }

  .button-small {
    width: 100%;
  }

  .hero {
    padding-top: 3.6rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.9rem, 16vw, 4.6rem);
  }

  .section,
  .contact-section {
    padding: 4rem 0;
  }

  .section-heading h2,
  .faq-intro h1,
  .about-copy h2,
  .contact-copy h2 {
    font-size: clamp(2.3rem, 11vw, 3.2rem);
  }

  .map-page-intro h1,
  .map-details h2 {
    font-size: clamp(2.5rem, 11vw, 3.6rem);
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .faq-side-card,
  .faq-note-card,
  .faq-item summary,
  .faq-answer {
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }

  .faq-item summary {
    align-items: flex-start;
  }

  .faq-note-card {
    position: static;
    top: auto;
  }

  .discovery-trail {
    padding-left: 0;
  }

  .discovery-trail::before {
    left: 1.25rem;
  }

  .trail-stop {
    grid-template-columns: 3rem minmax(0, 1fr);
    gap: 0.8rem;
  }

  .trail-marker {
    width: 2.6rem;
    font-size: 0.72rem;
  }

  .trail-card {
    padding: 1rem;
  }
  .kindia-map {
    min-height: 300px;
  }

  /* .kindia-marker {
    width: 42px;
    height: 42px;
  } */

  .map-details-meta {
    grid-template-columns: 1fr;
  }

  .modal-overlay {
    padding: 1rem;
  }

  .modal-card {
    padding: 1.5rem;
  }

  .modal-actions .button {
    width: 100%;
  }

  .story-intro-card,
  .story-copy,
  .story-panel,
  .story-columns-two > article,
  .story-stack-card {
    padding: 1.2rem;
  }

  .story-media img {
    min-height: 260px;
  }

  .story-media-stack .story-media img,
  .story-gallery-grid .story-media img {
    min-height: 220px;
  }

  /* .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  } */

  /* .gallery-large {
    grid-column: span 1;
    grid-row: span 1;
  } */
}
