/*-----------------------------------*\
 * #EDITORIAL REDESIGN — The Local Path
 * Slow Kerala editorial layer (keeps brand palette)
\*-----------------------------------*/

.container,
.container-fluid {
  --page-gutter: clamp(1.25rem, 4vw, 3rem);
  width: 100%;
  max-width: 100% !important;
  margin-inline: auto;
  padding-inline: var(--page-gutter);
  box-sizing: border-box;
}

.index-page {
  --page-gutter: clamp(1.25rem, 4vw, 3rem);
}

/* Page heroes (inner pages) */
.hero:not(.hero-slider-root) {
  min-height: 48vh;
  display: flex;
  align-items: flex-end;
  padding-block: 6rem 3.5rem;
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(30, 58, 40, 0.72) 0%,
    rgba(30, 58, 40, 0.28) 55%,
    rgba(30, 58, 40, 0.18) 100%
  );
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-family: var(--ff-display);
  font-weight: 500;
  text-transform: none;
  letter-spacing: -0.03em;
  max-width: 16ch;
  line-height: 1.05;
}

.hero-text {
  color: rgba(255, 254, 249, 0.88);
  font-family: var(--ff-primary);
  font-size: var(--fs-5);
  max-width: 36rem;
  margin-top: 0.75rem;
  line-height: 1.65;
  text-transform: none;
  letter-spacing: 0;
}

/*-----------------------------------*\
 * HOME — unlock legacy fixed-slide layout
 * style.css pins .index-page .slide / body as a
 * full-viewport background. Kill that so the hero
 * is a normal in-flow section and later blocks
 * scroll below it instead of painting over it.
\*-----------------------------------*/

html.index-page,
html.index-page body {
  position: relative !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  height: auto !important;
  min-height: 100% !important;
  width: 100% !important;
}

html.index-page body::after {
  content: none !important;
  display: none !important;
  background: none !important;
}

html.index-page .hero-split .slide,
html.index-page .hero-split .hero-photo,
html.index-page .hero-split .hero-content,
html.index-page .hero-split .content,
html.index-page .hero-split .title,
html.index-page .hero-split .info-wrap,
html.index-page .hero-split .cta,
html.index-page .hero-split .slider {
  position: static !important;
  inset: auto !important;
  width: auto !important;
  height: auto !important;
}

/*-----------------------------------*\
 * HOME HERO — white copy + faded photo + stats
 * Mobile-first: stack by default; split only on large screens
\*-----------------------------------*/

.index-page .header {
  background: #fff !important;
  backdrop-filter: none !important;
}

.index-page .header-top {
  background: #fff !important;
  border-bottom: 1px solid rgba(26, 26, 26, 0.06) !important;
}

.index-page .header.active .header-top {
  background: rgba(255, 255, 255, 0.96) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-bottom: 1px solid rgba(26, 26, 26, 0.08) !important;
}

.index-page .navbar-link,
.index-page .logo-main {
  color: #1a1a1a !important;
}

.index-page .header.active .navbar-link {
  color: #1a1a1a !important;
}

.index-page .nav-open-btn {
  color: #1a1a1a !important;
}

/* Header sits in flow so it never covers the hero */
.header,
.index-page .header {
  position: sticky !important;
  top: 0;
  z-index: 200;
  padding-top: 0 !important;
  background: #fff !important;
}

.header-top,
.index-page .header-top,
.header.active .header-top,
.index-page .header.active .header-top {
  position: relative !important;
  top: auto !important;
}

.hero-split {
  --hero-green: #2d4034;
  --hero-ink: #1a1a1a;
  --hero-muted: #5c5c5c;
  --hero-sage: #dce6dc;
  --hero-bar: #f4f4f0;
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  background: #fff;
  isolation: isolate;
}

.hero-split__stage {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  overflow: visible;
}

.hero-split__slide {
  position: relative !important;
  inset: auto !important;
  top: auto !important;
  left: auto !important;
  width: 100% !important;
  height: auto !important;
  display: none;
  grid-template-columns: 1fr;
  grid-template-areas:
    "visual"
    "copy";
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.55s ease, visibility 0.55s ease;
  z-index: 0 !important;
}

.hero-split__slide.is-active {
  display: grid;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1 !important;
}

.hero-split__copy {
  position: relative;
  z-index: 2;
  grid-area: copy;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  padding: 1.5rem var(--page-gutter) 1.75rem;
}

.hero-split__title {
  margin: 0 0 0.55rem;
  font-family: var(--ff-primary);
  font-size: clamp(2.15rem, 9vw, 3.25rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--hero-ink);
}

.hero-split__tagline {
  margin: 0 0 0.75rem;
  font-family: var(--ff-primary);
  font-size: clamp(0.98rem, 3.6vw, 1.15rem);
  font-weight: 600;
  line-height: 1.45;
  color: var(--hero-ink);
}

.hero-split__lede {
  margin: 0 0 1.35rem;
  max-width: 34rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--hero-muted);
}

.hero-split__features {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.hero-split__features li {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.85rem;
  row-gap: 0.15rem;
  align-items: start;
}

.hero-split__feature-icon {
  grid-row: 1 / span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 50%;
  background: var(--hero-sage);
  color: var(--hero-green);
  font-size: 1.15rem;
}

.hero-split__features strong {
  font-family: var(--ff-primary);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--hero-ink);
  line-height: 1.25;
  align-self: end;
}

.hero-split__features li > span:last-child {
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--hero-muted);
  align-self: start;
}

.hero-split__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  max-width: 20rem;
  min-height: 2.85rem;
  min-width: 0;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  background: var(--hero-green);
  color: #fff;
  font-family: var(--ff-primary);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-split__cta:hover,
.hero-split__cta:focus-visible {
  background: #24352b;
  color: #fff;
  outline: none;
}

.hero-split__cta ion-icon {
  font-size: 1.15rem;
}

.hero-split__visual {
  position: relative;
  grid-area: visual;
  min-height: 0;
  background: #c5d0c4;
  overflow: visible;
}

.hero-split__photo {
  position: relative !important;
  inset: auto;
  display: block;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 4 / 3;
  max-height: min(42vh, 22rem);
  object-fit: cover;
  object-position: center;
}

.hero-split__fade {
  display: none;
}

.hero-split__cards {
  position: relative;
  z-index: 2;
  left: auto;
  right: auto;
  bottom: auto;
  margin: 0;
  padding: 1rem var(--page-gutter) 0;
  background: #fff;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  align-items: stretch;
}

.hero-split__dest-card {
  display: grid;
  align-content: start;
  gap: 0.35rem;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(20, 28, 22, 0.14);
}

.hero-split__dest-place {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--ff-primary);
  font-size: 1rem;
  font-weight: 700;
  color: var(--hero-ink);
  line-height: 1.2;
}

.hero-split__dest-place ion-icon {
  color: var(--hero-green);
  font-size: 1.05rem;
  flex-shrink: 0;
}

.hero-split__dest-meta {
  font-size: 0.8rem;
  color: var(--hero-muted);
  line-height: 1.45;
}

.hero-split__dest-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.75rem;
  margin-top: 0.45rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
}

.hero-split__dest-tags span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--hero-muted);
}

.hero-split__dest-tags ion-icon {
  font-size: 0.85rem;
  color: var(--hero-green);
}

.hero-split__brand-card {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.7rem;
  padding: 1.15rem 1.2rem;
  border-radius: 1.15rem;
  background: var(--hero-green);
  color: #fff;
  box-shadow: 0 14px 40px rgba(20, 28, 22, 0.2);
}

.hero-split__brand-card ion-icon {
  font-size: 1.35rem;
  color: #fff;
}

.hero-split__brand-card p {
  margin: 0;
  font-family: var(--ff-primary);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.hero-split__stats {
  flex-shrink: 0;
  background: var(--hero-bar);
  padding: 1.15rem var(--page-gutter);
}

.hero-split__stats-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.15rem;
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
}

.hero-split__stat {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--hero-ink);
  font-size: 0.82rem;
  line-height: 1.35;
  min-width: 0;
}

.hero-split__stat > span:last-child {
  min-width: 0;
}

.hero-split__stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(45, 64, 52, 0.08);
  color: #6b746e;
  font-size: 1rem;
}

.hero-split__stat strong {
  font-weight: 700;
  margin-right: 0.25rem;
}

/* Tablet: roomier stacked hero */
@media (min-width: 640px) {
  .hero-split__copy {
    padding: 1.75rem var(--page-gutter) 2rem;
  }

  .hero-split__title {
    font-size: clamp(2.6rem, 6vw, 3.5rem);
  }

  .hero-split__features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }

  .hero-split__features li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .hero-split__feature-icon {
    grid-row: auto;
  }

  .hero-split__cta {
    width: fit-content;
    min-width: 13.5rem;
  }

  .hero-split__photo {
    max-height: min(46vh, 26rem);
    aspect-ratio: 16 / 9;
  }

  .hero-split__cards {
    padding: 1.15rem var(--page-gutter) 0;
    grid-template-columns: minmax(0, 1.2fr) minmax(10rem, 0.8fr);
  }

  .hero-split__brand-card {
    display: flex;
  }

  .hero-split__stat {
    font-size: 0.86rem;
    align-items: center;
  }
}

@media (min-width: 768px) {
  .hero-split__stats-inner {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem 1.25rem;
  }
}

/* Desktop: side-by-side split */
@media (min-width: 1024px) {
  .hero-split__stage {
    min-height: calc(100svh - 5.75rem);
    overflow: hidden;
  }

  .hero-split__slide {
    position: absolute !important;
    inset: 0 !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: none;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.18fr);
    grid-template-areas: "copy visual";
  }

  .hero-split__slide.is-active {
    display: grid;
  }

  .hero-split__copy {
    padding: clamp(2.5rem, 8vh, 5rem) var(--page-gutter) 2.5rem;
  }

  .hero-split__title {
    font-size: clamp(2.6rem, 5.4vw, 4.15rem);
    margin-bottom: 0.7rem;
  }

  .hero-split__tagline {
    font-size: clamp(1rem, 1.7vw, 1.2rem);
    margin-bottom: 0.85rem;
  }

  .hero-split__lede {
    margin-bottom: 1.75rem;
  }

  .hero-split__features {
    margin-bottom: 1.85rem;
    gap: 1rem 1.15rem;
  }

  .hero-split__visual {
    min-height: 100%;
    overflow: hidden;
  }

  .hero-split__photo {
    position: absolute !important;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    max-height: none;
    aspect-ratio: auto;
  }

  .hero-split__fade {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
      to right,
      #fff 0%,
      rgba(255, 255, 255, 0.88) 8%,
      rgba(255, 255, 255, 0.35) 22%,
      rgba(255, 255, 255, 0) 42%
    );
  }

  .hero-split__cards {
    position: absolute;
    left: clamp(1rem, 3vw, 1.75rem);
    right: clamp(1rem, 3vw, 1.75rem);
    bottom: clamp(1.1rem, 3vw, 1.75rem);
    padding: 0;
    background: transparent;
    grid-template-columns: minmax(0, 1.15fr) minmax(11rem, 0.85fr);
    gap: 0.85rem;
  }

  .hero-split__dest-card {
    padding: 1.05rem 1.15rem 0.95rem;
    border-radius: 1.15rem;
    box-shadow: 0 14px 40px rgba(20, 28, 22, 0.16);
  }

  .hero-split__dest-place {
    font-size: 1.05rem;
  }

  .hero-split__stats {
    padding: 1.05rem var(--page-gutter);
  }

  .hero-split__stat {
    font-size: 0.88rem;
  }
}

/* Narrow phones */
@media (max-width: 380px) {
  .hero-split__dest-tags {
    display: none;
  }

  .hero-split__stat {
    font-size: 0.75rem;
  }

  .hero-split__stat-icon {
    width: 1.85rem;
    height: 1.85rem;
    font-size: 0.9rem;
  }
}

.home-split {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .home-split {
    grid-template-columns: minmax(14rem, 0.85fr) 1.4fr;
    gap: 4rem;
    align-items: start;
  }
}

.index-page body {
  position: relative !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  height: auto !important;
  min-height: 100vh;
  font-family: var(--ff-primary) !important;
}

.index-page html {
  overflow-x: hidden;
  height: auto;
}

.index-page .home-section {
  position: relative;
  z-index: auto;
}

.home-section {
  padding-block: var(--section-padding);
}

/* Kill legacy centered section chrome — editorial is left-aligned */
.section-subtitle,
.section-title,
.section-text {
  text-align: left !important;
}

.section-text {
  margin-inline: 0 !important;
  max-width: 38rem;
}

.section-title {
  margin-bottom: 0.85rem;
}

.section-subtitle {
  margin-bottom: 0.65rem;
}

/* Local Store — full-bleed editorial bridge into goods */
.local-store {
  position: relative;
  z-index: auto;
  background: var(--cream-beige);
  overflow: clip;
}

.local-store__shell {
  display: grid;
  align-items: stretch;
}

@media (min-width: 900px) {
  .local-store__shell {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.92fr);
    min-height: clamp(32rem, 72vh, 42rem);
  }
}

.local-store__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  padding-block: clamp(3.5rem, 8vw, 6rem);
  padding-inline: var(--page-gutter);
}

@media (min-width: 900px) {
  .local-store__copy {
    margin-inline-start: var(--page-gutter);
    margin-inline-end: 0;
    padding-inline: 0 clamp(2rem, 4vw, 3.5rem) 0 0;
    padding-block: clamp(4rem, 9vw, 6.5rem);
    max-width: 34rem;
  }
}

.local-store__copy .section-title {
  margin-bottom: 1rem;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.local-store__copy .section-text {
  margin-bottom: 0;
  max-width: 32rem;
}

.local-store__ledger {
  list-style: none;
  margin: 2.25rem 0 0;
  padding: 0;
  width: 100%;
  border-top: 1px solid rgba(45, 81, 57, 0.2);
}

.local-store__ledger li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem 1.5rem;
  align-items: baseline;
  padding-block: 1.05rem;
  border-bottom: 1px solid rgba(45, 81, 57, 0.16);
}

.local-store__item {
  font-family: var(--ff-display);
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--deep-pine);
}

.local-store__note {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-green);
  text-align: right;
  white-space: nowrap;
}

.local-store__cta .section-link {
  margin-top: 0;
}

.local-store__visual {
  position: relative;
  margin: 0;
  isolation: isolate;
  background: var(--deep-pine);
}

.local-store__visual img {
  display: block;
  width: 100%;
  height: clamp(20rem, 58vw, 28rem);
  object-fit: cover;
  object-position: center 42%;
}

.local-store__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1.15rem 1.35rem 1.25rem;
  background: var(--deep-pine);
  color: var(--warm-cream);
  font-family: var(--ff-primary);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.4;
}

@media (min-width: 900px) {
  .local-store__visual {
    min-height: 100%;
  }

  .local-store__visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
}

.home-section--cream {
  background: var(--cream-beige);
}

.home-section--paper {
  background: var(--warm-cream);
}

.home-section--pine {
  background: var(--deep-pine);
  color: var(--warm-cream);
}

.home-section--pine .section-subtitle {
  color: var(--sage-green);
}

.home-section--pine .section-title,
.home-section--pine .section-text {
  color: var(--warm-cream);
}

.home-section--pine .section-text {
  opacity: 0.88;
}

.home-intro {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 3rem;
  max-width: 40rem;
}

.home-intro .section-text {
  margin-top: 0.35rem;
}

.home-intro .section-link {
  margin-top: 0.5rem;
  justify-self: start;
}

.feature-rail {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .feature-rail {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

.feature-tile {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
}

.feature-tile figure {
  overflow: hidden;
  border-radius: var(--radius-15);
  aspect-ratio: 4 / 5;
  margin: 0;
  background: var(--deep-pine);
}

.feature-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-tile:hover img {
  transform: scale(1.04);
}

.feature-tile h3 {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--deep-pine);
  line-height: 1.2;
}

.feature-tile p {
  color: var(--secondary-text);
  font-size: var(--fs-6);
  line-height: 1.6;
  margin: 0;
}

.feature-tile .meta {
  font-size: var(--fs-7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-green);
  font-weight: 600;
}

.why-list {
  display: grid;
  gap: 0;
  margin-top: 2.5rem;
  border-top: 1px solid rgba(45, 81, 57, 0.15);
}

.why-row {
  display: grid;
  gap: 0.75rem;
  padding-block: 1.75rem;
  border-bottom: 1px solid rgba(45, 81, 57, 0.15);
}

@media (min-width: 768px) {
  .why-row {
    grid-template-columns: 2.5rem 1fr 2fr;
    gap: 1.5rem;
    align-items: baseline;
  }
}

.why-row ion-icon {
  color: var(--forest-green);
  font-size: 1.35rem;
}

.why-row h3 {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--deep-pine);
}

.why-row p {
  color: var(--secondary-text);
  font-size: var(--fs-5);
  line-height: 1.65;
  margin: 0;
}

.experience-rail {
  display: grid;
  gap: 0;
  margin-top: 2rem;
}

.experience-row {
  display: grid;
  gap: 0.5rem;
  padding-block: 1.5rem;
  border-bottom: 1px solid rgba(255, 254, 249, 0.12);
}

@media (min-width: 768px) {
  .experience-row {
    grid-template-columns: auto 1fr 2fr;
    gap: 1.5rem;
    align-items: baseline;
  }
}

.experience-row .mark {
  color: var(--sage-green);
  font-size: 1.25rem;
}

.experience-row h3 {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--warm-cream);
}

.experience-row p {
  color: rgba(255, 254, 249, 0.78);
  font-size: var(--fs-5);
  line-height: 1.65;
  margin: 0;
}

.home-cta {
  text-align: left;
  max-width: 36rem;
}

.home-cta .btn {
  margin-top: 0.5rem;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  color: var(--forest-green);
  font-weight: 600;
  font-size: var(--fs-6);
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--sage-green);
  padding-bottom: 2px;
  width: max-content;
}

.section-link:hover {
  color: var(--deep-pine);
}

.home-section--pine .section-link {
  color: var(--warm-cream);
  border-bottom-color: var(--sage-green);
}

/* Destinations — magazine rows */
.package.page-destinations {
  background: var(--warm-cream);
}

.dest-list {
  display: grid;
  gap: 4rem;
  margin-top: 3rem;
  list-style: none;
  padding: 0;
}

.dest-row {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .dest-row {
    grid-template-columns: 1.15fr 1fr;
    gap: 3rem;
  }

  .dest-row:nth-child(even) {
    direction: rtl;
  }

  .dest-row:nth-child(even) > * {
    direction: ltr;
  }
}

.dest-row figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-15);
  aspect-ratio: 5 / 4;
  background: var(--deep-pine);
}

.dest-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dest-copy h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500;
  color: var(--deep-pine);
  margin-bottom: 0.75rem;
  text-transform: none;
}

.dest-copy .card-text {
  margin-bottom: 1.25rem;
  font-size: var(--fs-5);
  line-height: 1.7;
}

.dest-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-bottom: 1.25rem;
  padding: 0;
  list-style: none;
}

.dest-meta li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--secondary-text);
  font-size: var(--fs-6);
}

.dest-meta ion-icon {
  color: var(--sage-green);
  font-size: 1rem;
}

.dest-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 1rem 1.5rem;
}

.dest-price .price {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  color: var(--forest-green);
  font-weight: 500;
}

.dest-price .price span {
  font-family: var(--ff-primary);
  font-size: var(--fs-7);
  color: var(--secondary-text);
  font-weight: 500;
}

.dest-price .reviews {
  font-size: var(--fs-7);
  color: var(--light-text);
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--forest-green);
  font-weight: 600;
  font-size: var(--fs-6);
  border-bottom: 1px solid var(--sage-green);
  padding-bottom: 2px;
  background: none;
  border-radius: 0;
  text-transform: none;
}

.btn-text:hover {
  color: var(--deep-pine);
}

/* About / Experiences — editorial lists */
.editorial-list {
  display: grid;
  gap: 0;
  margin-top: 2.5rem;
  border-top: 1px solid rgba(45, 81, 57, 0.14);
}

.editorial-item {
  display: grid;
  gap: 0.75rem;
  padding-block: 1.75rem;
  border-bottom: 1px solid rgba(45, 81, 57, 0.14);
}

@media (min-width: 768px) {
  .editorial-item {
    grid-template-columns: 2rem minmax(10rem, 1fr) 2fr;
    gap: 1.5rem;
    align-items: baseline;
  }
}

.editorial-item ion-icon {
  color: var(--forest-green);
  font-size: 1.25rem;
}

.editorial-item h3 {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--deep-pine);
  text-transform: none;
}

.editorial-item p {
  color: var(--secondary-text);
  line-height: 1.7;
  margin: 0;
  font-size: var(--fs-5);
}

/* Quiet experiences (override old cards) */
.experiences-grid {
  display: grid;
  gap: 0;
  margin-top: 2rem;
  border-top: 1px solid rgba(45, 81, 57, 0.14);
}

.experience-item {
  display: grid;
  gap: 0.75rem;
  padding-block: 1.75rem;
  border-bottom: 1px solid rgba(45, 81, 57, 0.14);
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  transform: none !important;
}

@media (min-width: 768px) {
  .experience-item {
    grid-template-columns: 2.5rem 1fr 2fr;
    gap: 1.5rem;
    align-items: baseline;
  }
}

.experience-icon {
  width: auto;
  height: auto;
  background: transparent !important;
  border-radius: 0;
  box-shadow: none;
  color: var(--forest-green);
  font-size: 1.35rem;
  margin: 0;
  display: block;
  place-items: unset;
}

.experience-item .h3 {
  text-transform: none;
  font-family: var(--ff-display);
  font-weight: 500;
  color: var(--deep-pine);
}

.experience-item:hover {
  transform: none;
  box-shadow: none;
}

/* About cards → flat editorial */
.about-content {
  display: grid;
  gap: 0;
  margin-block: 2rem 0;
  justify-items: stretch;
  border-top: 1px solid rgba(45, 81, 57, 0.14);
}

.about-card {
  background: transparent;
  padding: 1.75rem 0;
  border-radius: 0;
  box-shadow: none;
  border-bottom: 1px solid rgba(45, 81, 57, 0.14);
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .about-card {
    grid-template-columns: 2.5rem 1fr 2fr;
    gap: 1.5rem;
    align-items: baseline;
  }
}

.about-card:hover {
  transform: none;
  box-shadow: none;
}

.about-card .card-icon {
  background: transparent;
  width: auto;
  height: auto;
  border-radius: 0;
  color: var(--forest-green);
  font-size: 1.35rem;
  margin: 0;
  place-items: unset;
  display: block;
}

.about-card .card-title {
  font-family: var(--ff-display);
  font-weight: 500;
  text-transform: none;
  margin: 0;
}

.about-card .card-text {
  margin: 0;
}

/* Gallery */
.gallery-parallax-grid {
  gap: 0.75rem;
  margin-top: 2rem;
}

.gallery-parallax-item {
  border-radius: var(--radius-15);
  box-shadow: none;
  overflow: hidden;
  border: none;
}

/* Contact / B2B flatten */
.contact-modern-grid {
  gap: 1.5rem;
}

.contact-modern-card {
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(45, 81, 57, 0.14);
  text-align: left;
}

.contact-modern-card::before {
  display: none;
}

.contact-modern-card:hover {
  transform: none;
  box-shadow: none;
}

.contact-icon-wrapper {
  background: transparent;
  color: var(--forest-green);
  width: auto;
  height: auto;
  border-radius: 0;
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
  box-shadow: none;
}

.contact-modern-card h3 {
  font-family: var(--ff-display);
  font-weight: 500;
  text-transform: none;
  color: var(--deep-pine);
}

.stat-figures {
  display: grid;
  gap: 2rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .stat-figures {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.stat-figure {
  border-top: 1px solid rgba(45, 81, 57, 0.18);
  padding-top: 1.25rem;
}

.stat-figure .value {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--forest-green);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.stat-figure .label {
  margin-top: 0.5rem;
  color: var(--secondary-text);
  font-size: var(--fs-6);
  letter-spacing: 0.04em;
}

.partner-quote {
  border-top: 1px solid rgba(45, 81, 57, 0.14);
  padding-block: 1.75rem;
  border-bottom: 1px solid rgba(45, 81, 57, 0.14);
}

.partner-quote + .partner-quote {
  border-top: none;
}

.partner-quote blockquote {
  font-family: var(--ff-display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 400;
  color: var(--deep-pine);
  line-height: 1.45;
  margin: 0 0 1rem;
}

.partner-quote cite {
  font-style: normal;
  font-size: var(--fs-6);
  color: var(--sage-green);
  font-weight: 600;
}

/* Forms */
.contact-form .input-field,
.footer-form .input-field {
  border-radius: 4px;
  border: 1px solid rgba(45, 81, 57, 0.22);
  background: var(--warm-cream);
  padding: 12px 14px;
}

.contact-form .input-field:focus,
.footer-form .input-field:focus {
  outline: none;
  border-color: var(--forest-green);
  box-shadow: 0 0 0 3px rgba(45, 81, 57, 0.12);
}

.contact-form .btn-primary {
  border-radius: 4px;
}

/* Footer quiet */
.footer {
  background: var(--deep-pine);
}

.footer-form .btn {
  border-radius: 4px;
  text-transform: none;
}

/* CTA band */
.cta .container,
section.cta {
  text-align: left;
}

.band-cta {
  padding-block: var(--section-padding);
  background: var(--cream-beige);
}

.band-cta .container {
  max-width: 40rem;
}

/* Scroll reveal — content is visible by default so lists never stay blank */
[data-reveal] {
  opacity: 1;
  transform: none;
}

@media (min-width: 1024px) {
  [data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }

  [data-reveal].is-visible {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }

  .feature-tile img {
    transition: none;
  }
}

/* Package card fallback (if still used) */
.package-card {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

/*-----------------------------------*\
 * SITE-WIDE RESPONSIVE HARDENING
\*-----------------------------------*/

html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  overflow-y: auto;
  max-width: 100%;
}

img,
video,
iframe {
  max-width: 100%;
  height: auto;
}

.header-top .container {
  padding-inline: var(--page-gutter, clamp(1rem, 4vw, 2rem));
}

.nav-open-btn,
.nav-close-btn {
  min-width: 44px;
  min-height: 44px;
}

/* Prevent auto-fit grids from forcing horizontal overflow */
.gallery-parallax-grid,
.contact-modern-grid,
.footer-top .container {
  grid-template-columns: 1fr !important;
}

@media (min-width: 640px) {
  .gallery-parallax-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 900px) {
  .gallery-parallax-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .contact-modern-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .footer-top .container {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

.local-store__note {
  white-space: normal;
  text-align: left;
}

@media (min-width: 480px) {
  .local-store__note {
    text-align: right;
    white-space: nowrap;
  }
}

.local-store__ledger li {
  gap: 0.5rem 1rem;
}

@media (max-width: 479px) {
  .local-store__ledger li {
    grid-template-columns: 1fr;
  }
}

/* Inner page heroes */
@media (max-width: 767px) {
  .hero:not(.hero-slider-root) {
    min-height: 36vh;
    padding-block: 3rem 2.5rem;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(1.85rem, 8vw, 2.6rem);
  }

  .section-padding,
  .home-section,
  .package,
  .gallery,
  .popular,
  .cta,
  .band-cta {
    --section-padding: clamp(3rem, 10vw, 5rem);
  }

  .dest-list {
    gap: 2.75rem;
    margin-top: 2rem;
  }

  .dest-row figure {
    aspect-ratio: 4 / 3;
  }

  .dest-price {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .footer-form {
    display: grid;
    gap: 0.75rem;
  }

  .footer-form .input-field,
  .footer-form .btn {
    width: 100%;
    min-width: 0;
  }

  .footer-bottom-list {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.5rem 1rem;
  }

  .contact-form .input-field,
  .contact-form textarea,
  .contact-form .btn-primary {
    width: 100%;
  }

  .contact-mega-item {
    padding: 2rem 1.25rem !important;
  }
}

/* Tablet refinements */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero:not(.hero-slider-root) {
    min-height: 42vh;
    padding-block: 3.5rem 3rem;
  }

  .feature-rail {
    gap: 1.25rem;
  }

  .dest-row {
    gap: 2rem;
  }
}

/* Kill legacy index-page fixed viewport lock on small screens */
@media (max-width: 1023px) {
  html.index-page,
  html.index-page body,
  .index-page body {
    position: relative !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    height: auto !important;
    min-height: 100% !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .index-page .content img {
    min-width: 0 !important;
    width: 100% !important;
  }

  .header-top {
    padding-block: 10px;
  }

  .logo-img,
  .index-page .logo-img {
    height: 36px;
  }

  .header .navbar {
    height: 100dvh;
    z-index: 400;
  }

  .overlay {
    z-index: 350;
  }

  .navbar-link {
    min-height: 48px;
    display: flex;
    align-items: center;
    font-size: 1rem;
  }
}

/*-----------------------------------*\
 * PHONE / TABLET — real mobile layout
 * Loaded last so it beats leftover desktop rules.
\*-----------------------------------*/

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.nav-open-btn {
  color: #1a1a1a;
}

@media (min-width: 1024px) {
  .navbar-link,
  .header.active .navbar-link,
  .index-page .navbar-link,
  .index-page .header.active .navbar-link {
    color: #1a1a1a !important;
  }

  .navbar-link:is(:hover, :focus) {
    color: var(--forest-green) !important;
    background: transparent !important;
  }
}

@media (max-width: 1023px) {
  html,
  body,
  html.index-page,
  html.index-page body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    position: relative !important;
    height: auto !important;
  }

  .header,
  .index-page .header,
  .header.active {
    position: sticky !important;
    top: 0 !important;
    transform: none !important;
    animation: none !important;
    width: 100% !important;
    z-index: 200 !important;
    background: #fff !important;
    padding-top: 0 !important;
  }

  .header-top,
  .index-page .header-top,
  .header.active .header-top,
  .index-page .header.active .header-top {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    padding-block: 8px !important;
    background: #fff !important;
  }

  .header-top .container,
  .header-bar,
  .index-page .header-top .container,
  .index-page .header-bar {
    display: flex !important;
    grid-template-columns: none !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
  }

  .nav-open-btn,
  .index-page .nav-open-btn {
    display: flex !important;
    color: #1a1a1a !important;
    font-size: 28px !important;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
  }

  .header .navbar,
  .index-page .header .navbar {
    all: unset;
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: auto !important;
    bottom: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    width: min(20rem, 86vw) !important;
    max-width: 86vw !important;
    height: 100dvh !important;
    background: #fff !important;
    transform: translateX(110%) !important;
    visibility: hidden !important;
    pointer-events: none !important;
    z-index: 400 !important;
    overflow-y: auto !important;
    box-shadow: -12px 0 40px rgba(20, 28, 22, 0.18);
  }

  .header .navbar.active,
  .index-page .header .navbar.active {
    transform: translateX(0) !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .navbar-top {
    display: flex !important;
  }

  .overlay {
    display: block !important;
  }

  .navbar-list {
    display: block !important;
    flex-direction: column !important;
  }

  .navbar-list li {
    border-bottom: 1px solid var(--cream-beige) !important;
  }

  .navbar-link,
  .index-page .navbar-link {
    color: var(--forest-green) !important;
    padding: 14px 20px !important;
    font-size: 1.05rem !important;
  }

  /* Home hero overlay is owned by mobile.css (loaded last). */

  .feature-rail,
  .home-split,
  .local-store__shell,
  .dest-row {
    grid-template-columns: 1fr !important;
  }
}

@media (min-width: 640px) and (max-width: 1023px) {
  .hero-split__cta {
    width: fit-content !important;
  }
}
