/* ============================================================
   BHUMIVOX — GLOBAL STYLESHEET
   Fonts : Hanken Grotesk | Inter
   Palette from reference.md
   ============================================================ */

/* ---------- GOOGLE FONTS already linked in HTML ---------- */

/* ==================== TOKENS ====================*/
:root {
  /* Brand colours */
  --clr-white: #FFFFFF;
  --clr-cream-light: #FFF6E7;
  --clr-cream: #FFFAF0;
  --clr-cream-warm: #FFF8E9;
  --clr-linen: #F3EEE2;
  --clr-linen-80: #F3EEE2cc;
  --clr-linen-60: #F3EEE299;
  --clr-gold: #AC8F60;
  --clr-tan: #A67C52;
  --clr-rust: #803425;
  --clr-rust-dark: #904D41;
  --clr-rust-bright: #D2604B;
  --clr-brown: #583300;
  --clr-charcoal: #231F1C;
  --clr-charcoal-2: #2A2622;
  --clr-dark: #2D2D2D;
  --clr-grey: #443F3A;
  --clr-grey-2: #525252;
  --clr-grey-3: #333333;
  --clr-black: #000000;

  /* Typography */
  --font-heading: 'Hanken Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing scale */
  --space-xs: 0.5rem;
  /* 8px  */
  --space-sm: 1rem;
  /* 16px */
  --space-md: 1.5rem;
  /* 24px */
  --space-lg: 2.5rem;
  /* 40px */
  --space-xl: 4rem;
  /* 64px */
  --space-2xl: 6rem;
  /* 96px */

  /* Layout */
  --max-width: 1200px;
  --nav-height: 68px;

  /* Transitions */
  --ease: 0.25s ease;
}

/* ==================== RESET & BASE ====================*/
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--clr-white);
  color: var(--clr-charcoal);
  line-height: 1.65;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
}

main {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

img {
  display: block;
  max-width: 100%;
}

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

ul {
  list-style: none;
}

/* ==================== UTILITY BUTTONS ====================*/
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.65rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color var(--ease), color var(--ease), border-color var(--ease), transform var(--ease);
  border: 1.5px solid transparent;
  white-space: nowrap;
}

/* Filled dark-rust — Enquire Now */
.btn--primary {
  background-color: var(--clr-rust);
  color: var(--clr-white);
  border-color: var(--clr-rust);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background-color: var(--clr-rust-dark);
  border-color: var(--clr-rust-dark);
  transform: translateY(-1px);
}

/* Hero CTA — dark semi-transparent fill, matches Figma */
.btn--hero {
  background-color: rgba(88, 28, 14, 0.78);
  color: var(--clr-white);
  border-color: rgba(255, 255, 255, 0.25);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 0.85rem 2rem;
}

.btn--hero:hover,
.btn--hero:focus-visible {
  background-color: rgba(128, 52, 37, 0.92);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* Ghost / outline on light bg */
.btn--outline-light {
  background-color: transparent;
  color: var(--clr-white);
  border-color: rgba(255, 255, 255, 0.65);
}

.btn--outline-light:hover,
.btn--outline-light:focus-visible {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: var(--clr-white);
  transform: translateY(-1px);
}

/* ==================== NAVBAR ====================*/
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(128, 52, 37, 0.08);
  height: var(--nav-height);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 24px rgba(35, 31, 28, 0.08);
  border-bottom-color: rgba(128, 52, 37, 0.12);
}

.navbar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-md);
  gap: var(--space-md);
}

/* Logo */
.navbar__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.navbar__logo:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.navbar__logo img {
  height: 38px;
  width: auto;
  display: block;
}

/* Nav menu wrapper */
.navbar__menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
  justify-content: flex-end;
}

/* Nav link list */
.navbar__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Individual nav links */
.navbar__link {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #38332E;
  padding: 0.45rem 0.85rem;
  border-radius: 6px;
  transition: color 0.25s ease, background-color 0.25s ease;
  position: relative;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0.85rem;
  right: 0.85rem;
  height: 2.5px;
  background-color: var(--clr-rust);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar__link:hover {
  color: var(--clr-rust);
}

.navbar__link:hover::after {
  transform: scaleX(1);
}

.navbar__link--active {
  font-weight: 700;
  color: var(--clr-rust);
}

.navbar__link--active::after {
  transform: scaleX(1);
}

/* CTA button in navbar */
.navbar__cta {
  flex-shrink: 0;
  background-color: var(--clr-rust);
  color: var(--clr-white);
  border: 1.5px solid var(--clr-rust);
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.55rem 1.25rem;
  border-radius: 50px;
  box-shadow: 0 3px 10px rgba(128, 52, 37, 0.22);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.navbar__cta:hover,
.navbar__cta:focus-visible {
  background-color: var(--clr-brown);
  border-color: var(--clr-brown);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(88, 51, 0, 0.3);
  color: var(--clr-white);
}

/* Hamburger button */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
}

.navbar__hamburger span {
  display: block;
  height: 2.5px;
  width: 100%;
  background-color: var(--clr-charcoal);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

.navbar__hamburger.open span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
  background-color: var(--clr-rust);
}

.navbar__hamburger.open span:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger.open span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
  background-color: var(--clr-rust);
}

/* Responsive Navbar Drawer */
@media (max-width: 960px) {
  .navbar__hamburger {
    display: flex;
  }

  .navbar__menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--nav-height));
    background-color: rgba(255, 250, 240, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 2rem 1.75rem 3rem;
    gap: 1.5rem;
    overflow-y: auto;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, visibility 0.3s ease;
    border-top: 1px solid rgba(128, 52, 37, 0.1);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
  }

  .navbar__menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .navbar__links {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .navbar__link {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.85rem 1rem;
    border-radius: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  }

  .navbar__link::after {
    display: none;
  }

  .navbar__link--active {
    background-color: rgba(128, 52, 37, 0.08);
    color: var(--clr-rust);
  }

  .navbar__cta {
    width: 100%;
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
    margin-top: 0.5rem;
  }
}

/* ==================== HOMEPAGE HERO & STATS SECTION ====================*/
.home-hero {
  position: relative;
  width: 100%;
  min-height: calc(100vh - var(--nav-height));
  margin-top: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('images/home-bg.png');
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  padding: 4.5rem 1.5rem 5rem;
}

.home-hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(246, 241, 233, 0.35) 0%, rgba(246, 241, 233, 0.05) 65%, rgba(246, 241, 233, 0) 100%);
  pointer-events: none;
}

.home-hero__container {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.35rem;
}

.home-hero__eyebrow {
  font-family: var(--font-heading);
  font-size: clamp(0.82rem, 1.2vw, 0.98rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #38312b;
  margin: 0;
}

.home-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4.4vw, 3.85rem);
  font-weight: 700;
  line-height: 1.15;
  color: #803425;
  margin: 0;
  letter-spacing: -0.01em;
}

.home-hero__desc {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.62;
  color: #433c35;
  max-width: 710px;
  margin: 0 auto;
  font-weight: 400;
}

.home-hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  margin-top: 0.5rem;
}

.home-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #803425;
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 0.95rem 2.65rem;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 6px 22px rgba(128, 52, 37, 0.35);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-hero__btn:hover {
  background-color: #63261a;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(128, 52, 37, 0.5);
  color: #ffffff !important;
}

.home-hero__sublink {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 600;
  color: #38312b;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
}

.home-hero__sublink:hover {
  color: #803425;
  text-underline-offset: 6px;
}

/* Home Stats Bar */
.home-stats-bar {
  width: 100%;
  background: #191614;
  color: #fbf8f3;
  padding: 1.35rem var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.home-stats-bar__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  text-align: center;
}

.home-stats-bar__item {
  font-family: var(--font-heading);
  font-size: clamp(0.85rem, 1.1vw, 0.98rem);
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #fdfaf6;
  white-space: nowrap;
}

.home-stats-bar__sep {
  color: #b87b4c;
  font-size: 1.2rem;
  line-height: 1;
  user-select: none;
}

@media (max-width: 960px) {
  .home-hero {
    min-height: 80vh;
    padding: 3.5rem 1.25rem 4rem;
    background-position: 25% center;
  }

  .home-hero__overlay {
    background: rgba(246, 241, 233, 0.78);
  }

  .home-stats-bar__inner {
    gap: 0.85rem 1.5rem;
  }
}

@media (max-width: 640px) {
  .home-hero {
    min-height: auto;
    padding: 3rem 1rem 3.5rem;
    background-position: center center;
  }

  .home-hero__overlay {
    background: rgba(246, 241, 233, 0.88);
    backdrop-filter: blur(2px);
  }

  .home-hero__title {
    font-size: 2rem;
  }

  .home-stats-bar {
    padding: 1.25rem 1rem;
  }

  .home-stats-bar__inner {
    flex-direction: column;
    gap: 0.75rem;
  }

  .home-stats-bar__sep {
    display: none;
  }

  .home-stats-bar__item {
    white-space: normal;
  }
}

/* ==================== SIGNATURE JOURNEYS SECTION ====================*/
.signature-journeys {
  background-color: #FAF6F0;
  padding: 5.5rem var(--space-md) 6rem;
  width: 100%;
}

.signature-journeys__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.signature-journeys__title {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 3.5vw, 2.9rem);
  font-weight: 700;
  color: #803425;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.signature-journeys__subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.98rem, 1.2vw, 1.15rem);
  line-height: 1.55;
  color: #52473f;
  max-width: 760px;
  margin: 0 auto 3.5rem;
}

.signature-journeys__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: left;
}

.signature-card {
  background: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(44, 32, 24, 0.08);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.signature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(44, 32, 24, 0.14);
}

.signature-card__img-wrap {
  width: 100%;
  height: 230px;
  overflow: hidden;
  position: relative;
  background-color: #ede5dc;
}

.signature-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.signature-card:hover .signature-card__img {
  transform: scale(1.05);
}

.signature-card__body {
  padding: 1.75rem 1.6rem 1.85rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.signature-card__route {
  font-family: var(--font-heading);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2e2620;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.signature-card__title {
  font-family: var(--font-heading);
  font-size: 1.28rem;
  font-weight: 600;
  line-height: 1.35;
  color: #803425;
  margin: 0 0 1.25rem;
  min-height: 3.6rem;
}

.signature-card__meta {
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-style: italic;
  color: #2c2520;
  margin-bottom: 0.85rem;
}

.signature-card__divider {
  width: 38px;
  height: 1px;
  background-color: rgba(128, 52, 37, 0.35);
  margin-bottom: 0.95rem;
}

.signature-card__desc {
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.55;
  color: #4e443c;
  margin: 0 0 1.5rem;
  flex: 1;
}

.signature-card__link {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: #28211b;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: auto;
}

.signature-card__link:hover {
  color: #803425;
  text-underline-offset: 6px;
}

.signature-journeys__footer-cta {
  margin-top: 3.5rem;
  text-align: center;
}

.signature-journeys__all-link {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: #241e1a;
  text-decoration: underline;
  text-underline-offset: 5px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.signature-journeys__all-link:hover {
  color: #803425;
  text-underline-offset: 7px;
}

@media (max-width: 1024px) {
  .signature-journeys__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }

  .signature-card:last-child {
    grid-column: 1 / -1;
    max-width: 580px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 700px) {
  .signature-journeys {
    padding: 3.5rem var(--space-md) 4.5rem;
  }

  .signature-journeys__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .signature-card:last-child {
    max-width: 100%;
  }

  .signature-card__title {
    min-height: auto;
    margin-bottom: 1rem;
  }
}

/* ==================== THE BHUMIVOX DIFFERENCE SECTION ====================*/
.bhumivox-difference {
  background-color: #FFFFFF;
  padding: 6rem var(--space-md) 6.5rem;
  width: 100%;
}

.difference__inner {
  max-width: 1220px;
  margin: 0 auto;
  text-align: center;
}

.difference__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.8vw, 2.9rem);
  font-weight: 700;
  color: #803425;
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
}

.difference__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.6;
  color: #4a423a;
  max-width: 720px;
  margin: 0 auto 4.5rem;
}

.difference__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2.5rem;
  text-align: left;
  align-items: flex-start;
}

.difference-item {
  display: flex;
  gap: 1.35rem;
  align-items: flex-start;
}

.difference-item__icon-wrap {
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.difference-item:hover .difference-item__icon-wrap {
  transform: scale(1.06) rotate(3deg);
}

.difference-item__icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.difference-item__content {
  flex: 1;
}

.difference-item__num-wrap {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.35rem;
}

.difference-item__num {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #b87b4c;
}

.difference-item__line {
  display: inline-block;
  height: 1px;
  width: 48px;
  background-color: #d6b89c;
}

.difference-item__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #803425;
  margin: 0.35rem 0 0.85rem;
  line-height: 1.3;
  min-height: 3.2rem;
}

.difference-item__desc {
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.62;
  color: #4a423a;
  margin: 0;
}

.difference__cta-wrap {
  margin-top: 4.5rem;
  text-align: center;
}

.difference__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #803425;
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 0.95rem 2.75rem;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(128, 52, 37, 0.28);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.difference__btn:hover {
  background-color: #63261a;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(128, 52, 37, 0.42);
  color: #ffffff !important;
}

@media (max-width: 1024px) {
  .difference__grid {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin: 0 auto;
    gap: 2.75rem;
  }

  .difference-item__title {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .bhumivox-difference {
    padding: 4rem var(--space-md) 4.5rem;
  }

  .difference__subtitle {
    margin-bottom: 3rem;
  }

  .difference-item {
    gap: 1.1rem;
  }

  .difference-item__icon-wrap {
    width: 72px;
    height: 72px;
  }

  .difference__cta-wrap {
    margin-top: 3.5rem;
  }

  .difference__btn {
    width: 100%;
    max-width: 340px;
  }
}

/* ==================== HOME FOUNDER / LEAD RESEARCHER SECTION ==================== */
.home-founder {
  background-color: #FAF6EE;
  padding: 5.5rem var(--space-md) 6rem;
  width: 100%;
}

.home-founder__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.18fr 0.92fr;
  gap: 3.5rem 4rem;
  align-items: center;
}

.home-founder__content {
  display: flex;
  flex-direction: column;
}

.home-founder__eyebrow {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2b2520;
  margin-bottom: 0.75rem;
}

.home-founder__name {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 4.2vw, 3.7rem);
  font-weight: 700;
  color: #63391d;
  line-height: 1.1;
  margin: 0 0 0.4rem;
  letter-spacing: -0.01em;
}

.home-founder__subtitle-role {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 400;
  color: #4a423a;
  line-height: 1.25;
  margin: 0;
}

.home-founder__subtitle-org {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  color: #554c44;
  line-height: 1.3;
  margin: 0.15rem 0 1.25rem;
}

.home-founder__divider {
  width: 85px;
  height: 1.5px;
  background-color: #d1b499;
  border: none;
  margin: 0 0 1.35rem;
}

.home-founder__lead-role {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: #26201b;
  margin-bottom: 1.2rem;
  line-height: 1.4;
}

.home-founder__lead-role strong {
  font-weight: 700;
  color: #1a1613;
}

.home-founder__bio-p {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.68;
  color: #443c35;
  margin-bottom: 1rem;
}

.home-founder__bio-p:last-of-type {
  margin-bottom: 1.5rem;
}

.home-founder__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #7b4218;
  text-decoration: none;
  transition: all 0.2s ease;
  width: fit-content;
}

.home-founder__link:hover {
  color: #542b0d;
  transform: translateX(4px);
}

.home-founder__image-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
  max-width: 480px;
  margin: 0 auto;
}

.home-founder__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ==================== BEYOND OUR PUBLISHED JOURNEYS SECTION ==================== */
.home-beyond {
  background-color: #FFFFFF;
  padding: 5.5rem var(--space-md) 6.5rem;
  width: 100%;
}

.home-beyond__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.home-beyond__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.8vw, 3rem);
  font-weight: 700;
  color: #803425;
  text-align: center;
  margin-bottom: 3.75rem;
  letter-spacing: -0.01em;
}

.home-beyond__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: 3.5rem 4rem;
  align-items: center;
}

.home-beyond__image-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.12);
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.home-beyond__image {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.home-beyond__content {
  display: flex;
  flex-direction: column;
}

.home-beyond__para {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  color: #383029;
  margin-bottom: 1.25rem;
}

.home-beyond__cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.25rem;
  max-width: 320px;
}

.home-beyond__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #803425;
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.02rem;
  font-weight: 500;
  padding: 0.9rem 1.75rem;
  border-radius: 4px;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 4px 16px rgba(128, 52, 37, 0.25);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-beyond__btn:hover {
  background-color: #63261a;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(128, 52, 37, 0.38);
  color: #ffffff !important;
}

/* Breakpoints for both sections */
@media (max-width: 1024px) {
  .home-founder__inner,
  .home-beyond__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .home-founder__image-wrap,
  .home-beyond__image-wrap {
    max-width: 440px;
  }

  .home-beyond__title {
    margin-bottom: 2.75rem;
  }
}

@media (max-width: 640px) {
  .home-founder,
  .home-beyond {
    padding: 4rem var(--space-md) 4.5rem;
  }

  .home-beyond__cta-group {
    max-width: 100%;
  }

  .home-beyond__btn {
    width: 100%;
  }
}

/* ==================== HOME RESEARCH / HISTORIKA SECTION ==================== */
.home-research {
  background-color: #FAF6EE;
  padding: 5.5rem var(--space-md) 6rem;
  width: 100%;
}

.home-research__inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.home-research__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: #803425;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.home-research__para {
  font-family: var(--font-body);
  font-size: 0.96rem;
  line-height: 1.7;
  color: #3d352e;
  margin-bottom: 1.15rem;
}

.home-research__para--highlight {
  font-weight: 500;
  color: #241d18;
  margin: 1.35rem 0;
}

.home-research__cta-wrap {
  margin-top: 2.25rem;
}

.home-research__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #803425;
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 0.92rem 2.4rem;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(128, 52, 37, 0.25);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-research__btn:hover {
  background-color: #63261a;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(128, 52, 37, 0.38);
  color: #ffffff !important;
}

/* ==================== HOME DOORWAY CTA CARD BANNER ==================== */
.home-doorway-cta {
  background-color: #FFFFFF;
  padding: 4.5rem var(--space-md) 6.5rem;
  width: 100%;
}

.doorway-card {
  background: linear-gradient(180deg, #3D1C16 0%, #301610 100%);
  border-radius: 28px;
  padding: 4.5rem 2.5rem;
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 20px 50px rgba(45, 20, 15, 0.24);
  color: #ffffff;
}

.doorway-card__quote {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  line-height: 1.65;
  color: #F0E6DE;
  max-width: 720px;
  margin: 0 auto 2rem;
  font-weight: 400;
}

.doorway-card__eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #D7BFAD;
  margin-bottom: 1.75rem;
}

.doorway-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 2.7vw, 2.35rem);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1.85rem;
  letter-spacing: -0.01em;
}

.doorway-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #8C473A;
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.95rem 2.4rem;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  margin-bottom: 1.85rem;
}

.doorway-card__btn:hover {
  background-color: #9E5345;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
  color: #ffffff !important;
}

.doorway-card__sublinks {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.98rem;
  color: #D4BBA5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.doorway-card__sublink {
  color: #D4BBA5;
  text-decoration: none;
  transition: color 0.2s ease;
}

.doorway-card__sublink:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

.doorway-card__sep {
  color: #9E7D68;
}

@media (max-width: 640px) {
  .home-research {
    padding: 4rem var(--space-md) 4.5rem;
  }

  .home-research__btn {
    width: 100%;
    max-width: 340px;
  }

  .home-doorway-cta {
    padding: 3.5rem var(--space-md) 4.5rem;
  }

  .doorway-card {
    padding: 3rem 1.5rem;
    border-radius: 20px;
  }

  .doorway-card__btn {
    width: 100%;
    max-width: 320px;
  }
}

/* ==================== HERO SECTION ====================*/
.hero {
  position: relative;
  width: 100%;
  margin-top: var(--nav-height);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
}

/* Background image wrapper */
.hero__bg {
  position: relative;
  width: 100%;
}

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

/* Subtle overlay */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0) 60%,
      rgba(20, 10, 5, 0.4) 100%);
  pointer-events: none;
}

/* Hero text content */
.hero__content {
  position: absolute;
  bottom: 6%;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xs) var(--space-md);
  color: var(--clr-white);
  z-index: 2;
}

/* CTA button */
.hero__cta {
  /* sizing handled by btn--hero */
}

/* ==================== ABOUT SECTION ====================*/
.about-section {
  background-color: var(--clr-cream-light);
  padding: 1.5rem var(--space-md);
}

.about-section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

/* Section heading */
.about-section__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: #904D41;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
}

/* Body text */
.about-section__body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: var(--space-sm);
}

.about-section__para {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--clr-charcoal);
}

/* Horizontal rule divider */
.about-section__divider {
  width: 80px;
  height: 1.5px;
  background-color: var(--clr-charcoal);
  margin: 0 auto var(--space-sm);
  opacity: 0.35;
}

/* Italic taglines */
.about-section__taglines {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.about-section__tagline-text {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--clr-rust);
  line-height: 1.6;
}

/* ==================== HOW BHUMIVOX BEGAN SECTION ====================*/

.began-section {
  background-color: var(--clr-white);
  padding: 1.5rem var(--space-md);
}

.began-section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: var(--space-xl);
  align-items: center;
}

/* Image */
.began-section__image-wrap {
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.began-section__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

/* Content side */
.began-section__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

/* Pill title */
.began-section__title {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-white);
  background-color: var(--clr-brown);
  padding: 0.55rem 1.4rem;
  border-radius: 6px;
  margin-bottom: var(--space-sm);
  letter-spacing: 0.01em;
  width: fit-content;
}

/* Body paragraphs */
.began-section__para {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--clr-charcoal);
}

/* Italic tagline */
.began-section__tagline {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  font-style: italic;
  color: var(--clr-rust);
  margin-top: var(--space-xs);
  line-height: 1.6;
}

/* ==================== STORY SECTION ====================*/

.story-section {
  background-color: var(--clr-white);
  padding: 1.5rem var(--space-md);
}

.story-section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

/* Quoted heading */
.story-section__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: #904D41;
  text-align: center;
  letter-spacing: -0.01em;
}

/* Image */
.story-section__image-wrap {
  width: 100%;
  max-width: 480px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.13);
}

.story-section__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Text body */
.story-section__body {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  text-align: center;
  width: 100%;
}

/* Base paragraph */
.story-section__para {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--clr-charcoal);
}

/* Intro — italic */
.story-section__para--intro {
  font-style: italic;
  color: var(--clr-grey);
  font-weight: 500;
}

/* Bold emphasis line */
.story-section__para--bold {
  font-weight: 700;
  color: var(--clr-charcoal);
  font-size: 1.2rem;
}

/* Final rust tagline */
.story-section__para--tagline {
  font-weight: 700;
  font-style: italic;
  color: var(--clr-rust);
  font-size: 1.2rem;
  margin-top: var(--space-xs);
}

/* ==================== TWO ORGANISATIONS SECTION ====================*/

.two-orgs-section {
  background-color: var(--clr-cream-light);
  padding: 1.5rem var(--space-md);
}

/* Rounded card with bg image */
.two-orgs-section__card {
  max-width: var(--max-width);
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  background-image: url('images/bg.png');
  background-size: cover;
  background-position: center;
  padding: var(--space-xl) var(--space-xl);
}

.two-orgs-section__inner {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

/* Title */
.two-orgs-section__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--clr-white);
  text-align: center;
  line-height: 1.2;
  margin-bottom: var(--space-xs);
  letter-spacing: -0.01em;
}

/* Body */
.two-orgs-section__body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.two-orgs-section__para {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--clr-white);
}

.two-orgs-section__para--bold {
  font-weight: 700;
  margin-top: var(--space-xs);
}

/* Ghost white CTA button */
.btn--ghost-white {
  background-color: transparent;
  color: var(--clr-white);
  border: 1.5px solid var(--clr-white);
  font-size: 0.95rem;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  transition: background-color var(--ease), color var(--ease), transform var(--ease);
}

.btn--ghost-white:hover,
.btn--ghost-white:focus-visible {
  background-color: var(--clr-white);
  color: var(--clr-brown);
  transform: translateY(-1px);
}

.two-orgs-section__cta-wrap {
  display: flex;
  justify-content: center;
  padding-top: var(--space-sm);
}

/* ==================== JOURNEY DIFFERENT SECTION ====================*/

.journey-diff-section {
  background-color: var(--clr-white);
  padding: 1.5rem var(--space-md);
}

.journey-diff-section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

/* Section heading */
.journey-diff-section__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: #525252;
  letter-spacing: -0.01em;
  text-align: center;
}

/* 2×2 grid */
.journey-diff-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  width: 100%;
}

/* Individual card */
.journey-diff-card {
  background-color: var(--clr-brown);
  border-radius: 12px;
  padding: var(--space-md) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Card pill title */
.journey-diff-card__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--clr-white);
  background-color: rgba(255, 255, 255, 0.12);
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 6px;
  width: fit-content;
  line-height: 1.4;
}

/* Card body text */
.journey-diff-card__desc {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

/* Bottom tagline */
.journey-diff-section__tagline {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  font-style: italic;
  color: var(--clr-charcoal);
  text-align: center;
}

/* ==================== OUTER / INNER JOURNEY SECTION ====================*/

.outer-journey-section {
  background-color: var(--clr-white);
  padding: 1.5rem var(--space-md);
}

.outer-journey-section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

/* Section title */
.outer-journey-section__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: #525252;
  text-align: center;
  letter-spacing: -0.01em;
}

/* Two-column row */
.outer-journey-section__cols {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: var(--space-xl);
  align-items: stretch;
}

/* Image */
.outer-journey-section__image-wrap {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
  height: 100%;
  min-height: 400px;
}

.outer-journey-section__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Text content */
.outer-journey-section__content {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

/* Body paragraphs */
.outer-journey-para {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--clr-charcoal);
}

.outer-journey-para strong {
  font-weight: 700;
  color: var(--clr-charcoal);
}

/* Rasa block */
.outer-journey-rasa {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.75rem 0;
}

.outer-journey-rasa__item {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--clr-charcoal);
}

.outer-journey-rasa__item strong {
  font-weight: 700;
}

/* Footer centred block */
.outer-journey-section__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.outer-journey-footer__bold {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-charcoal);
  line-height: 1.6;
}

.outer-journey-footer__para {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--clr-charcoal);
}

.outer-journey-footer__italic {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  font-style: italic;
  color: var(--clr-charcoal);
  line-height: 1.6;
}

/* ==================== WHO BHUMIVOX IS FOR ====================*/

.who-section {
  background-color: var(--clr-white);
  padding: 1.5rem var(--space-md);
}

.who-section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.who-section__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: #525252;
  text-align: center;
  letter-spacing: -0.01em;
}

/* 3-column grid */
.who-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

/* Card */
.who-card {
  background-color: var(--clr-cream-light);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding-bottom: var(--space-md);
}

.who-card__image-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 12px;
}

.who-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.who-card:hover .who-card__image {
  transform: scale(1.04);
}

.who-card__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-charcoal);
  padding: 0 var(--space-sm);
  line-height: 1.4;
}

.who-card__desc {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--clr-grey);
  padding: 0 var(--space-sm);
  font-style: italic;
}

/* ==================== SEEING THE BEST OF INDIA ====================*/

.best-india-section {
  background-color: var(--clr-white);
  padding: 1.5rem var(--space-md);
}

.best-india-section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.best-india-section__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: #525252;
  text-align: center;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

/* ---- Carousel ---- */
.best-carousel {
  overflow: hidden;
  width: 100%;
}

.best-carousel__track {
  display: flex;
  gap: var(--space-md);
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Each card occupies exactly 1/3 of the carousel width minus gaps */
.best-india-card {
  flex: 0 0 calc((100% - 2 * var(--space-md)) / 3);
  min-width: 0;
  border: 1.5px solid var(--clr-linen);
  border-radius: 12px;
  padding: 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background-color: var(--clr-cream-light);
  text-align: center;
  box-sizing: border-box;
}

.best-india-card__title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--clr-charcoal);
  line-height: 1.4;
}

.best-india-card__desc {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--clr-grey-2);
}

/* All cards same cream colour — no dark override */

/* Dot indicators */
.best-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.best-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--clr-linen);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.best-carousel__dot.active {
  background-color: var(--clr-rust);
  transform: scale(1.3);
}

/* ==================== WHAT WE BELIEVE ====================*/

.beliefs-section {
  background-color: var(--clr-white);
  padding: 1.5rem var(--space-md);
}

.beliefs-section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.beliefs-section__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: #525252;
  text-align: center;
  letter-spacing: -0.01em;
}

.beliefs-section__list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: center;
  max-width: 780px;
}

.beliefs-section__item {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--clr-charcoal);
}

/* ==================== MISSION & VISION ====================*/

.mission-section {
  background-color: var(--clr-white);
  padding: 1.5rem var(--space-md) 2.5rem;
}

.mission-section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

/* Card */
.mission-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Large italic heading on cream blob */
.mission-card__title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 400;
  font-style: italic;
  color: var(--clr-charcoal);
  line-height: 1.1;
  /* Cream blob behind heading */
  display: inline-block;
  background-color: var(--clr-cream-light);
  padding: 0.4rem 1rem 0.5rem 0.75rem;
  border-radius: 50% 40% 50% 40% / 40% 50% 40% 50%;
  width: fit-content;
}

.mission-card__desc {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--clr-charcoal);
}

/* ==================== FOUNDER / CHANDRU RAMESH ====================*/

.founder-section {
  background-color: var(--clr-cream-light);
  padding: 1.5rem var(--space-md);
}

.founder-section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-xl);
  align-items: center;
}

.founder-section__content {
  display: flex;
  flex-direction: column;
}

/* Eyebrow credentials */
.founder-section__eyebrow {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  color: #525252;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  line-height: 1.4;
}

/* Name */
.founder-section__name {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--clr-brown);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

/* Designation */
.founder-section__designation {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-bottom: 0.75rem;
}

.founder-section__role {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 400;
  color: #525252;
  line-height: 1.2;
}

.founder-section__org {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 400;
  color: #525252;
  line-height: 1.3;
}

/* Thin divider */
.founder-section__divider {
  border: none;
  border-top: 1.5px solid rgba(0, 0, 0, 0.12);
  width: 90px;
  margin: 0.75rem 0 1rem 0;
}

/* Bio paragraphs */
.founder-section__bio {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.founder-section__bio p {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--clr-charcoal);
}

/* CTA Profile link */
.founder-section__link {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-brown);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: transform var(--ease), color var(--ease);
}

.founder-section__link:hover {
  transform: translateX(4px);
  color: var(--clr-rust);
}

/* Image wrapper */
.founder-section__image-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.14);
}

.founder-section__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ==================== THE JOURNEY HAS JUST BEGUN ====================*/

.begun-final-section {
  background-color: var(--clr-white);
  padding: 1.5rem var(--space-md) 2.5rem;
}

.begun-final-section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.begun-final-section__image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.begun-final-section__image {
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
  object-fit: contain;
}

.begun-final-section__content {
  display: flex;
  flex-direction: column;
}

.begun-final-section__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: #525252;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.begun-final-section__body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.begun-final-section__body p {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--clr-charcoal);
}

.begun-final-section__poem {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.5rem;
}

.begun-final-section__poem p {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #525252;
  line-height: 1.45;
}

.begun-final-section__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.begun-final-section__btn-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.begun-final-section__btn-row--center {
  justify-content: flex-start;
}

/* Brown Pill Button */
.btn--brown-pill {
  background-color: var(--clr-brown);
  color: var(--clr-white);
  border: 1.5px solid var(--clr-brown);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.65rem 1.4rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  transition: background-color var(--ease), transform var(--ease), box-shadow var(--ease);
}

.btn--brown-pill:hover,
.btn--brown-pill:focus-visible {
  background-color: var(--clr-rust);
  border-color: var(--clr-rust);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(88, 51, 0, 0.2);
}

/* ==================== FOOTER OVERHAUL ==================== */
.footer {
  background: linear-gradient(180deg, #241E1A 0%, #191512 100%);
  color: #E2DBD2;
  padding: 4.5rem var(--space-md) 2rem;
  border-top: 3px solid #803425;
  position: relative;
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.1fr 1.1fr 1.3fr;
  gap: 2.25rem;
}

/* Footer Column Styling */
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.footer__col-title {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #EAD8BE;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer__col-title::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: #A85A42;
  border-radius: 1px;
}

/* Col 1: Brand */
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__logo-link {
  display: inline-block;
  width: fit-content;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.footer__logo-link:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.footer__logo {
  height: 42px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.footer__brand-tagline {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-style: italic;
  line-height: 1.55;
  color: #C2B8AA;
}

.footer__company-info {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  line-height: 1.65;
  color: #A99E91;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__company-name {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.9rem;
}

.footer__reg-text {
  font-size: 0.78rem;
  color: #8E8377;
}

/* Footer Link Lists */
.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0;
  margin: 0;
}

.footer__link {
  font-family: var(--font-heading);
  font-size: 0.86rem;
  color: #C2B8AA;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  position: relative;
  width: fit-content;
}

.footer__link:hover,
.footer__link:focus-visible {
  color: #FFFFFF;
  transform: translateX(4px);
  text-decoration: none;
}

.footer__link--active {
  color: #E29676 !important;
  font-weight: 700;
}

.footer__link--active::before {
  content: '▸';
  color: #E29676;
  font-size: 0.85rem;
}

/* Col 5: Contact & Reach */
.footer__contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  line-height: 1.5;
  color: #C2B8AA;
}

.footer__contact-icon {
  color: #D8C4A0;
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.footer__contact-link {
  color: #C2B8AA;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__contact-link:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

/* Social icons pill group */
.footer__socials-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__social-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #A99E91;
  text-transform: uppercase;
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.footer__social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E2DBD2;
  text-decoration: none;
  transition: all 0.25s ease;
}

.footer__social-btn:hover {
  background-color: #803425;
  border-color: #A85A42;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(128, 52, 37, 0.35);
}

.footer__social-btn svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

/* Bottom Bar */
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer__tagline {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #D8C4A0;
  text-transform: uppercase;
}

.footer__copyright {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: #8E8377;
}

.footer__bottom-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer__bottom-link {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  color: #A99E91;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__bottom-link:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

.footer__bottom-sep {
  color: #554C42;
  font-size: 0.75rem;
}

/* Footer Responsive Breakpoints */
@media (max-width: 1100px) {
  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 3.5rem var(--space-md) 2rem;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer__col--brand {
    grid-column: 1 / -1;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .footer__bottom-links {
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__col {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 1.5rem;
  }

  .footer__col:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

/* ==================== POLICY / LEGAL PAGES ====================*/

.policy-page {
  background-color: var(--clr-white);
  padding: calc(var(--nav-height) + 2rem) var(--space-md) var(--space-2xl);
}

.policy-page__container {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Breadcrumbs */
.policy-breadcrumbs {
  margin-bottom: -0.5rem;
}

.policy-breadcrumbs__link {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--clr-rust-dark);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: transform var(--ease), color var(--ease);
}

.policy-breadcrumbs__link:hover {
  transform: translateX(-4px);
  color: var(--clr-brown);
}

/* Header */
.policy-header {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  border-bottom: 1.5px solid var(--clr-linen);
  padding-bottom: 1.5rem;
}

.policy-header__badge {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-rust-dark);
  background-color: var(--clr-cream-light);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  width: fit-content;
}

.policy-header__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #525252;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.policy-header__meta {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  color: var(--clr-grey);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.policy-header__divider {
  color: var(--clr-gold);
}

/* Callout notice */
.policy-callout {
  background-color: var(--clr-cream-light);
  border-left: 4px solid var(--clr-gold);
  border-radius: 0 8px 8px 0;
  padding: 1rem 1.25rem;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--clr-charcoal);
}

.policy-callout--warning {
  border-left-color: var(--clr-rust);
  background-color: #fff4f1;
}

/* Body & Sections */
.policy-body {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.policy-section {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.policy-section__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: #904D41;
  letter-spacing: -0.01em;
  padding-bottom: 0.35rem;
  border-bottom: 1px dashed var(--clr-linen);
}

.policy-section__subtitle {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: #525252;
  margin-top: 0.4rem;
}

.policy-section p {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--clr-charcoal);
}

.policy-link {
  color: var(--clr-rust-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--ease);
  word-break: break-all;
}

.policy-link:hover {
  color: var(--clr-brown);
}

.policy-list {
  list-style: disc;
  padding-left: 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.policy-list li {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--clr-charcoal);
}

.policy-text--muted {
  font-size: 0.9rem !important;
  color: var(--clr-grey) !important;
  font-style: italic;
}

/* Tables */
.policy-table-wrapper {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--clr-linen);
  border-radius: 10px;
  background-color: var(--clr-white);
  margin: 0.5rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 540px;
}

.policy-table th {
  background-color: var(--clr-cream-light);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: #525252;
  padding: 0.85rem 1rem;
  border-bottom: 1.5px solid var(--clr-linen);
  letter-spacing: 0.02em;
}

.policy-table td {
  padding: 0.85rem 1rem;
  border-top: 1px solid var(--clr-linen);
  font-family: var(--font-heading);
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--clr-charcoal);
  vertical-align: top;
}

.policy-table tr:hover td {
  background-color: #fffdfa;
}

.policy-table__row--placeholder td {
  color: var(--clr-grey);
}

/* Badges inside tables */
.policy-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  white-space: nowrap;
}

.policy-badge--neutral {
  background-color: var(--clr-linen);
  color: var(--clr-grey);
}

.policy-badge--accent {
  background-color: var(--clr-cream-light);
  color: var(--clr-rust-dark);
  border: 1px solid rgba(144, 77, 65, 0.25);
}

/* Footer note */
.policy-footer-note {
  border-top: 1px solid var(--clr-linen);
  padding-top: 1.25rem;
  margin-top: 1rem;
}

.policy-footer-note p {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  color: var(--clr-grey);
}

/* Policy Form & Quick Action */
.policy-header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.btn--policy-cta {
  background-color: #803425;
  color: #ffffff;
  padding: 0.75rem 1.6rem;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--ease);
  box-shadow: 0 4px 12px rgba(128, 52, 37, 0.25);
  text-decoration: none;
}

.btn--policy-cta:hover {
  background-color: #5c2317;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(128, 52, 37, 0.35);
  color: #ffffff;
}

.policy-support-form-card {
  background-color: #ffffff;
  border: 1.5px solid var(--clr-linen);
  border-radius: 12px;
  padding: 2.25rem 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  margin: 1.5rem 0 2.5rem;
}

.policy-support-form-card__header {
  border-bottom: 1.5px solid var(--clr-linen);
  padding-bottom: 1.25rem;
  margin-bottom: 1.75rem;
}

.policy-support-form-card__title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: #904D41;
  margin-bottom: 0.35rem;
}

.policy-support-form-card__subtitle {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  color: var(--clr-charcoal);
  line-height: 1.5;
}

.policy-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 1.5rem;
}

.policy-form-group--full {
  grid-column: span 2;
}

.policy-form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: #333333;
  margin-bottom: 0.4rem;
}

.policy-form-label .required {
  color: #c93b2b;
}

.policy-form-input,
.policy-form-select,
.policy-form-textarea {
  width: 100%;
  padding: 0.75rem 0.95rem;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  color: var(--clr-charcoal);
  background-color: #faf8f5;
  border: 1px solid #dfd7cc;
  border-radius: 6px;
  transition: border-color var(--ease), box-shadow var(--ease);
}

.policy-form-input:focus,
.policy-form-select:focus,
.policy-form-textarea:focus {
  outline: none;
  border-color: #904D41;
  box-shadow: 0 0 0 3px rgba(144, 77, 65, 0.15);
  background-color: #ffffff;
}

.policy-form-textarea {
  resize: vertical;
  min-height: 95px;
}

.policy-form-hint {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: var(--clr-grey);
  margin-top: 0.25rem;
}

.policy-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--clr-charcoal);
  cursor: pointer;
}

.policy-checkbox-label input[type="checkbox"] {
  margin-top: 0.2rem;
  accent-color: #904D41;
  width: 16px;
  height: 16px;
}

.policy-form-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  margin-top: 1.5rem;
}

.policy-receipt-modal {
  display: none;
  background-color: #f6fbf6;
  border: 1.5px solid #48bb78;
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 1.5rem;
  font-family: var(--font-heading);
}

.policy-receipt-modal.active {
  display: block;
}

.policy-receipt-modal__title {
  color: #276749;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.policy-receipt-modal__details {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #2d3748;
}

.policy-quick-toc {
  background-color: #fdfbf7;
  border: 1px solid var(--clr-linen);
  border-radius: 8px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.policy-quick-toc summary {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #904D41;
  cursor: pointer;
  user-select: none;
}

.policy-quick-toc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.5rem 1rem;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--clr-linen);
}

.policy-quick-toc-link {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--clr-charcoal);
  text-decoration: none;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color var(--ease);
}

.policy-quick-toc-link:hover {
  color: #904D41;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .policy-form-grid {
    grid-template-columns: 1fr;
  }
  .policy-form-group--full {
    grid-column: span 1;
  }
  .policy-support-form-card {
    padding: 1.5rem 1.25rem;
  }
  .policy-header__actions {
    width: 100%;
  }
  .btn--policy-cta {
    width: 100%;
    justify-content: center;
  }
}

/* ==================== CONTACT PAGE ====================*/

.contact-hero {
  position: relative;
  width: 100%;
  margin-top: var(--nav-height);
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: url('images/contact-bg.png');
  background-size: cover;
  background-position: center;
}

.contact-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(25, 18, 12, 0.72),
      rgba(25, 18, 12, 0.78));
  z-index: 1;
}

.contact-hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  color: var(--clr-white);
  padding: 3.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.contact-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.contact-hero__subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-style: italic;
  font-weight: 400;
  color: #f3eee2;
  line-height: 1.4;
}

.contact-hero__desc {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  max-width: 680px;
}

.contact-hero__note {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  max-width: 600px;
}

.contact-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

/* White Pill Button */
.btn--white-pill {
  background-color: var(--clr-white);
  color: var(--clr-brown);
  border: 1.5px solid var(--clr-white);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.65rem 1.4rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  transition: background-color var(--ease), color var(--ease), border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}

.btn--white-pill:hover,
.btn--white-pill:focus-visible {
  background-color: var(--clr-cream-light);
  border-color: var(--clr-cream-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* --- Contact Help Grid Section --- */
.contact-help-section {
  background-color: var(--clr-white);
  padding: 3.5rem var(--space-md) 4.5rem;
}

.contact-help-section__inner {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.25rem;
}

.contact-help-section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: #803425;
  text-align: center;
  letter-spacing: -0.01em;
}

.contact-help-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  width: 100%;
}

.contact-card {
  background-color: var(--clr-white);
  border: 1.5px solid #904d41;
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  box-shadow: 3px 3px 0px rgba(144, 77, 65, 0.25);
  box-sizing: border-box;
}

.contact-card:hover,
.contact-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 5px 6px 16px rgba(144, 77, 65, 0.2);
  border-color: var(--clr-brown);
}

.contact-card--full {
  grid-column: 1 / -1;
  max-width: 540px;
  width: 100%;
  margin: 0 auto;
}

.contact-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #803425;
  line-height: 1.35;
}

.contact-card__desc {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--clr-grey);
}

.contact-card__link {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: #803425;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.35rem;
  transition: color var(--ease), transform var(--ease);
}

.contact-card:hover .contact-card__link {
  color: var(--clr-brown);
  transform: translateX(3px);
}

/* --- Contact Form Section --- */
.contact-form-section {
  background-color: #fff6e7;
  padding: 3.5rem var(--space-md) 4.5rem;
}

.contact-form-section__inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  text-align: center;
}

.contact-form-section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.35rem);
  font-weight: 700;
  color: #803425;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.contact-form-section__subtitle {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 400;
  color: #525252;
  line-height: 1.6;
  max-width: 580px;
}

.contact-form-card {
  background-color: var(--clr-white);
  border: 1.5px solid #c4a482;
  border-radius: 24px;
  padding: 2.5rem 2.75rem;
  width: 100%;
  box-shadow: 4px 6px 20px rgba(88, 51, 0, 0.08);
  box-sizing: border-box;
  text-align: left;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  width: 100%;
}

.contact-form__group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  width: 100%;
}

.contact-form__group--full {
  grid-column: 1 / -1;
}

.contact-form__label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: #525252;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.contact-form__input,
.contact-form__select,
.contact-form__textarea {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  color: #231f1c;
  background-color: #f9f4eb;
  border: 1px solid #d6c8b4;
  border-radius: 8px;
  padding: 0.65rem 0.9rem;
  width: 100%;
  box-sizing: border-box;
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease), background-color var(--ease);
}

.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
  border-color: #803425;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(128, 52, 37, 0.12);
}

.contact-form__textarea {
  min-height: 110px;
  resize: vertical;
}

.contact-form__radio-group {
  display: flex;
  gap: 0.75rem;
  width: 100%;
}

.contact-form__radio-pill {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #f9f4eb;
  border: 1px solid #d6c8b4;
  border-radius: 50px;
  padding: 0.55rem 1rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  color: #443f3a;
  cursor: pointer;
  transition: all var(--ease);
}

.contact-form__radio-pill input[type="radio"] {
  accent-color: #803425;
  margin: 0;
  cursor: pointer;
}

.contact-form__radio-pill:has(input[type="radio"]:checked) {
  background-color: #e8d5b5;
  border-color: #ac8f60;
  font-weight: 600;
  color: #583300;
}

.contact-form__checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: 0.25rem;
}

.contact-form__checkbox-wrap input[type="checkbox"] {
  accent-color: #803425;
  margin-top: 0.2rem;
  cursor: pointer;
}

.contact-form__checkbox-label {
  font-family: var(--font-heading);
  font-size: 0.84rem;
  color: #525252;
  line-height: 1.5;
  cursor: pointer;
}

.contact-form__privacy-note {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: #666666;
  line-height: 1.5;
  margin-top: -0.35rem;
}

.contact-form__privacy-note a {
  color: #803425;
  text-decoration: underline;
  font-weight: 600;
}

.contact-form__submit-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.contact-form__submit-btn {
  background-color: #803425;
  color: #ffffff;
  border: none;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.75rem 2.25rem;
  border-radius: 50px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: background-color var(--ease), transform var(--ease), box-shadow var(--ease);
}

.contact-form__submit-btn:hover,
.contact-form__submit-btn:focus-visible {
  background-color: #583300;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(88, 51, 0, 0.2);
}

.contact-form__disclaimer {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-style: italic;
  color: #666666;
  text-align: center;
}

/* --- Need Another Route Section --- */
.contact-routes-section {
  background-color: var(--clr-white);
  padding: 3.5rem var(--space-md) 4rem;
}

.contact-routes__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.25rem;
}

.contact-routes__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.35rem);
  font-weight: 700;
  color: #803425;
  text-align: center;
  letter-spacing: -0.01em;
}

.contact-routes__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  width: 100%;
}

.route-card {
  border-radius: 16px;
  padding: 1.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
  box-sizing: border-box;
  text-decoration: none;
  justify-content: space-between;
  transition: transform var(--ease), box-shadow var(--ease);
}

.route-card:hover,
.route-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.route-card--featured {
  background-color: #803425;
  color: var(--clr-white);
  border: 1.5px solid #803425;
  box-shadow: 0 4px 15px rgba(128, 52, 37, 0.2);
}

.route-card--featured .route-card__title {
  color: var(--clr-white);
  font-size: 1.05rem;
  font-weight: 700;
}

.route-card--featured .route-card__desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  line-height: 1.55;
}

.route-card--featured .route-card__link {
  color: #fff6e7;
  font-weight: 600;
  font-size: 0.82rem;
  margin-top: auto;
  padding-top: 0.5rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.route-card--cream {
  background-color: #fff6e7;
  border: 1.5px solid #c4a482;
  color: #231f1c;
}

.route-card--cream .route-card__title {
  color: #803425;
  font-size: 1.05rem;
  font-weight: 700;
}

.route-card--cream .route-card__desc {
  color: #525252;
  font-size: 0.82rem;
  line-height: 1.55;
}

.route-card--cream .route-card__link {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: #803425;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: auto;
  padding-top: 0.5rem;
  transition: color var(--ease), transform var(--ease);
}

.route-card--cream:hover .route-card__link {
  color: var(--clr-brown);
  transform: translateX(3px);
}

.contact-routes__notice {
  font-family: var(--font-heading);
  font-size: 0.86rem;
  font-style: italic;
  color: #666666;
  text-align: center;
  max-width: 650px;
  line-height: 1.6;
}

/* --- Process Section: Your enquiry reaches the right team --- */
.contact-process-section {
  background-color: #583300;
  color: var(--clr-white);
  padding: 4.5rem var(--space-md) 4.5rem;
}

.contact-process__inner {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  text-align: center;
}

.contact-process__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.contact-stepper {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 100%;
  margin-top: 0.5rem;
}

.contact-stepper::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 12%;
  right: 12%;
  height: 2px;
  border-top: 2px dashed rgba(255, 255, 255, 0.4);
  z-index: 1;
}

.contact-step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  text-align: center;
}

.contact-step__number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--clr-white);
  color: #803425;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.contact-step__name {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
}

.contact-step__desc {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
}

.contact-process__notes {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 680px;
  margin: 0 auto;
}

.contact-process__note {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
}

.contact-process__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

/* Ghost White Button */
.btn--ghost-white {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.65rem 1.4rem;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all var(--ease);
}

.btn--ghost-white:hover,
.btn--ghost-white:focus-visible {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* ==================== FAQ PAGE ====================*/

.faq-page {
  background-color: var(--clr-white);
}

.faq-hero {
  background-color: #fff6e7;
  padding: calc(var(--nav-height) + 2rem) var(--space-md) 2.5rem;
  text-align: center;
  border-bottom: 1.5px solid var(--clr-linen);
}

.faq-hero__inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.faq-hero__badge {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-rust-dark);
  background-color: var(--clr-linen);
  padding: 0.25rem 0.85rem;
  border-radius: 50px;
}

.faq-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #803425;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.faq-hero__subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  font-style: italic;
  font-weight: 400;
  color: #525252;
}

.faq-hero__desc {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  line-height: 1.65;
  color: #666666;
  max-width: 680px;
  margin-top: 0.25rem;
}

/* Quick Navigation Pills */
.faq-nav-wrap {
  position: sticky;
  top: var(--nav-height);
  z-index: 90;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--clr-linen);
  padding: 0.75rem var(--space-md);
  overflow-x: auto;
}

.faq-nav {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  gap: 0.6rem;
  justify-content: flex-start;
  white-space: nowrap;
}

.faq-nav__pill {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  color: #525252;
  background-color: #f7efe1;
  border: 1px solid #d6c8b4;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all var(--ease);
}

.faq-nav__pill:hover,
.faq-nav__pill.active {
  background-color: #803425;
  color: #ffffff;
  border-color: #803425;
}

/* FAQ Body */
.faq-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem var(--space-md) 4.5rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.faq-category {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  scroll-margin-top: calc(var(--nav-height) + 3.5rem);
}

.faq-category__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 2px solid #fff6e7;
  padding-bottom: 0.75rem;
}

.faq-category__title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: #803425;
  letter-spacing: -0.01em;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

/* FAQ Accordion Items */
.faq-item {
  background-color: var(--clr-white);
  border: 1.5px solid var(--clr-linen);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color var(--ease), box-shadow var(--ease);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.faq-item:hover {
  border-color: #c4a482;
  box-shadow: 0 4px 12px rgba(88, 51, 0, 0.06);
}

.faq-item.open {
  border-color: #803425;
  box-shadow: 0 6px 16px rgba(128, 52, 37, 0.08);
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 600;
  color: #231f1c;
  line-height: 1.4;
  transition: color var(--ease);
}

.faq-item__trigger:hover,
.faq-item.open .faq-item__trigger {
  color: #803425;
}

.faq-item__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #fff6e7;
  color: #803425;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color var(--ease), color var(--ease);
}

.faq-item.open .faq-item__icon {
  transform: rotate(45deg);
  background-color: #803425;
  color: #ffffff;
}

.faq-item__content {
  display: none;
  padding: 0 1.35rem 1.25rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.7;
  color: #443f3a;
  border-top: 1px solid #fff6e7;
  margin-top: 0;
  padding-top: 1rem;
}

.faq-item.open .faq-item__content {
  display: block;
}

.faq-item__content p {
  margin-bottom: 0.65rem;
}

.faq-item__content p:last-child {
  margin-bottom: 0;
}

.faq-item__content ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.faq-cta-link {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: #803425;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  margin-top: 0.75rem;
  transition: transform var(--ease), color var(--ease);
}

.faq-cta-link:hover {
  transform: translateX(4px);
  color: var(--clr-brown);
}

/* Still Have Questions Box */
.faq-contact-section {
  background-color: #fff6e7;
  border-radius: 20px;
  padding: 2.75rem 2rem;
  border: 1.5px solid #c4a482;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  text-align: center;
  margin-top: 1rem;
  box-shadow: 0 4px 16px rgba(88, 51, 0, 0.05);
}

.faq-contact__title {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 700;
  color: #803425;
}

.faq-contact__desc {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: #525252;
  max-width: 620px;
  line-height: 1.6;
}

.faq-contact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  width: 100%;
}

.faq-contact-card {
  background-color: var(--clr-white);
  border-radius: 14px;
  border: 1px solid #d6c8b4;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  text-align: center;
}

.faq-contact-card__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #803425;
}

.faq-contact-card__text {
  font-family: var(--font-heading);
  font-size: 0.86rem;
  color: #666666;
  line-height: 1.55;
}

.faq-contact__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

/* ==================== HISTORIKA PAGE ====================*/

.historika-hero {
  position: relative;
  width: 100%;
  margin-top: var(--nav-height);
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: url('images/historika bg.png');
  background-size: cover;
  background-position: center;
}

.historika-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(25, 18, 12, 0.72),
      rgba(25, 18, 12, 0.78));
  z-index: 1;
}

.historika-hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  color: var(--clr-white);
  padding: 3.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.historika-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.historika-hero__subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-style: italic;
  font-weight: 400;
  color: #f3eee2;
  line-height: 1.4;
}

.historika-hero__desc {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  max-width: 700px;
}

.historika-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

.historika-hero__tagline {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  margin-top: 0.5rem;
  line-height: 1.5;
}

/* --- Historika 2nd Section: Meaning Lost --- */
.historika-meaning-section {
  background-color: var(--clr-white);
  padding: 4rem var(--space-md) 4.5rem;
}

.historika-meaning__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 3.5rem;
  align-items: center;
}

.historika-meaning__image-wrap {
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.historika-meaning__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.historika-meaning__image-wrap:hover .historika-meaning__image {
  transform: scale(1.03);
}

.historika-meaning__content {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.historika-meaning__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 700;
  color: #803425;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.historika-meaning__content p {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.75;
  color: #333333;
}

/* --- Historika 3rd Section: Research. Map. Document. --- */
.historika-areas-section {
  background-color: #fff6e7;
  padding: 4.5rem var(--space-md) 5rem;
}

.historika-areas__inner {
  max-width: 1050px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.75rem;
}

.historika-areas__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  max-width: 780px;
}

.historika-areas__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 700;
  color: #583300;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.historika-areas__subtitle {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 400;
  color: #555555;
  line-height: 1.6;
}

.historika-areas__grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  align-items: center;
}

.historika-areas__row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
  width: 100%;
}

.historika-areas__row--single {
  max-width: 540px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  width: 100%;
}

.historika-areas__divider {
  width: 3px;
  height: 50px;
  background-color: #803425;
  border-radius: 4px;
}

.historika-area-card {
  background-color: var(--clr-white);
  border-radius: 12px;
  padding: 1.75rem 1.6rem;
  box-shadow: 0 4px 16px rgba(88, 51, 0, 0.04);
  border: 1px solid rgba(196, 164, 130, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: transform var(--ease), box-shadow var(--ease);
}

.historika-area-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(88, 51, 0, 0.08);
}

.historika-area-card__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #803425;
}

.historika-area-card__desc {
  font-family: var(--font-heading);
  font-size: 0.86rem;
  line-height: 1.55;
  color: #555555;
}

/* --- Historika 4th Section: Ancient questions. Modern tools. --- */
.historika-tools-section {
  background-color: #583300;
  color: var(--clr-white);
  padding: 4.5rem var(--space-md) 5rem;
}

.historika-tools__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.75rem;
  text-align: center;
}

.historika-tools__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.historika-tools__desc {
  font-family: var(--font-heading);
  font-size: 0.96rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  max-width: 780px;
  margin: 0 auto;
}

.historika-stepper {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  width: 100%;
  margin-top: 1rem;
}

.historika-stepper::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 8%;
  right: 8%;
  height: 2px;
  border-top: 2px dashed rgba(255, 255, 255, 0.4);
  z-index: 1;
}

.historika-step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  text-align: center;
}

.historika-step__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--clr-white);
  color: #803425;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.historika-step__label {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4;
  max-width: 130px;
}

/* --- Historika 5th Section: Evidence First --- */
.historika-evidence-section {
  background-color: var(--clr-white);
  padding: 4.5rem var(--space-md) 5rem;
}

.historika-evidence__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.historika-evidence__cols {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 3.5rem;
  align-items: center;
  width: 100%;
}

.historika-evidence__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.historika-evidence__title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  font-weight: 700;
  color: #583300;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.historika-evidence__content p {
  font-family: var(--font-heading);
  font-size: 0.96rem;
  font-weight: 400;
  line-height: 1.75;
  color: #444444;
}

.historika-evidence__image-wrap {
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.historika-evidence__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.historika-evidence__image-wrap:hover .historika-evidence__image {
  transform: scale(1.03);
}

.historika-evidence__flow-bar {
  background-color: #803425;
  color: var(--clr-white);
  border-radius: 12px;
  padding: 0.9rem 2.25rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 4px 16px rgba(128, 52, 37, 0.2);
  max-width: 720px;
  width: 100%;
  letter-spacing: 0.01em;
}

/* --- Historika 6th Section: Mapping Bharat beyond its monuments --- */
.historika-mapping-section {
  position: relative;
  background-image: url('images/mapping.png');
  background-size: cover;
  background-position: center;
  padding: 5rem var(--space-md) 5.5rem;
  overflow: hidden;
}

.historika-mapping__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(25, 18, 12, 0.78),
      rgba(25, 18, 12, 0.86));
  z-index: 1;
}

.historika-mapping__inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.historika-mapping__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  max-width: 780px;
}

.historika-mapping__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.historika-mapping__subtitle {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.historika-mapping__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  width: 100%;
}

.historika-map-card {
  background-color: var(--clr-white);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 170px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: transform var(--ease), box-shadow var(--ease);
}

.historika-map-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.historika-map-card__content {
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.historika-map-card__title {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 700;
  color: #583300;
  line-height: 1.35;
}

.historika-map-card__desc {
  font-family: var(--font-heading);
  font-size: 0.86rem;
  line-height: 1.55;
  color: #444444;
}

.historika-map-card__image-wrap {
  width: 100%;
  height: 100%;
  min-height: 180px;
  overflow: hidden;
}

.historika-map-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}

.historika-map-card:hover .historika-map-card__image {
  transform: scale(1.06);
}

.historika-mapping__actions {
  display: flex;
  justify-content: center;
  margin-top: 0.5rem;
}

/* --- Historika 7th Section: Research must reach people --- */
.historika-public-section {
  background-color: var(--clr-white);
  padding: 5rem var(--space-md) 5.5rem;
}

.historika-public__inner {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.75rem;
}

.historika-public__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  max-width: 780px;
}

.historika-public__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 700;
  color: #583300;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.historika-public__subtitle {
  font-family: var(--font-heading);
  font-size: 0.96rem;
  font-weight: 400;
  color: #555555;
  line-height: 1.65;
}

.historika-public__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  width: 100%;
}

.historika-public-card {
  background-color: #803425;
  border-radius: 16px;
  padding: 1.75rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: 0 4px 16px rgba(128, 52, 37, 0.15);
  transition: transform var(--ease), box-shadow var(--ease);
}

.historika-public-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(128, 52, 37, 0.25);
}

.historika-public-card__badge {
  background-color: var(--clr-white);
  color: #803425;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: 6px;
  display: inline-block;
}

.historika-public-card__desc {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
}

.historika-public__footer {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  max-width: 720px;
}

.historika-public__note {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: #555555;
  line-height: 1.6;
}

.historika-public__note strong {
  color: #803425;
}

/* --- Historika 8th Section: Separate organisations --- */
.historika-orgs-section {
  position: relative;
  background-image: url('images/organisations.png');
  background-size: cover;
  background-position: center;
  padding: 5rem var(--space-md) 5.5rem;
  overflow: hidden;
}

.historika-orgs__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(25, 18, 12, 0.76),
      rgba(25, 18, 12, 0.84));
  z-index: 1;
}

.historika-orgs__inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.75rem;
  color: var(--clr-white);
}

.historika-orgs__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: left;
}

.historika-orgs__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.historika-orgs__content p {
  font-family: var(--font-heading);
  font-size: 0.96rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}

.historika-orgs__diagram-card {
  background-color: var(--clr-white);
  border-radius: 16px;
  padding: 1.75rem 2.5rem;
  width: 100%;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.historika-orgs__box {
  background-color: #f7efe1;
  border: 1px solid #d6c8b4;
  border-radius: 10px;
  padding: 1.15rem 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.historika-orgs__box-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #231f1c;
}

.historika-orgs__box-type {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-style: italic;
  color: #803425;
}

.historika-orgs__arrow-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  color: #231f1c;
}

.historika-orgs__arrow-icon {
  font-size: 1.4rem;
  line-height: 1;
  color: #231f1c;
}

.historika-orgs__arrow-text {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #231f1c;
}

/* --- Historika 9th Section: Research the past (Final CTA) --- */
.historika-final-cta-section {
  background-color: #583300;
  color: var(--clr-white);
  padding: 4.75rem var(--space-md) 5rem;
  text-align: center;
}

.historika-final-cta__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.historika-final-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.historika-final-cta__desc {
  font-family: var(--font-heading);
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  max-width: 720px;
}

.historika-final-cta__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.25rem;
}

.historika-final-cta__disclaimer {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0.5rem;
}

/* --- Pill Buttons --- */
.btn--brown-pill {
  background-color: #803425;
  color: var(--clr-white);
  border: 1.5px solid #803425;
  border-radius: 50px;
  padding: 0.75rem 1.85rem;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all var(--ease);
}

.btn--brown-pill:hover,
.btn--brown-pill:focus-visible {
  background-color: #583300;
  border-color: #583300;
  color: var(--clr-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(88, 51, 0, 0.25);
}

.btn--white-pill {
  background-color: var(--clr-white);
  color: #803425;
  border: 1.5px solid var(--clr-white);
  border-radius: 50px;
  padding: 0.75rem 1.85rem;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all var(--ease);
}

.btn--white-pill:hover,
.btn--white-pill:focus-visible {
  background-color: #f7efe1;
  color: #583300;
  border-color: #f7efe1;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

/* --- Historika 10th Section: Disclaimer --- */
.historika-disclaimer-section {
  background-color: var(--clr-white);
  padding: 4.5rem var(--space-md) 5rem;
}

.historika-disclaimer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.historika-disclaimer__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #803425;
  text-align: center;
  letter-spacing: -0.01em;
}

.historika-disclaimer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  width: 100%;
}

.historika-disclaimer__col {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  line-height: 1.75;
  color: #444444;
}

/* ==================== FOUNDER PAGE ==================== */

/* --- Founder Hero --- */
.founder-hero {
  position: relative;
  width: 100%;
  background-color: #231f1c;
  overflow: hidden;
  margin-top: var(--nav-height);
}

.founder-hero__img-wrap {
  width: 100%;
  display: block;
}

.founder-hero__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 85vh;
}

/* --- Founder Stats Strip --- */
.founder-stats {
  background-color: #1a1513;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.2rem var(--space-md);
  position: relative;
}

.founder-stats__wrapper {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  overflow: hidden;
}

.founder-stats__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: center;
  width: 100%;
}

.founder-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.2rem;
  padding: 0.25rem 0.5rem;
  position: relative;
}

.founder-stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.18);
}

.founder-stat-item__num {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 1.5vw, 1.65rem);
  font-weight: 700;
  color: #fffaef;
  line-height: 1.1;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.founder-stat-item__label {
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 400;
  color: #c4a482;
  line-height: 1.25;
  max-width: 150px;
}

.founder-stats__dots {
  display: none !important;
}

/* --- Founder Intro Section --- */
.founder-intro-section {
  background-color: #fff6e7;
  padding: 5rem var(--space-md) 5.5rem;
}

.founder-intro__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.75rem;
}

.founder-intro__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 700;
  color: #583300;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.founder-intro__desc {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  line-height: 1.75;
  color: #444444;
  max-width: 880px;
}

.founder-intro__actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

/* --- Founder 3rd Section: Why Travel with Chandru --- */
.founder-why-section {
  background-color: var(--clr-white);
  padding: 5rem var(--space-md) 5.5rem;
}

.founder-why__inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2.25rem;
}

.founder-why__image-wrap {
  width: 100%;
  max-width: 760px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.founder-why__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.founder-why__image-wrap:hover .founder-why__image {
  transform: scale(1.02);
}

.founder-why__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  max-width: 820px;
}

.founder-why__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  color: #333333;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.founder-why__content p {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  line-height: 1.7;
  color: #444444;
}

.founder-why__tagline {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-style: italic;
  font-weight: 600;
  color: #231f1c;
  margin-top: 0.5rem;
}

/* --- Founder 4th Section: How the Journey Began --- */
.founder-story-section {
  background-color: #fff6e7;
  padding: 5rem var(--space-md) 5.5rem;
}

.founder-story__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.5rem;
}

.founder-story__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.founder-story__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #333333;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.founder-story__subtitle {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  color: #666666;
  letter-spacing: 0.02em;
}

.founder-story__grid {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 3.5rem;
  align-items: start;
  width: 100%;
}

.founder-story__image-wrap {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.09);
  position: sticky;
  top: calc(var(--nav-height) + 1.5rem);
}

.founder-story__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.founder-story__image-wrap:hover .founder-story__image {
  transform: scale(1.02);
}

.founder-story__content {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.founder-story__content p {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  line-height: 1.7;
  color: #444444;
}

/* --- Founder 5th Section: Books, Film, Field Work & Research Carousel --- */
.founder-books-section {
  position: relative;
  background-image: url('images/books-bg.png');
  background-size: cover;
  background-position: center;
  padding: 5rem var(--space-md) 5.5rem;
  overflow: hidden;
}

.founder-books__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(20, 16, 14, 0.76),
      rgba(20, 16, 14, 0.84));
  z-index: 1;
}

.founder-books__inner {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.75rem;
}

.founder-books__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.03em;
  text-align: center;
  text-transform: uppercase;
}

.founder-books__carousel-container {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.founder-books__track-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
}

.founder-books__track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.founder-book-card {
  flex: 0 0 calc((100% - 3rem) / 3);
  min-width: calc((100% - 3rem) / 3);
  background-color: #fff9ed;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  transition: transform var(--ease), box-shadow var(--ease);
}

.founder-book-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.founder-book-card__image-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: #1a1513;
}

.founder-book-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}

.founder-book-card:hover .founder-book-card__image {
  transform: scale(1.05);
}

.founder-book-card__content {
  padding: 1.5rem 1.4rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex: 1;
}

.founder-book-card__title {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 700;
  color: #333333;
  line-height: 1.35;
}

.founder-book-card__desc {
  font-family: var(--font-heading);
  font-size: 0.84rem;
  line-height: 1.6;
  color: #444444;
}

.founder-book-card__method {
  font-family: var(--font-heading);
  font-size: 0.84rem;
  line-height: 1.6;
  color: #555555;
  margin-top: 0.25rem;
}

/* Carousel Nav Buttons */
.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  color: #231f1c;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transition: all var(--ease);
}

.carousel-nav-btn:hover {
  background-color: #ffffff;
  color: #803425;
  transform: translateY(-50%) scale(1.08);
}

.carousel-nav-btn--prev {
  left: -22px;
}

.carousel-nav-btn--next {
  right: -22px;
}

/* Dots */
.carousel-dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  margin-top: 0.5rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: all var(--ease);
}

.carousel-dot--active {
  background-color: #ffffff;
  width: 26px;
  border-radius: 5px;
}

/* --- Founder 6th Section: From Historika to Bhumivox --- */
.founder-two-orgs-section {
  background-color: #fff6e7;
  padding: 5rem var(--space-md) 5.5rem;
}

.founder-two-orgs__inner {
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.5rem;
}

.founder-two-orgs__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #333333;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
}

.founder-two-orgs__blocks {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  width: 100%;
}

.founder-org-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: #3d2b22;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  align-items: stretch;
}

.founder-org-block__image-wrap {
  width: 100%;
  height: 100%;
  min-height: 440px;
  overflow: hidden;
}

.founder-org-block__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s var(--ease);
}

.founder-org-block:hover .founder-org-block__image {
  transform: scale(1.03);
}

.founder-org-block__content {
  padding: 3rem 2.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  justify-content: center;
}

.founder-org-block__heading {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 700;
  color: #f3d097;
  line-height: 1.35;
}

.founder-org-block__divider {
  width: 50px;
  height: 1px;
  background-color: rgba(243, 208, 151, 0.4);
  margin: 0.15rem 0 0.5rem;
}

.founder-org-block__content p {
  font-family: var(--font-heading);
  font-size: 0.86rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

/* --- Founder 7th Section: How Chandru Approaches History --- */
.founder-approach-section {
  background-color: #382419;
  padding: 5rem var(--space-md) 5.5rem;
  overflow: hidden;
}

.founder-approach__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.75rem;
}

.founder-approach__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.03em;
  text-align: center;
  text-transform: uppercase;
}

.founder-approach__carousel-container {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.founder-approach__track-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  padding: 0.5rem 0;
}

.founder-approach__track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.founder-approach-card {
  flex: 0 0 calc((100% - 3rem) / 3);
  min-width: calc((100% - 3rem) / 3);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  padding: 2.25rem 1.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform var(--ease), border-color var(--ease), background-color var(--ease);
}

.founder-approach-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
}

.founder-approach-card__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.founder-approach-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
}

.founder-approach-card__divider {
  width: 40px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  margin-top: -0.25rem;
}

.founder-approach-card__desc {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
}

/* --- Founder 8th Section: What Travelling with Chandru Feels Like --- */
.founder-feels-section {
  background-color: #ffffff;
  padding: 5rem var(--space-md) 6rem;
}

.founder-feels__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.5rem;
}

.founder-feels__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #231f1c;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
}

.founder-feels__grid {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 3.5rem;
  align-items: start;
  width: 100%;
}

.founder-feels__image-wrap {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.09);
  position: sticky;
  top: calc(var(--nav-height) + 1.5rem);
}

.founder-feels__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.founder-feels__image-wrap:hover .founder-feels__image {
  transform: scale(1.02);
}

.founder-feels__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.founder-feels__heading {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #231f1c;
  line-height: 1.35;
}

.founder-feels__divider {
  width: 45px;
  height: 2px;
  background-color: #803425;
  margin: -0.25rem 0 0.5rem;
}

.founder-feels__content p {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  line-height: 1.65;
  color: #444444;
}

.founder-feels__note-heading {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #231f1c;
  margin-top: 1.25rem;
}

.founder-feels__quote {
  font-style: italic;
  color: #555555;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.founder-feels__author {
  font-family: var(--font-heading);
  font-style: normal;
  font-weight: 600;
  color: #231f1c;
  font-size: 0.92rem;
}

/* --- Founder Final CTA Card --- */
.founder-cta-box {
  width: 100%;
  background-color: #fff2dc;
  border-radius: 24px;
  padding: 3.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(128, 52, 37, 0.12);
  margin-top: 1rem;
}

.founder-cta-box__title {
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 2.75vw, 2rem);
  font-weight: 700;
  color: #231f1c;
  letter-spacing: -0.01em;
}

.founder-cta-box__subtitle {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  line-height: 1.6;
  color: #555555;
  max-width: 680px;
}

.founder-cta-box__actions {
  display: flex;
  gap: 1.25rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.founder-cta-box__actions .btn {
  background-color: #3d2b22;
  color: #ffffff;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--ease);
}

.founder-cta-box__actions .btn:hover {
  background-color: #803425;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(128, 52, 37, 0.3);
}

/* ============================================================
   RAMA-KRISHNA-SHIVA JOURNEY PAGE STYLES
   ============================================================ */

/* --- RKS Hero Section --- */
.rks-hero,
.braj-hero {
  position: relative;
  min-height: 86vh;
  background-image: url('images/rks-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--nav-height) + 4rem) var(--space-md) 6.5rem;
  margin-top: 0;
}

.braj-hero {
  background-image: url('images/braj-bg.png');
  background-position: center right;
}

.rks-hero__overlay,
.braj-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(20, 16, 14, 0.88) 0%,
      rgba(20, 16, 14, 0.72) 45%,
      rgba(20, 16, 14, 0.25) 100%),
    linear-gradient(to top,
      rgba(20, 16, 14, 0.9) 0%,
      transparent 50%);
  z-index: 1;
}

.braj-hero__overlay {
  background: linear-gradient(to right,
      rgba(26, 15, 10, 0.93) 0%,
      rgba(38, 20, 12, 0.84) 42%,
      rgba(42, 22, 14, 0.45) 72%,
      rgba(42, 22, 14, 0.12) 100%),
    linear-gradient(to top,
      rgba(20, 12, 8, 0.92) 0%,
      transparent 55%);
}

.braj-badge-pill,
.rks-hero__badge-pill {
  display: inline-flex;
  align-items: center;
  background-color: #ffffff;
  color: #803425;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.42rem 0.95rem;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  margin-bottom: 0.25rem;
}

.btn--hero-whatsapp {
  background-color: rgba(36, 22, 16, 0.72);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
}

.btn--hero-whatsapp:hover {
  background-color: #803425;
  border-color: #803425;
  color: #ffffff;
  transform: translateY(-2px);
}

.braj-booking-box {
  background-color: #ffffff;
  border: 1px solid #d2c8b8;
  border-radius: 4px;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.35rem;
  min-height: 84px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.braj-booking-placeholder {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: #726b63;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.45;
}

/* --- Why Braj? Why Kartik. Section --- */
.why-braj-section {
  background-color: #ffffff;
  padding: 5.5rem var(--space-md) 6rem;
}

.why-braj__inner {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.75rem;
}

.why-braj__header {
  text-align: center;
  max-width: 860px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.why-braj__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 700;
  color: #803425;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.why-braj__intro {
  font-family: var(--font-heading);
  font-size: clamp(0.92rem, 1.4vw, 0.98rem);
  line-height: 1.7;
  color: #443f3a;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.why-braj__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  width: 100%;
}

.why-braj-card {
  background-color: #fff8eb;
  border: 1px solid rgba(128, 52, 37, 0.14);
  border-radius: 12px;
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
  transition: transform var(--ease), box-shadow var(--ease);
}

.why-braj-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(88, 51, 0, 0.06);
}

.why-braj-card__title {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #231f1c;
  text-transform: uppercase;
}

.why-braj-card__divider {
  width: 32px;
  height: 2px;
  background-color: #c4a482;
  border-radius: 2px;
}

.why-braj-card__desc {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  line-height: 1.6;
  color: #443f3a;
  max-width: 420px;
}

.why-braj__highlight-box {
  background-color: #fff8eb;
  border: 1px solid rgba(128, 52, 37, 0.16);
  border-radius: 10px;
  padding: 1.15rem 2.75rem;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  margin-top: 0.5rem;
}

.why-braj__highlight-text {
  font-family: var(--font-heading);
  font-size: clamp(0.98rem, 1.6vw, 1.1rem);
  font-weight: 700;
  color: #231f1c;
  letter-spacing: 0.01em;
}

@media (max-width: 768px) {
  .why-braj-section {
    padding: 3.5rem var(--space-sm) 4rem;
  }

  .why-braj__inner {
    gap: 2rem;
  }

  .why-braj__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .why-braj-card {
    padding: 1.75rem 1.25rem;
  }

  .why-braj__highlight-box {
    padding: 1rem 1.25rem;
    width: 100%;
  }
}

/* --- Braj Is Not One Temple Town Section --- */
.braj-not-one-town-section {
  position: relative;
  background-image: url('images/wt (1).png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 6rem var(--space-md) 6.5rem;
}

.braj-not-one-town__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(26, 15, 8, 0.92) 0%,
      rgba(38, 20, 10, 0.85) 50%,
      rgba(38, 20, 10, 0.75) 100%),
    linear-gradient(to bottom,
      rgba(20, 10, 5, 0.8) 0%,
      rgba(20, 10, 5, 0.6) 100%);
  z-index: 1;
}

.braj-not-one-town__inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.braj-not-one-town__header {
  max-width: 980px;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  color: #ffffff;
}

.braj-not-one-town__title {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 3.8vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.braj-not-one-town__desc {
  font-family: var(--font-heading);
  font-size: clamp(0.92rem, 1.4vw, 0.98rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.braj-not-one-town__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  width: 100%;
}

.braj-town-card {
  background-color: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  transition: transform var(--ease), box-shadow var(--ease);
}

.braj-town-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.braj-town-card__image-wrap {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
  background-color: #f0e6d6;
}

.braj-town-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.braj-town-card:hover .braj-town-card__image {
  transform: scale(1.04);
}

.braj-town-card__body {
  padding: 1.75rem 1.4rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  flex-grow: 1;
}

.braj-town-card__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #803425;
  line-height: 1.35;
}

.braj-town-card__desc {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  line-height: 1.6;
  color: #333333;
}

@media (max-width: 900px) {
  .braj-not-one-town__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
    gap: 1.75rem;
  }
}

@media (max-width: 768px) {
  .braj-not-one-town-section {
    padding: 4rem var(--space-sm) 4.5rem;
  }

  .braj-not-one-town__inner {
    gap: 2.25rem;
  }

  .braj-town-card__image-wrap {
    height: 210px;
  }

  .braj-town-card__body {
    padding: 1.5rem 1.25rem 1.75rem;
  }
}

/* --- Braj Historian Section --- */
.braj-historian-section {
  background-color: #fff9f0;
  padding: 5.5rem var(--space-md) 6rem;
}

.braj-historian__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.braj-historian__top {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 3.5rem;
  align-items: flex-start;
}

.braj-historian__image-wrap {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  background-color: #f3eee2;
}

.braj-historian__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.braj-historian__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.braj-historian__title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  font-weight: 700;
  color: #231f1c;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.braj-historian__badge {
  background-color: #803425;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: 4px;
  display: inline-block;
}

.braj-historian__bio {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  color: #443f3a;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  line-height: 1.65;
}

.braj-historian__pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 1.75rem;
  width: 100%;
  margin-top: 0.75rem;
}

.braj-historian-pillar {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.braj-historian-pillar__title {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: #803425;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.35;
}

.braj-historian-pillar__desc {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  line-height: 1.55;
  color: #443f3a;
}

.braj-historian__divider-line {
  grid-column: 1 / -1;
  height: 1px;
  background-color: #e5d8c5;
  margin: 0.25rem 0;
}

.braj-historian__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  border-top: 1px solid rgba(128, 52, 37, 0.1);
  padding-top: 2.5rem;
}

.braj-historian__role-title {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #231f1c;
  text-transform: uppercase;
}

.btn--historian-cta {
  background-color: #803425;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all var(--ease);
  box-shadow: 0 4px 14px rgba(128, 52, 37, 0.25);
}

.btn--historian-cta:hover {
  background-color: #65281c;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(128, 52, 37, 0.35);
  color: #ffffff;
}

@media (max-width: 992px) {
  .braj-historian__top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .braj-historian__image-wrap {
    max-width: 420px;
    margin: 0 auto;
  }

  .braj-historian__pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .braj-historian-section {
    padding: 3.5rem var(--space-sm) 4rem;
  }

  .braj-historian__inner {
    gap: 2.5rem;
  }

  .braj-historian__pillars-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .braj-historian__divider-line {
    display: none;
  }

  .braj-historian__badge {
    font-size: 0.68rem;
    padding: 0.4rem 0.75rem;
    line-height: 1.4;
  }

  .btn--historian-cta {
    width: 100%;
    justify-content: center;
  }
}

/* --- Braj Itinerary (Four to Five Days) Section --- */
.braj-itinerary-section {
  background-color: #ffffff;
  padding: 5.5rem var(--space-md) 6rem;
}

.braj-itinerary__inner {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

/* Top 5-day route strip */
.braj-route-strip {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid #dcd3c5;
  background-color: #fffdf9;
  border-radius: 2px;
}

.braj-route-box {
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
  border-right: 1px solid #dcd3c5;
}

.braj-route-box:last-child {
  border-right: none;
}

.braj-route-box__day {
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #555555;
  text-transform: uppercase;
}

.braj-route-box__name {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #803425;
  text-transform: uppercase;
  line-height: 1.35;
}

/* Header & Intro */
.braj-itinerary__header {
  text-align: center;
  max-width: 860px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
}

.braj-itinerary__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 700;
  color: #231f1c;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.braj-itinerary__desc {
  font-family: var(--font-heading);
  font-size: clamp(0.92rem, 1.4vw, 0.98rem);
  line-height: 1.65;
  color: #443f3a;
}

/* 5 Day Cards List */
.braj-itinerary__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.braj-day-card {
  background-color: #ffffff;
  border: 1px solid rgba(128, 52, 37, 0.12);
  border-radius: 4px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  display: flex;
  overflow: hidden;
  align-items: center;
  transition: transform var(--ease), box-shadow var(--ease);
}

.braj-day-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(88, 51, 0, 0.08);
}

.braj-day-card__image-wrap {
  width: 180px;
  min-width: 180px;
  height: 130px;
  overflow: hidden;
  background-color: #f3eee2;
}

.braj-day-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.braj-day-card__content {
  padding: 1.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
  flex-grow: 1;
}

.braj-day-card__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #803425;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.braj-day-card__desc {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  line-height: 1.55;
  color: #443f3a;
}

/* Notice */
.braj-itinerary__notice {
  font-family: var(--font-heading);
  font-size: 0.84rem;
  line-height: 1.6;
  color: #666666;
  text-align: center;
  max-width: 860px;
}

@media (max-width: 860px) {
  .braj-route-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .braj-route-box:nth-child(3) {
    border-right: none;
  }

  .braj-route-box:nth-child(4),
  .braj-route-box:nth-child(5) {
    border-top: 1px solid #dcd3c5;
  }
}

@media (max-width: 650px) {
  .braj-itinerary-section {
    padding: 3.5rem var(--space-sm) 4rem;
  }

  .braj-itinerary__inner {
    gap: 2rem;
  }

  .braj-route-strip {
    grid-template-columns: 1fr;
  }

  .braj-route-box {
    border-right: none;
    border-bottom: 1px solid #dcd3c5;
    padding: 1rem 0.75rem;
  }

  .braj-route-box:last-child {
    border-bottom: none;
  }

  .braj-day-card {
    flex-direction: column;
    align-items: stretch;
  }

  .braj-day-card__image-wrap {
    width: 100%;
    min-width: 100%;
    height: 170px;
  }

  .braj-day-card__content {
    padding: 1.25rem 1rem;
  }
}

/* --- Braj Depth, Care, Clarity & Fit Section --- */
.braj-care-fit-section {
  background-color: #fffdf9;
  padding: 5.5rem var(--space-md) 6.5rem;
}

.braj-care-fit__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
}

/* 1. Top Depth & Care Block */
.braj-care-top {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 3.5rem;
  align-items: flex-start;
}

.braj-care__image-wrap {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  background-color: #f3eee2;
}

.braj-care__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.braj-care__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.braj-care__title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  font-weight: 700;
  color: #231f1c;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.braj-care__pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2rem;
  width: 100%;
}

.braj-care-pillar {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.braj-care-pillar__title {
  font-family: var(--font-heading);
  font-size: 0.96rem;
  font-weight: 700;
  color: #803425;
  line-height: 1.35;
}

.braj-care-pillar__desc {
  font-family: var(--font-heading);
  font-size: 0.84rem;
  line-height: 1.55;
  color: #443f3a;
}

.braj-care__divider-line {
  grid-column: 1 / -1;
  height: 1px;
  background-color: #e5d8c5;
  margin: 0.25rem 0;
}

/* 2. Middle & Bottom 2-Card Sections (Fit & Fees) */
.braj-fit-block,
.braj-fees-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.braj-block-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-weight: 700;
  color: #231f1c;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.braj-dual-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  width: 100%;
}

.braj-info-card {
  background-color: #fff6e7;
  border: 1px solid rgba(128, 52, 37, 0.12);
  border-radius: 10px;
  padding: 2rem 1.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.02);
  transition: transform var(--ease), box-shadow var(--ease);
}

.braj-info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(88, 51, 0, 0.06);
}

.braj-info-card__title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #803425;
  text-transform: uppercase;
}

.braj-info-card__desc {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  line-height: 1.6;
  color: #443f3a;
}

@media (max-width: 900px) {
  .braj-care-top {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .braj-care__image-wrap {
    max-width: 440px;
    margin: 0 auto;
  }
}

@media (max-width: 680px) {
  .braj-care-fit-section {
    padding: 3.5rem var(--space-sm) 4rem;
  }

  .braj-care-fit__inner {
    gap: 3rem;
  }

  .braj-care__pillars-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .braj-care__divider-line {
    display: none;
  }

  .braj-dual-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .braj-info-card {
    padding: 1.5rem 1.25rem;
  }
}

/* --- Braj Choose Your Kartik Departure Section --- */
.braj-departure-select-section {
  background-color: #fff9f0;
  padding: 5.5rem var(--space-md) 6rem;
}

.braj-departure-select__inner {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.braj-departure-select__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 700;
  color: #231f1c;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.braj-departure-card {
  background-color: #ffffff;
  border: 1px solid #dcd3c5;
  border-radius: 4px;
  padding: 2.25rem 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.braj-departure-card__top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 1.5rem;
}

.braj-departure-metric {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.braj-departure-metric__label {
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #555555;
  text-transform: uppercase;
}

.braj-departure-metric__val {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #231f1c;
  text-transform: uppercase;
}

.braj-departure-card__mid {
  border-top: 1px solid #eee7db;
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.braj-departure-card__sub {
  font-family: var(--font-heading);
  font-size: 0.84rem;
  color: #555555;
}

.braj-departure-card__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 0.5rem;
}

.btn--card-black {
  background-color: #14110f;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.75rem 1.4rem;
  border-radius: 4px;
  text-decoration: none;
  transition: all var(--ease);
}

.btn--card-black:hover {
  background-color: #332d29;
  transform: translateY(-2px);
}

.btn--card-white-border {
  background-color: #ffffff;
  color: #231f1c;
  border: 1px solid #aaaaaa;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.75rem 1.4rem;
  border-radius: 4px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: all var(--ease);
}

.btn--card-white-border:hover {
  border-color: #803425;
  color: #803425;
  transform: translateY(-2px);
}

.btn--card-rust {
  background-color: #803425;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.75rem 1.4rem;
  border-radius: 4px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: all var(--ease);
}

.btn--card-rust:hover {
  background-color: #65281c;
  transform: translateY(-2px);
  color: #ffffff;
}

.braj-departure-select__notice {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  color: #555555;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

/* --- Braj Red Form Section --- */
.braj-enquiry-section {
  background-color: #803425;
  padding: 5.5rem var(--space-md) 6rem;
  color: #ffffff;
}

.braj-enquiry__inner {
  max-width: 960px;
  margin: 0 auto;
}

.braj-enquiry__box {
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 4px;
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.25rem;
  text-align: center;
}

.braj-enquiry__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  max-width: 780px;
}

.braj-enquiry__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
}

.braj-enquiry__desc {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.braj-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.braj-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.25rem;
  width: 100%;
}

.braj-form__full {
  grid-column: 1 / -1;
}

.braj-form-input {
  width: 100%;
  background-color: #ffffff;
  border: none;
  border-radius: 4px;
  padding: 0.95rem 1.25rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: #231f1c;
  outline: none;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.08);
}

.braj-form-input::placeholder {
  color: #555555;
  font-size: 0.88rem;
}

.braj-form-input:focus {
  box-shadow: 0 0 0 2px #ffffff;
}

.braj-form__draft-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.85rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 0.5rem;
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.braj-form__actions {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.btn--form-white {
  background-color: #ffffff;
  color: #803425;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all var(--ease);
}

.btn--form-white:hover {
  background-color: #f7efe1;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.btn--form-translucent {
  background-color: rgba(60, 20, 15, 0.5);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all var(--ease);
}

.btn--form-translucent:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .braj-departure-card {
    padding: 1.5rem 1.25rem;
  }

  .braj-departure-card__top {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .braj-departure-card__actions {
    flex-direction: column;
    width: 100%;
  }

  .btn--card-black,
  .btn--card-white-border,
  .btn--card-rust {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .braj-enquiry-section {
    padding: 3.5rem var(--space-sm) 4rem;
  }

  .braj-enquiry__box {
    padding: 2rem 1.25rem;
    gap: 1.75rem;
  }

  .braj-form__grid {
    grid-template-columns: 1fr;
  }

  .braj-form__actions {
    flex-direction: column;
    width: 100%;
  }
}

/* ============================================================
   SRI LANKA JOURNEY PAGE STYLES
   ============================================================ */

/* --- Sri Lanka Hero Section --- */
.sl-hero {
  position: relative;
  min-height: 88vh;
  background-image: url('images/sl-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--nav-height) + 3.5rem) var(--space-md) 7.5rem;
  margin-top: 0;
  text-align: center;
}

.sl-hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center,
      rgba(20, 15, 12, 0.45) 0%,
      rgba(15, 10, 8, 0.7) 100%),
    linear-gradient(to top,
      rgba(15, 10, 8, 0.9) 0%,
      rgba(15, 10, 8, 0.25) 50%,
      rgba(15, 10, 8, 0.65) 100%);
  z-index: 1;
}

.sl-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sl-hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  color: #ffffff;
  max-width: 900px;
}

.sl-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.sl-hero__tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 600;
  color: #fffaf0;
  letter-spacing: 0.01em;
}

.sl-hero__desc {
  font-family: var(--font-heading);
  font-size: clamp(0.92rem, 1.4vw, 0.98rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  max-width: 820px;
}

/* 4 Pill Badges */
.sl-hero__pills {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

.sl-pill-badge {
  background-color: #ffffff;
  color: #231f1c;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 1.15rem;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  letter-spacing: 0.02em;
}

/* Hero Actions */
.sl-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.75rem;
}

/* --- Floating 5 Feature Badges Grid --- */
.sl-features-strip {
  position: relative;
  z-index: 3;
  margin-top: -4.5rem;
  padding: 0 var(--space-md);
  margin-bottom: 2rem;
}

.sl-features__grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.sl-feature-card {
  position: relative;
  background-color: #ffffff;
  border: 1px solid rgba(128, 52, 37, 0.12);
  border-radius: 12px;
  padding: 2.5rem 1.15rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform var(--ease), box-shadow var(--ease);
}

.sl-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
}

.sl-feature-card__icon-badge {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fdfaf6;
  border: 1.5px solid #d4c2b0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #231f1c;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.sl-feature-card__title {
  font-family: var(--font-heading);
  font-size: 0.96rem;
  font-weight: 700;
  color: #803425;
  letter-spacing: 0.02em;
}

.sl-feature-card__desc {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 500;
  color: #443f3a;
  line-height: 1.45;
}

/* --- 2nd Section: The Opening Promise --- */
.sl-promise-section {
  background-color: #fffdf9;
  padding: 5.5rem var(--space-md) 6rem;
}

.sl-promise__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.sl-promise__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sl-promise__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #803425;
  text-transform: uppercase;
}

.sl-promise__heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.6vw, 2.75rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.sl-promise__heading-main {
  display: block;
  font-weight: 700;
  color: #803425;
}

.sl-promise__heading-sub {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: #803425;
  margin-top: 0.25rem;
}

.sl-promise__desc {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  font-family: var(--font-heading);
  font-size: clamp(0.92rem, 1.4vw, 0.98rem);
  line-height: 1.7;
  color: #443f3a;
}

/* Right Column: 2 Stacked Images */
.sl-promise__images {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sl-promise__img-wrap {
  width: 100%;
  height: 220px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  background-color: #f0e6d6;
}

.sl-promise__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.sl-promise__img-wrap:hover .sl-promise__img {
  transform: scale(1.03);
}

/* --- Sri Lanka Mobile Responsiveness --- */
@media (max-width: 1050px) {
  .sl-features__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1.25rem;
  }

  .sl-promise__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .sl-promise__images {
    max-width: 580px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .sl-hero {
    padding: calc(var(--nav-height) + 2.5rem) var(--space-sm) 5.5rem;
  }

  .sl-features-strip {
    margin-top: -3.5rem;
    padding: 0 var(--space-sm);
  }

  .sl-features__grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    max-width: 420px;
  }

  .sl-feature-card {
    padding: 2.25rem 1.25rem 1.5rem;
  }

  .sl-promise-section {
    padding: 4rem var(--space-sm) 4.5rem;
  }

  .sl-promise__img-wrap {
    height: 190px;
  }

  .sl-hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .sl-hero__actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

.rks-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
}

.rks-hero__content {
  max-width: 680px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.15rem;
  color: #ffffff;
  margin-bottom: 2.5rem;
}

.rks-hero__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #f7d299;
  text-transform: uppercase;
}

.rks-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.rks-hero__tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 600;
  color: #fffaf0;
  letter-spacing: 0.01em;
}

.rks-hero__desc {
  font-family: var(--font-heading);
  font-size: 0.94rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  max-width: 580px;
}

.rks-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.btn--white-solid {
  background-color: #ffffff;
  color: #231f1c;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all var(--ease);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.btn--white-solid:hover {
  background-color: #f0e6d6;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.btn--translucent {
  background-color: rgba(30, 24, 20, 0.65);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all var(--ease);
}

.btn--translucent:hover {
  background-color: rgba(128, 52, 37, 0.85);
  border-color: #803425;
  transform: translateY(-2px);
}

/* --- Floating 4 Feature Badges Grid --- */
.rks-features-strip {
  position: relative;
  z-index: 3;
  margin-top: -3.5rem;
  padding: 0 var(--space-md);
  margin-bottom: 2rem;
}

.rks-features__grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.rks-feature-card {
  position: relative;
  background-color: #fff8eb;
  border: 1px solid rgba(128, 52, 37, 0.12);
  border-radius: 14px;
  padding: 2.25rem 1.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.65rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform var(--ease), box-shadow var(--ease);
}

.rks-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
}

.rks-feature-card__icon-badge {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #803425;
  border: 3px solid #fff8eb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(128, 52, 37, 0.3);
}

.rks-feature-card__label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #231f1c;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.rks-feature-card__value {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: #333333;
  line-height: 1.4;
}

/* --- Live Booking Summary Section --- */
.rks-booking-section {
  background-color: #fff6e7;
  padding: 3.5rem var(--space-md) 5.5rem;
}

.rks-booking__inner {
  max-width: 1050px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.25rem;
}

.rks-booking__header {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #444444;
  text-transform: uppercase;
  text-align: center;
}

.rks-booking__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  width: 100%;
}

.rks-booking-col {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.rks-booking-col__status {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #333333;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.rks-status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #1b873f;
}

.rks-booking-col__box {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  padding: 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.35rem;
  min-height: 84px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

.rks-booking-col__date {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #231f1c;
  letter-spacing: 0.02em;
}

.rks-booking-col__price {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #231f1c;
  letter-spacing: 0.02em;
}

.rks-booking-col__tier {
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 700;
  color: #176038;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.rks-booking-col__link {
  font-family: var(--font-heading);
  font-size: 0.86rem;
  font-weight: 700;
  color: #231f1c;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  transition: color var(--ease);
}

.rks-booking-col__link:hover {
  color: #803425;
}

.rks-booking__note {
  font-family: var(--font-heading);
  font-size: 0.84rem;
  line-height: 1.6;
  color: #555555;
  text-align: center;
  max-width: 680px;
}

/* --- RKS 2nd Section: Three Sacred Landscapes --- */
.rks-three-landscapes-section {
  background-color: #fff6e7;
  padding: 5rem var(--space-md) 6rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.rks-three-landscapes__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.rks-three-landscapes__tag {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #555555;
  text-transform: uppercase;
  text-align: center;
}

.rks-three-landscapes__intro {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 3.5rem;
  align-items: start;
}

.rks-three-landscapes__heading {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.8vw, 2.9rem);
  font-weight: 700;
  line-height: 1.15;
  color: #231f1c;
  letter-spacing: -0.01em;
}

.rks-three-landscapes__story {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.rks-three-landscapes__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #803425;
  text-transform: uppercase;
}

.rks-three-landscapes__subheading {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.35;
  color: #231f1c;
}

.rks-three-landscapes__story p {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  line-height: 1.65;
  color: #444444;
}

/* 3 Cards Grid */
.rks-three-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  width: 100%;
}

.rks-landscape-card {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: transform var(--ease), box-shadow var(--ease);
}

.rks-landscape-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.rks-landscape-card__image-wrap {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background-color: #1a1513;
}

.rks-landscape-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

.rks-landscape-card:hover .rks-landscape-card__image {
  transform: scale(1.04);
}

.rks-landscape-card__overlay-title {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  z-index: 2;
}

.rks-landscape-card__image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
  z-index: 1;
}

.rks-landscape-card__body {
  padding: 1.75rem 1.4rem 1.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex: 1;
}

.rks-landscape-card__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #444444;
  text-transform: uppercase;
}

.rks-landscape-card__desc {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  line-height: 1.6;
  color: #444444;
}

.rks-landscape-card__question {
  font-family: var(--font-heading);
  font-size: 0.86rem;
  line-height: 1.5;
  color: #803425;
  margin-top: auto;
  padding-top: 0.75rem;
}

/* --- RKS 3rd Section: One Historian Carries the Thread --- */
.rks-historian-section {
  background-color: #fff6e7;
  padding: 5rem var(--space-md) 6rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.rks-historian__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.35fr;
  gap: 4.5rem;
  align-items: start;
}

.rks-historian__left {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.rks-historian__heading {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 3.4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: #231f1c;
  letter-spacing: -0.01em;
}

.rks-historian__image-wrap {
  width: 100%;
  max-width: 440px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.rks-historian__image {
  width: 100%;
  height: auto;
  display: block;
}

.rks-historian__right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.rks-historian__title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: #231f1c;
  line-height: 1.25;
}

.rks-historian__bio {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.rks-historian__bio p {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  line-height: 1.65;
  color: #444444;
}

.rks-historian__cta {
  align-self: flex-start;
  background-color: #803425;
  color: #ffffff;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--ease);
  margin-top: 0.25rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 14px rgba(128, 52, 37, 0.2);
}

.rks-historian__cta:hover {
  background-color: #5c2317;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(128, 52, 37, 0.3);
}

.rks-historian__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 1.75rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
}

.rks-pillar-item {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.rks-pillar-item__title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #803425;
  line-height: 1.3;
}

.rks-pillar-item__desc {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  line-height: 1.55;
  color: #555555;
}

/* --- RKS 4th Section: Eight Days Continuous Civilisational Thread (Itinerary) --- */
.rks-itinerary-section {
  background-color: #fff6e7;
  padding: 5rem var(--space-md) 6rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.rks-itinerary__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
}

.rks-itinerary__header {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 3.5rem;
  align-items: start;
}

.rks-itinerary__heading {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 3.6vw, 2.85rem);
  font-weight: 700;
  line-height: 1.15;
  color: #231f1c;
  letter-spacing: -0.01em;
}

.rks-itinerary__intro-p {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  line-height: 1.65;
  color: #444444;
  margin-top: 0.5rem;
}

/* Day Strip Navigation (7 Day Blocks) */
.rks-day-strip {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border: 1px solid rgba(0, 0, 0, 0.15);
  background-color: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.rks-day-step {
  padding: 1.1rem 0.85rem;
  border-right: 1px solid rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  cursor: pointer;
  transition: background-color var(--ease);
}

.rks-day-step:last-child {
  border-right: none;
}

.rks-day-step:hover {
  background-color: #fffaf0;
}

.rks-day-step__num {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #777777;
  text-transform: uppercase;
}

.rks-day-step__title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: #803425;
  line-height: 1.25;
}

.rks-day-step__desc {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  line-height: 1.35;
  color: #666666;
  margin-top: 0.15rem;
}

/* Accordion Controls */
.rks-accordion-controls {
  display: flex;
  gap: 0.75rem;
  margin-top: -0.5rem;
}

.rks-ctrl-btn {
  background-color: #eae5de;
  color: #231f1c;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 2px;
  padding: 0.45rem 1.15rem;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--ease);
}

.rks-ctrl-btn:hover {
  background-color: #dfd9d0;
  border-color: rgba(0, 0, 0, 0.25);
}

/* Accordion List */
.rks-accordion {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.rks-accordion-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.rks-accordion-item:last-child {
  border-bottom: none;
}

.rks-accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.35rem 0.5rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  font-weight: 600;
  color: #231f1c;
  transition: color var(--ease);
}

.rks-accordion-header:hover {
  color: #803425;
}

.rks-accordion-icon {
  font-size: 1.1rem;
  font-weight: 400;
  color: #666666;
  transition: transform 0.3s ease;
  margin-left: 1rem;
}

.rks-accordion-item.active .rks-accordion-icon {
  transform: rotate(180deg);
}

.rks-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 0.5rem;
}

.rks-accordion-body__content {
  padding-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  line-height: 1.65;
  color: #444444;
}

.rks-accordion-body__highlights {
  list-style: disc;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  color: #555555;
}

.rks-itinerary__notice {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-style: italic;
  color: #777777;
  margin-top: -0.75rem;
}

/* --- RKS 5th Section: Help Visitor Decide (Fit & Audience) --- */
.rks-fit-section {
  background-color: #fff6e7;
  padding: 5rem var(--space-md) 6rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.rks-fit__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.rks-fit__header {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 3.5rem;
  align-items: start;
}

.rks-fit__heading {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 3.6vw, 2.85rem);
  font-weight: 700;
  line-height: 1.15;
  color: #231f1c;
  letter-spacing: -0.01em;
}

.rks-fit__intro-p {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  line-height: 1.65;
  color: #444444;
  margin-top: 0.5rem;
}

/* 3 Audience Cards */
.rks-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.rks-audience-card {
  background-color: #fff2dc;
  border: 1px solid rgba(128, 52, 37, 0.12);
  border-radius: 4px;
  padding: 2.25rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.02);
}

.rks-audience-card__title {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 700;
  color: #231f1c;
}

.rks-audience-card__divider {
  width: 40px;
  height: 2px;
  background-color: #d8b894;
  margin: 0 auto;
}

.rks-audience-card__desc {
  font-family: var(--font-heading);
  font-size: 0.86rem;
  line-height: 1.6;
  color: #555555;
}

/* 2 Fit & Activity Note Cards */
.rks-fit-notes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.rks-fit-note-card {
  background-color: #fff2dc;
  border: 1px solid rgba(128, 52, 37, 0.12);
  border-radius: 4px;
  padding: 2.25rem 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.02);
}

.rks-fit-note-card__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #444444;
  text-transform: uppercase;
}

.rks-fit-note-card__title {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 700;
  color: #231f1c;
  margin-top: 0.2rem;
}

.rks-fit-note-card__desc {
  font-family: var(--font-heading);
  font-size: 0.86rem;
  line-height: 1.6;
  color: #555555;
  margin-top: 0.4rem;
}

/* --- RKS 6th Section: Live Departures and Price --- */
.rks-departures-section {
  background-color: #fff6e7;
  padding: 5rem var(--space-md) 6rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.rks-departures__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.rks-departures__header {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 3.5rem;
  align-items: start;
}

.rks-departures__heading {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 3.6vw, 2.85rem);
  font-weight: 700;
  line-height: 1.15;
  color: #231f1c;
  letter-spacing: -0.01em;
}

.rks-departures__intro-p {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  line-height: 1.65;
  color: #444444;
  margin-top: 0.5rem;
}

.rks-departure-box {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  padding: 2.5rem 2.5rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.rks-departure-box__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.rks-departure-box__col {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.rks-departure-box__col--right {
  align-items: flex-end;
  text-align: right;
}

.rks-departure-box__label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #777777;
  text-transform: uppercase;
}

.rks-departure-box__main {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  font-weight: 700;
  color: #231f1c;
  letter-spacing: 0.02em;
}

.rks-departure-box__sub {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  color: #555555;
  font-weight: 600;
}

.rks-departure-box__status {
  font-weight: 700;
  color: #176038;
}

.rks-departure-box__guide {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 1.5rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  line-height: 1.6;
  color: #555555;
}

.rks-departure-box__action-wrap {
  display: flex;
  margin-top: 0.25rem;
}

.rks-departure-btn {
  background-color: #eae5de;
  color: #231f1c;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  padding: 0.65rem 1.75rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--ease);
}

.rks-departure-btn:hover {
  background-color: #3d2b22;
  color: #ffffff;
  border-color: #3d2b22;
}

.rks-departures__note {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  line-height: 1.6;
  color: #777777;
  max-width: 780px;
}

/* --- RKS 7th Section: Inclusions Carousel & FAQs --- */
.rks-inclusions-faqs-section {
  background-color: #fff6e7;
  padding: 5rem var(--space-md) 6rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.rks-inclusions-faqs__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.rks-inclusions-faqs__header {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 3.5rem;
  align-items: start;
}

.rks-inclusions-faqs__heading {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 3.6vw, 2.85rem);
  font-weight: 700;
  line-height: 1.15;
  color: #231f1c;
  letter-spacing: -0.01em;
}

.rks-inclusions-faqs__intro-p {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  line-height: 1.65;
  color: #444444;
  margin-top: 0.5rem;
}

/* 4 Inclusions Carousel */
.rks-inclusions-carousel {
  position: relative;
  width: 100%;
}

.rks-inclusions-carousel__track-wrap {
  width: 100%;
  overflow: hidden;
  padding-top: 18px;
}

.rks-inclusions-carousel__track {
  display: flex;
  gap: 1.75rem;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.rks-inclusion-card {
  position: relative;
  flex: 0 0 calc((100% - 1.75rem) / 2);
  min-width: calc((100% - 1.75rem) / 2);
  background-color: #f0eeea;
  border-radius: 12px;
  padding: 2.25rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.rks-inclusion-card__badge {
  position: absolute;
  top: -16px;
  left: 2rem;
  background-color: #803425;
  color: #ffffff;
  padding: 0.35rem 1.4rem;
  border-radius: 20px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 10px rgba(128, 52, 37, 0.25);
}

.rks-inclusion-card__desc {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  line-height: 1.65;
  color: #444444;
  margin-top: 0.25rem;
}

/* Inclusions Dots */
.rks-inclusions-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.5rem;
}

.rks-inclusions-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(61, 43, 34, 0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.rks-inclusions-dot.active {
  background-color: #803425;
  width: 22px;
  border-radius: 4px;
}

/* FAQs List */
.rks-faqs-accordion {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  margin-top: 1rem;
}

.rks-faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.rks-faq-item:last-child {
  border-bottom: none;
}

.rks-faq-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.35rem 0.5rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: clamp(0.98rem, 1.4vw, 1.1rem);
  font-weight: 600;
  color: #231f1c;
  transition: color var(--ease);
}

.rks-faq-header:hover {
  color: #803425;
}

.rks-faq-icon {
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1;
  color: #231f1c;
  transition: transform 0.3s ease;
  margin-left: 1rem;
}

.rks-faq-item.active .rks-faq-icon {
  transform: rotate(45deg);
}

.rks-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 0.5rem;
}

.rks-faq-body__content {
  padding-bottom: 1.5rem;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  line-height: 1.65;
  color: #444444;
}

/* --- RKS 8th Section: Request Journey Details (Final Form Section) --- */
.rks-request-details-section {
  background-color: #fff6e7;
  padding: 5.5rem var(--space-md) 6rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.rks-request-details__inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2.25rem;
}

.rks-request-details__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 800px;
}

.rks-request-details__heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: #231f1c;
  letter-spacing: -0.01em;
}

.rks-request-details__sub {
  font-family: var(--font-heading);
  font-size: 0.94rem;
  line-height: 1.65;
  color: #444444;
  max-width: 740px;
}

.rks-request-details__form-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: #231f1c;
  margin-top: 0.75rem;
}

.rks-request-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}

.rks-form__grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.rks-form__grid--full {
  grid-column: span 2;
}

.rks-input,
.rks-select,
.rks-textarea {
  width: 100%;
  background-color: #e5e7eb;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  padding: 0.95rem 1.15rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: #231f1c;
  outline: none;
  transition: border-color var(--ease), background-color var(--ease);
}

.rks-input::placeholder,
.rks-textarea::placeholder {
  color: #666666;
}

.rks-input:focus,
.rks-select:focus,
.rks-textarea:focus {
  background-color: #ffffff;
  border-color: #803425;
}

.rks-select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23333333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.15rem center;
  background-size: 14px;
  padding-right: 2.5rem;
}

.rks-textarea {
  resize: vertical;
  min-height: 120px;
}

.rks-submit-btn {
  background-color: #231f1c;
  color: #ffffff;
  padding: 0.95rem 2.75rem;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: all var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.rks-submit-btn:hover {
  background-color: #803425;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(128, 52, 37, 0.25);
}

.rks-form__notice {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: #666666;
  max-width: 680px;
}

.rks-request-details__actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

.btn--brown-solid {
  background-color: #803425;
  color: #ffffff;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--ease);
  box-shadow: 0 4px 14px rgba(128, 52, 37, 0.25);
}

.btn--brown-solid:hover {
  background-color: #5c2317;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(128, 52, 37, 0.35);
}

.btn--brown-outline {
  background-color: transparent;
  color: #803425;
  border: 1px solid #803425;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--ease);
}

.btn--brown-outline:hover {
  background-color: #803425;
  color: #ffffff;
  transform: translateY(-2px);
}

/* ============================================================
   JOURNEYS PAGE STYLES (journeys.html)
   ============================================================ */
.journeys-hero {
  position: relative;
  min-height: 560px;
  background-image: url('images/journey-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 6.5rem var(--space-md) 5.5rem;
  overflow: hidden;
}

.journeys-hero__overlay {
  display: none;
}

.journeys-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
}

.journeys-hero__content {
  max-width: 680px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  color: #ffffff;
}

.journeys-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.journeys-hero__tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.4;
  color: #ffffff;
}

.journeys-hero__desc {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 640px;
}

.journeys-hero__desc p {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
}

.journeys-hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.btn--journeys-solid {
  background-color: #803425;
  color: #ffffff;
  padding: 0.8rem 2rem;
  border-radius: 40px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all var(--ease);
  box-shadow: 0 4px 14px rgba(128, 52, 37, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid transparent;
}

.btn--journeys-solid:hover {
  background-color: #5c2317;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(128, 52, 37, 0.45);
}

.btn--journeys-white {
  background-color: #ffffff;
  color: #803425;
  padding: 0.8rem 2rem;
  border-radius: 40px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all var(--ease);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid transparent;
}

.btn--journeys-white:hover {
  background-color: #fff6e7;
  color: #5c2317;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/* --- Journeys 2nd Section: Ways of Seeing --- */
.journeys-ways-section {
  background-color: #fff8e9;
  padding: 5.5rem var(--space-md) 6rem;
}

.journeys-ways__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
}

.journeys-ways__top {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4.5rem;
  align-items: center;
}

/* 5-Image Carousel Container */
.journeys-ways__carousel-wrap {
  position: relative;
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
  aspect-ratio: 1.15 / 1;
  background-color: #1a1513;
}

.journeys-ways__carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.journeys-ways__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  z-index: 1;
}

.journeys-ways__slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.journeys-ways__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Right Content */
.journeys-ways__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.journeys-ways__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: #662d15;
  letter-spacing: -0.01em;
}

.journeys-ways__desc {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.journeys-ways__p {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  line-height: 1.68;
  color: #444444;
}

/* Bottom 3 Pillars Grid */
.journeys-ways__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem;
  border-top: 1px solid rgba(128, 52, 37, 0.12);
  padding-top: 3.5rem;
}

.journeys-pillar {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.journeys-pillar__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #662d15;
  text-transform: uppercase;
}

.journeys-pillar__desc {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  line-height: 1.65;
  color: #444444;
}

/* --- Journeys 3rd Section: Rama-Krishna-Shiva Showcase --- */
.journeys-showcase-section {
  background-color: #ffffff;
  padding: 5.5rem var(--space-md) 6rem;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.journeys-showcase__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.journeys-showcase__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.journeys-showcase__content {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.journeys-showcase__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: #662d15;
  letter-spacing: -0.01em;
}

.journeys-showcase__tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 700;
  line-height: 1.35;
  color: #231f1c;
}

.journeys-showcase__desc {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.journeys-showcase__p {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  line-height: 1.68;
  color: #444444;
}

.journeys-showcase__fit-note {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  line-height: 1.65;
  color: #444444;
  margin-top: 0.5rem;
}

.journeys-showcase__fit-label {
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #231f1c;
  text-transform: uppercase;
}

.journeys-showcase__image-wrap {
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
  aspect-ratio: 0.82 / 1;
  background-color: #1a1513;
}

.journeys-showcase__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.journeys-showcase__action {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.btn--showcase-solid {
  background-color: #803425;
  color: #ffffff;
  padding: 0.85rem 2.25rem;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  transition: all var(--ease);
  box-shadow: 0 4px 14px rgba(128, 52, 37, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn--showcase-solid:hover {
  background-color: #5c2317;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(128, 52, 37, 0.4);
}

/* Dark/Brown Showcase Variant (Krishna Braj Yatra) */
.journeys-showcase-section--brown {
  background-color: #662d15;
  color: #ffffff;
}

.journeys-showcase__grid--reverse {
  grid-template-columns: 1fr 1.15fr;
}

.journeys-showcase-section--brown .journeys-showcase__title {
  color: #ffffff;
}

.journeys-showcase-section--brown .journeys-showcase__tagline {
  color: #ffffff;
}

.journeys-showcase-section--brown .journeys-showcase__subtagline {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 500;
  line-height: 1.35;
  color: #f5ece6;
  margin-top: -0.25rem;
}

.journeys-showcase-section--brown .journeys-showcase__p {
  color: #f0ece9;
}

.journeys-showcase-section--brown .journeys-showcase__fit-note {
  color: #f0ece9;
}

.journeys-showcase-section--brown .journeys-showcase__fit-label {
  color: #ffffff;
}

.btn--showcase-white {
  background-color: #ffffff;
  color: #662d15;
  padding: 0.85rem 2.25rem;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  transition: all var(--ease);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn--showcase-white:hover {
  background-color: #fff6e7;
  color: #5c2317;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

/* --- Journeys 6th Section: What Do You Want to Understand? --- */
.journeys-understand-section {
  position: relative;
  background-image: url('images/what-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 6rem var(--space-md) 6.5rem;
  overflow: hidden;
}

.journeys-understand__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(30, 20, 15, 0.88) 0%,
      rgba(30, 20, 15, 0.82) 50%,
      rgba(30, 20, 15, 0.92) 100%);
  z-index: 1;
}

.journeys-understand__inner {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.journeys-understand__header {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 720px;
}

.journeys-understand__title {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 3.6vw, 2.85rem);
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.journeys-understand__subtitle {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  line-height: 1.6;
  color: #f0ece9;
}

/* 3 Cards Grid */
.journeys-understand__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.understand-card {
  background-color: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform var(--ease), box-shadow var(--ease);
}

.understand-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.understand-card__image-wrap {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-color: #1a1513;
}

.understand-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.understand-card:hover .understand-card__image {
  transform: scale(1.04);
}

.understand-card__body {
  padding: 1.75rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  flex: 1;
}

.understand-card__title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #662d15;
  text-transform: uppercase;
}

.understand-card__desc {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  line-height: 1.6;
  color: #444444;
}

.understand-card__tag {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: #662d15;
  margin-top: auto;
  padding-top: 0.85rem;
}

/* Callout Box below cards */
.journeys-understand__callout {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  text-align: center;
  margin-top: 1rem;
}

.journeys-understand__callout-text {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  line-height: 1.65;
  color: #f0ece9;
  max-width: 720px;
  margin: 0 auto;
}

.btn--understand-pill {
  background-color: #ffffff;
  color: #662d15;
  padding: 0.75rem 2rem;
  border-radius: 40px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all var(--ease);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn--understand-pill:hover {
  background-color: #fff6e7;
  color: #5c2317;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

/* --- Journeys 7th Section: Choose the Journey. Then Choose the Departure --- */
.journeys-choose-section {
  background-color: #583300;
  padding: 6rem var(--space-md) 6.5rem;
  color: #ffffff;
  text-align: center;
}

.journeys-choose__inner {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.journeys-choose__title {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 3.6vw, 2.85rem);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.journeys-choose__desc {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  line-height: 1.7;
  color: #f0ece9;
  max-width: 760px;
}

.journeys-choose__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.btn--choose-pill {
  background-color: #ffffff;
  color: #481b0c;
  padding: 0.85rem 2.25rem;
  border-radius: 40px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--ease);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn--choose-pill:hover {
  background-color: #fff6e7;
  color: #5c2317;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

/* --- Journeys 8th Section: Coming in 2027 --- */
.journeys-coming-section {
  background-color: #ffffff;
  padding: 5.5rem var(--space-md) 6rem;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.journeys-coming__inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.journeys-coming__title {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 3.8vw, 2.9rem);
  font-weight: 700;
  color: #662d15;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
}

.journeys-coming__subtitles {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.journeys-coming__subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  font-weight: 700;
  color: #1a1513;
  line-height: 1.35;
}

.btn--coming-solid {
  background-color: #5c2317;
  color: #ffffff;
  padding: 0.85rem 2.4rem;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  transition: all var(--ease);
  box-shadow: 0 4px 14px rgba(92, 35, 23, 0.28);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.btn--coming-solid:hover {
  background-color: #42160d;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(92, 35, 23, 0.38);
}

/* ==================== RESPONSIVE ====================*/

/* -- Tablet (≤ 900px) -- */
@media (max-width: 900px) {
  .navbar__links {
    gap: 0;
  }

  .navbar__link {
    font-size: 0.82rem;
    padding: 0.4rem 0.55rem;
  }

  .began-section__inner {
    gap: var(--space-lg);
  }

  .outer-journey-section__cols {
    grid-template-columns: 280px 1fr;
    gap: var(--space-lg);
  }

  .who-section__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .founder-section__inner {
    grid-template-columns: 1fr 300px;
    gap: var(--space-lg);
  }

  .contact-routes__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-stepper {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
  }

  .contact-stepper::before {
    display: none;
  }

  .historika-meaning__inner {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .historika-meaning__image-wrap {
    max-width: 500px;
    margin: 0 auto;
  }

  .historika-stepper {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1rem;
  }

  .historika-stepper::before {
    display: none;
  }

  .historika-evidence__cols {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .historika-evidence__image-wrap {
    max-width: 500px;
    margin: 0 auto;
  }

  .historika-mapping__grid {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin: 0 auto;
  }

  .historika-public__grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  .historika-disclaimer__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 680px;
    margin: 0 auto;
  }

  .founder-stats {
    padding: 1.1rem 0.75rem;
    overflow: hidden;
  }

  .founder-stats__wrapper {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
  }

  .founder-stats__grid {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 0.85rem;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
    width: 100%;
  }

  .founder-stat-item {
    flex: 0 0 calc((100% - 1.7rem) / 3);
    min-width: calc((100% - 1.7rem) / 3);
    padding: 0.25rem 0.15rem;
    gap: 0.2rem;
  }

  .founder-stat-item:not(:last-child)::after {
    display: none;
  }

  .founder-stats__dots {
    display: none !important;
  }

  .founder-story__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .founder-story__image-wrap {
    max-width: 440px;
    margin: 0 auto;
    position: static;
  }

  .founder-book-card {
    flex: 0 0 calc((100% - 1.5rem) / 2);
    min-width: calc((100% - 1.5rem) / 2);
  }

  .carousel-nav-btn--prev {
    left: -12px;
  }

  .carousel-nav-btn--next {
    right: -12px;
  }

  .founder-org-block {
    grid-template-columns: 1fr;
  }

  .founder-org-block--reverse .founder-org-block__image-wrap {
    order: -1;
  }

  .founder-org-block__image-wrap {
    min-height: 280px;
    max-height: 380px;
  }

  .founder-org-block__content {
    padding: 2.25rem 2rem;
  }

  .founder-approach-card {
    flex: 0 0 calc((100% - 1.5rem) / 2);
    min-width: calc((100% - 1.5rem) / 2);
  }

  .founder-feels__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .founder-feels__image-wrap {
    max-width: 480px;
    margin: 0 auto;
    position: static;
  }

  .rks-features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.25rem 1.25rem;
  }

  .rks-features-strip {
    margin-top: -2.5rem;
  }

  .rks-booking__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 520px;
    margin: 0 auto;
  }

  .rks-three-landscapes__intro {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .rks-three-cards-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 520px;
    margin: 0 auto;
  }

  .rks-historian__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .rks-historian__image-wrap {
    max-width: 380px;
    margin: 0 auto;
  }

  .rks-historian__pillars {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .rks-itinerary__header {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .rks-day-strip {
    grid-template-columns: repeat(4, 1fr);
  }

  .rks-fit__header,
  .rks-departures__header {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .rks-audience-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .rks-fit-notes-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .rks-departure-box__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .rks-departure-box__col--right {
    align-items: flex-start;
    text-align: left;
  }

  .rks-inclusions-faqs__header {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .rks-inclusion-card {
    flex: 0 0 100%;
    min-width: 100%;
  }
}

/* -- Mobile (≤ 768px) -- */
@media (max-width: 768px) {
  :root {
    --nav-height: 60px;
  }

  /* --- Navbar & Mobile Drawer --- */
  .navbar__hamburger {
    display: flex;
  }

  .navbar__menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--clr-white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 1.25rem 1.25rem 2rem;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s ease;
    overflow-y: auto;
    z-index: 999;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  }

  .navbar__menu.open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .navbar__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }

  .navbar__links li {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .navbar__link {
    font-size: 1rem;
    font-weight: 500;
    padding: 0.85rem 0;
    display: block;
    width: 100%;
    color: var(--clr-charcoal);
  }

  .navbar__link::after {
    display: none;
  }

  .navbar__cta {
    margin-top: 1.5rem;
    width: 100%;
    text-align: center;
    padding: 0.85rem 1.25rem;
    font-size: 0.95rem;
    border-radius: 50px;
  }

  /* --- Global Section Spacing & Typography on Mobile --- */
  .about-section,
  .began-section,
  .story-section,
  .two-orgs-section,
  .journey-diff-section,
  .outer-journey-section,
  .who-section,
  .best-india-section,
  .beliefs-section,
  .mission-section,
  .founder-section,
  .begun-final-section {
    padding: 2.25rem 1.25rem;
  }

  .about-section__title,
  .story-section__title,
  .two-orgs-section__title,
  .journey-diff-section__title,
  .outer-journey-section__title,
  .who-section__title,
  .best-india-section__title,
  .beliefs-section__title,
  .begun-final-section__title {
    font-size: clamp(1.35rem, 5.5vw, 1.75rem);
    line-height: 1.3;
    margin-bottom: 0.85rem;
  }

  .about-section__para,
  .began-section__para,
  .story-section__para,
  .two-orgs-section__para,
  .outer-journey-para,
  .beliefs-section__item,
  .mission-card__desc,
  .founder-section__bio p,
  .begun-final-section__body p {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  /* --- Hero Section --- */
  .hero {
    margin-top: var(--nav-height);
  }

  .hero__content {
    bottom: 5%;
    padding: 0.35rem 0.75rem;
  }

  .hero__cta {
    font-size: 0.72rem;
    padding: 0.42rem 0.85rem;
    border-radius: 50px;
    white-space: nowrap;
    backdrop-filter: blur(6px);
  }

  /* --- Began Section --- */
  .began-section__inner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .began-section__image-wrap {
    width: 100%;
    height: 240px;
    border-radius: 14px;
    overflow: hidden;
  }

  .began-section__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .began-section__title {
    font-size: 0.98rem;
    padding: 0.45rem 1.1rem;
    margin-bottom: 0.75rem;
  }

  /* --- Story Section --- */
  .story-section__inner {
    gap: 1.25rem;
  }

  .story-section__image-wrap {
    width: 100%;
    height: 210px;
    border-radius: 14px;
    overflow: hidden;
  }

  .story-section__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  /* --- Two Organisations Section --- */
  .two-orgs-section__card {
    border-radius: 16px;
    padding: 1.75rem 1.25rem;
    background-size: cover;
    background-position: center;
  }

  .btn--ghost-white {
    width: 100%;
    text-align: center;
    padding: 0.75rem 1rem;
    font-size: 0.88rem;
  }

  /* --- Journey Different Section --- */
  .journey-diff-section__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .journey-diff-card {
    padding: 1.25rem 1.15rem;
    border-radius: 12px;
  }

  .journey-diff-card__title {
    font-size: 0.92rem;
    padding: 0.35rem 0.75rem;
  }

  .journey-diff-card__desc {
    font-size: 0.88rem;
    line-height: 1.65;
  }

  .journey-diff-section__tagline {
    font-size: 0.92rem;
    margin-top: 0.25rem;
  }

  /* --- Outer Journey Section --- */
  .outer-journey-section__inner {
    gap: 1.25rem;
  }

  .outer-journey-section__cols {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .outer-journey-section__image-wrap {
    width: 100%;
    height: 260px;
    border-radius: 14px;
    overflow: hidden;
  }

  .outer-journey-section__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
  }

  .outer-journey-rasa {
    padding: 0.5rem 0;
  }

  .outer-journey-rasa__item {
    font-size: 0.92rem;
  }

  .outer-journey-footer__bold,
  .outer-journey-footer__para,
  .outer-journey-footer__italic {
    font-size: 0.92rem;
  }

  /* --- Who Section --- */
  .who-section__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .who-card {
    border-radius: 14px;
    padding-bottom: 1.25rem;
  }

  .who-card__image-wrap {
    aspect-ratio: 16 / 10;
  }

  .who-card__title {
    font-size: 1.05rem;
    padding: 0 1rem;
  }

  .who-card__desc {
    font-size: 0.88rem;
    padding: 0 1rem;
  }

  /* --- Seeing the Best of India Carousel --- */
  .best-india-section {
    padding: 1.25rem 1.25rem 1.5rem;
  }

  .best-india-section__inner {
    gap: 0.85rem;
  }

  .best-india-section__title {
    margin-bottom: 0.25rem;
  }

  .best-carousel {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
  }

  .best-carousel__track {
    gap: 0;
  }

  .best-india-card {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
    padding: 1.15rem 1rem;
    border-radius: 12px;
    box-sizing: border-box;
    gap: 0.4rem;
  }

  .best-india-card__title {
    font-size: 0.95rem;
    line-height: 1.35;
  }

  .best-india-card__desc {
    font-size: 0.84rem;
    line-height: 1.55;
  }

  .best-carousel__dots {
    margin-top: 0.75rem;
    gap: 0.5rem;
  }

  .best-carousel__dot {
    width: 8px;
    height: 8px;
  }

  /* --- Mission & Vision Section --- */
  .mission-section__inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .mission-card {
    gap: 0.75rem;
  }

  .mission-card__title {
    font-size: 1.9rem;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
  }

  /* --- Founder Section --- */
  .founder-section__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .founder-section__image-wrap {
    order: -1;
    max-width: 260px;
    margin: 0 auto;
    border-radius: 14px;
  }

  .founder-section__eyebrow {
    font-size: 0.68rem;
    margin-bottom: 0.65rem;
  }

  .founder-section__name {
    font-size: 2.2rem;
  }

  .founder-section__role {
    font-size: 1.25rem;
  }

  .founder-section__org {
    font-size: 1.05rem;
  }

  .founder-section__divider {
    margin: 0.6rem 0 0.85rem;
  }

  .founder-section__link {
    font-size: 0.95rem;
    margin-top: 0.25rem;
  }

  /* --- The Journey Has Just Begun Section --- */
  .begun-final-section__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .begun-final-section__image {
    max-width: 220px;
    margin: 0 auto;
  }

  .begun-final-section__poem {
    margin-bottom: 1.25rem;
  }

  .begun-final-section__poem p {
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .begun-final-section__actions {
    gap: 0.65rem;
  }

  .begun-final-section__btn-row {
    flex-direction: column;
    gap: 0.65rem;
  }

  .btn--brown-pill {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1rem;
    font-size: 0.86rem;
  }



  /* --- Policy Page Mobile --- */
  .policy-page {
    padding: calc(var(--nav-height) + 1.25rem) 1.25rem 2.5rem;
  }

  .policy-header__title {
    font-size: 1.85rem;
  }

  .policy-section__title {
    font-size: 1.2rem;
  }

  .policy-table th,
  .policy-table td {
    padding: 0.65rem 0.75rem;
    font-size: 0.85rem;
  }

  /* --- Contact Page Mobile --- */
  .contact-hero {
    min-height: auto;
  }

  .contact-hero__content {
    padding: 2.5rem 1.25rem;
    gap: 0.85rem;
  }

  .contact-hero__title {
    font-size: 1.85rem;
  }

  .contact-hero__subtitle {
    font-size: 1.05rem;
  }

  .contact-hero__desc {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .contact-hero__note {
    font-size: 0.82rem;
    line-height: 1.5;
  }

  .contact-hero__actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    gap: 0.75rem;
  }

  .contact-hero__actions .btn {
    width: 100%;
    justify-content: center;
    font-size: 0.82rem;
    padding: 0.6rem 1rem;
  }

  .contact-help-section {
    padding: 2.25rem 1.25rem 3.25rem;
  }

  .contact-help-section__inner {
    gap: 1.5rem;
  }

  .contact-help-section__title {
    font-size: 1.5rem;
  }

  .contact-help-grid {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .contact-card {
    padding: 1.35rem 1.15rem;
    gap: 0.5rem;
  }

  .contact-card__title {
    font-size: 1.05rem;
  }

  .contact-card__desc {
    font-size: 0.85rem;
  }

  /* --- Contact Form Section Mobile --- */
  .contact-form-section {
    padding: 2.25rem 1.25rem 3.25rem;
  }

  .contact-form-section__inner {
    gap: 1.25rem;
  }

  .contact-form-section__title {
    font-size: 1.5rem;
  }

  .contact-form-section__subtitle {
    font-size: 0.88rem;
  }

  .contact-form-card {
    padding: 1.5rem 1.15rem;
    border-radius: 18px;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-form__radio-group {
    flex-direction: column;
    gap: 0.5rem;
  }

  .contact-form__radio-pill {
    padding: 0.5rem 0.85rem;
    font-size: 0.82rem;
  }

  .contact-form__submit-btn {
    width: 100%;
    justify-content: center;
    font-size: 0.88rem;
    padding: 0.7rem 1.5rem;
  }

  /* --- Contact Routes Mobile --- */
  .contact-routes-section {
    padding: 2.25rem 1.25rem 3.25rem;
  }

  .contact-routes__inner {
    gap: 1.5rem;
  }

  .contact-routes__title {
    font-size: 1.5rem;
  }

  .contact-routes__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .route-card {
    padding: 1.35rem 1.15rem;
    gap: 0.65rem;
  }

  /* --- Contact Process Mobile --- */
  .contact-process-section {
    padding: 2.5rem 1.25rem 3.5rem;
  }

  .contact-process__inner {
    gap: 1.75rem;
  }

  .contact-process__title {
    font-size: 1.5rem;
  }

  .contact-stepper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-stepper::before {
    display: none;
  }

  .contact-process__actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    gap: 0.75rem;
  }

  .contact-process__actions .btn {
    width: 100%;
    justify-content: center;
    font-size: 0.82rem;
    padding: 0.6rem 1rem;
  }

  /* --- FAQ Page Mobile --- */
  .faq-hero {
    padding: calc(var(--nav-height) + 1.25rem) 1.25rem 2rem;
  }

  .faq-hero__title {
    font-size: 1.85rem;
  }

  .faq-hero__subtitle {
    font-size: 1.05rem;
  }

  .faq-content {
    padding: 2rem 1.25rem 3.5rem;
    gap: 2.25rem;
  }

  .faq-category__title {
    font-size: 1.25rem;
  }

  .faq-item__trigger {
    padding: 1rem 1.15rem;
    font-size: 0.95rem;
  }

  .faq-item__content {
    padding: 0 1.15rem 1.15rem;
    font-size: 0.9rem;
  }

  .faq-contact-section {
    padding: 1.75rem 1.15rem;
    border-radius: 16px;
  }

  .faq-contact__title {
    font-size: 1.4rem;
  }

  .faq-contact__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .faq-contact__actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    gap: 0.75rem;
  }

  .faq-contact__actions .btn {
    width: 100%;
    justify-content: center;
    font-size: 0.82rem;
    padding: 0.6rem 1rem;
  }

  /* --- Historika Page Mobile --- */
  .historika-hero {
    min-height: auto;
  }

  .historika-hero__content {
    padding: 2.5rem 1.25rem;
    gap: 0.85rem;
  }

  .historika-hero__title {
    font-size: 1.85rem;
  }

  .historika-hero__subtitle {
    font-size: 1.05rem;
  }

  .historika-hero__desc {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .historika-hero__actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    gap: 0.75rem;
  }

  .historika-hero__actions .btn {
    width: 100%;
    justify-content: center;
    font-size: 0.82rem;
    padding: 0.6rem 1rem;
  }

  .historika-hero__tagline {
    font-size: 0.68rem;
    line-height: 1.4;
  }

  .historika-meaning-section {
    padding: 2.5rem 1.25rem 3.5rem;
  }

  .historika-meaning__inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .historika-meaning__image-wrap {
    border-radius: 18px;
  }

  .historika-meaning__title {
    font-size: 1.45rem;
  }

  .historika-meaning__content p {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  /* --- Historika Areas Mobile --- */
  .historika-areas-section {
    padding: 2.5rem 1.25rem 3.5rem;
  }

  .historika-areas__inner {
    gap: 1.75rem;
  }

  .historika-areas__title {
    font-size: 1.6rem;
  }

  .historika-areas__grid {
    gap: 1rem;
  }

  .historika-areas__row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .historika-areas__divider {
    display: none;
  }

  .historika-area-card {
    padding: 1.35rem 1.15rem;
  }

  /* --- Historika Tools Mobile --- */
  .historika-tools-section {
    padding: 2.5rem 1.25rem 3.5rem;
  }

  .historika-tools__inner {
    gap: 1.75rem;
  }

  .historika-tools__title {
    font-size: 1.6rem;
  }

  .historika-stepper {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1rem;
  }

  .historika-stepper::before {
    display: none;
  }

  /* --- Historika Evidence Mobile --- */
  .historika-evidence-section {
    padding: 2.5rem 1.25rem 3.5rem;
  }

  .historika-evidence__inner {
    gap: 1.75rem;
  }

  .historika-evidence__cols {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .historika-evidence__image-wrap {
    border-radius: 18px;
  }

  .historika-evidence__title {
    font-size: 1.45rem;
  }

  .historika-evidence__content p {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .historika-evidence__flow-bar {
    font-size: 0.8rem;
    padding: 0.75rem 1.15rem;
    line-height: 1.5;
    border-radius: 10px;
  }

  /* --- Historika Mapping Mobile --- */
  .historika-mapping-section {
    padding: 2.75rem 1.25rem 3.5rem;
  }

  .historika-mapping__inner {
    gap: 1.75rem;
  }

  .historika-mapping__title {
    font-size: 1.6rem;
  }

  .historika-mapping__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .historika-map-card {
    grid-template-columns: 1fr;
  }

  .historika-map-card__image-wrap {
    height: 180px;
    order: -1;
  }

  .historika-map-card__content {
    padding: 1.25rem 1.15rem;
  }

  /* --- Historika Public Mobile --- */
  .historika-public-section {
    padding: 2.75rem 1.25rem 3.5rem;
  }

  .historika-public__inner {
    gap: 1.75rem;
  }

  .historika-public__title {
    font-size: 1.6rem;
  }

  .historika-public__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .historika-public-card {
    padding: 1.35rem 1.25rem 1.5rem;
  }

  /* --- Historika Orgs Mobile --- */
  .historika-orgs-section {
    padding: 2.75rem 1.25rem 3.5rem;
  }

  .historika-orgs__inner {
    gap: 1.75rem;
  }

  .historika-orgs__title {
    font-size: 1.6rem;
  }

  .historika-orgs__diagram-card {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    padding: 1.25rem 1.15rem;
  }

  .historika-orgs__arrow-wrap {
    transform: rotate(90deg);
    margin: 0.25rem 0;
  }

  /* --- Historika Final CTA Mobile --- */
  .historika-final-cta-section {
    padding: 3rem 1.25rem 3.75rem;
  }

  .historika-final-cta__inner {
    gap: 1.5rem;
  }

  .historika-final-cta__title {
    font-size: 1.6rem;
  }

  .historika-final-cta__actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    gap: 0.75rem;
  }

  .historika-final-cta__actions .btn {
    width: 100%;
    justify-content: center;
    font-size: 0.82rem;
    padding: 0.6rem 1rem;
  }

  /* --- Historika Disclaimer Mobile --- */
  .historika-disclaimer-section {
    padding: 2.75rem 1.25rem 3.5rem;
  }

  .historika-disclaimer__inner {
    gap: 1.5rem;
  }

  .historika-disclaimer__title {
    font-size: 1.6rem;
  }

  .historika-disclaimer__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .historika-disclaimer__col {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  /* --- Founder Mobile --- */
  .founder-stats {
    padding: 0.9rem 0.5rem;
    overflow: hidden;
  }

  .founder-stats__wrapper {
    width: 100%;
    overflow: hidden;
  }

  .founder-stats__grid {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 0.5rem;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
    width: 100%;
  }

  .founder-stat-item {
    flex: 0 0 calc((100% - 1rem) / 3);
    min-width: calc((100% - 1rem) / 3);
    padding: 0.2rem 0.05rem;
    gap: 0.15rem;
  }

  .founder-stat-item__num {
    font-size: clamp(1.05rem, 3.5vw, 1.25rem);
    white-space: nowrap;
    line-height: 1.1;
  }

  .founder-stat-item__label {
    font-size: clamp(0.64rem, 2vw, 0.72rem);
    line-height: 1.15;
  }

  .founder-intro-section {
    padding: 3rem 1.25rem 3.5rem;
  }

  .founder-intro__title {
    font-size: 1.65rem;
  }

  .founder-intro__actions {
    flex-direction: column;
    width: 100%;
  }

  .founder-intro__actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  /* --- Founder Why Section Mobile --- */
  .founder-why-section {
    padding: 3rem 1.25rem 3.5rem;
  }

  .founder-why__inner {
    gap: 1.75rem;
  }

  .founder-why__title {
    font-size: 1.45rem;
  }

  .founder-why__content p {
    font-size: 0.92rem;
    line-height: 1.65;
    text-align: left;
  }

  .founder-why__tagline {
    font-size: 0.95rem;
    text-align: center;
  }

  /* --- Founder Story Section Mobile --- */
  .founder-story-section {
    padding: 3rem 1.25rem 3.5rem;
  }

  .founder-story__inner {
    gap: 2rem;
  }

  .founder-story__title {
    font-size: 1.4rem;
  }

  .founder-story__subtitle {
    font-size: 0.88rem;
  }

  .founder-story__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .founder-story__content p {
    font-size: 0.9rem;
    line-height: 1.65;
  }

  /* --- Founder Books Mobile --- */
  .founder-books-section {
    padding: 3rem 1.25rem 3.5rem;
  }

  .founder-books__inner {
    gap: 1.75rem;
  }

  .founder-books__title {
    font-size: 1.45rem;
  }

  .founder-book-card {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .carousel-nav-btn {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .carousel-nav-btn--prev {
    left: -10px;
  }

  .carousel-nav-btn--next {
    right: -10px;
  }

  /* --- Founder Two Orgs Mobile --- */
  .founder-two-orgs-section {
    padding: 3rem 1.25rem 3.5rem;
  }

  .founder-two-orgs__inner {
    gap: 2rem;
  }

  .founder-two-orgs__title {
    font-size: 1.4rem;
  }

  .founder-org-block__content {
    padding: 1.75rem 1.25rem;
  }

  .founder-org-block__heading {
    font-size: 1.08rem;
  }

  .founder-org-block__content p {
    font-size: 0.85rem;
    line-height: 1.6;
  }

  /* --- Founder Approach Mobile --- */
  .founder-approach-section {
    padding: 3rem 1.25rem 3.5rem;
  }

  .founder-approach__inner {
    gap: 1.75rem;
  }

  .founder-approach__title {
    font-size: 1.45rem;
  }

  .founder-approach-card {
    flex: 0 0 100%;
    min-width: 100%;
    padding: 1.75rem 1.35rem 2rem;
  }

  /* --- Founder Feels Mobile --- */
  .founder-feels-section {
    padding: 3rem 1.25rem 3.5rem;
  }

  .founder-feels__inner {
    gap: 2rem;
  }

  .founder-feels__title {
    font-size: 1.4rem;
  }

  .founder-feels__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .founder-feels__heading {
    font-size: 1.15rem;
  }

  .founder-cta-box {
    padding: 2.25rem 1.25rem;
    border-radius: 16px;
  }

  .founder-cta-box__title {
    font-size: 1.35rem;
  }

  .founder-cta-box__actions {
    width: 100%;
    flex-direction: column;
    gap: 0.85rem;
  }

  .founder-cta-box__actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* --- RKS Page Mobile --- */
  .rks-hero {
    min-height: auto;
    padding: calc(var(--nav-height) + 2rem) 1.25rem 4rem;
  }

  .rks-hero__content {
    margin-bottom: 1.5rem;
  }

  .rks-hero__title {
    font-size: 1.85rem;
  }

  .rks-hero__tagline {
    font-size: 1.05rem;
  }

  .rks-hero__desc {
    font-size: 0.88rem;
  }

  .rks-hero__actions {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .rks-hero__actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .rks-features-strip {
    margin-top: 0;
    padding: 2.25rem 1.25rem;
    margin-bottom: 0;
  }

  .rks-features__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .rks-booking-section {
    padding: 2.5rem 1.25rem 3.5rem;
  }

  .rks-booking__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* --- RKS Three Landscapes Mobile --- */
  .rks-three-landscapes-section {
    padding: 3.25rem 1.25rem 3.75rem;
  }

  .rks-three-landscapes__inner {
    gap: 2.25rem;
  }

  .rks-three-landscapes__intro {
    gap: 1.75rem;
  }

  .rks-three-landscapes__heading {
    font-size: 1.85rem;
  }

  .rks-three-landscapes__subheading {
    font-size: 1.05rem;
  }

  .rks-three-landscapes__story p {
    font-size: 0.88rem;
  }

  .rks-three-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .rks-landscape-card__image-wrap {
    height: 210px;
  }

  .rks-landscape-card__body {
    padding: 1.5rem 1.25rem 1.6rem;
  }

  /* --- RKS Historian Mobile --- */
  .rks-historian-section {
    padding: 3rem 1.25rem 3.5rem;
  }

  .rks-historian__inner {
    gap: 2.25rem;
  }

  .rks-historian__heading {
    font-size: 1.85rem;
  }

  .rks-historian__title {
    font-size: 1.25rem;
  }

  .rks-historian__cta {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .rks-historian__pillars {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* --- RKS Itinerary Mobile --- */
  .rks-itinerary-section {
    padding: 3rem 1.25rem 3.5rem;
  }

  .rks-itinerary__inner {
    gap: 2rem;
  }

  .rks-itinerary__heading {
    font-size: 1.85rem;
  }

  .rks-day-strip {
    grid-template-columns: 1fr;
  }

  .rks-day-step {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .rks-day-step:last-child {
    border-bottom: none;
  }

  .rks-accordion-header {
    padding: 1.15rem 0.25rem;
    font-size: 0.92rem;
  }

  /* --- RKS Fit & Departures Mobile --- */
  .rks-fit-section,
  .rks-departures-section {
    padding: 3rem 1.25rem 3.5rem;
  }

  .rks-fit__inner,
  .rks-departures__inner {
    gap: 2rem;
  }

  .rks-fit__heading,
  .rks-departures__heading {
    font-size: 1.85rem;
  }

  .rks-fit__header,
  .rks-departures__header {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .rks-audience-grid,
  .rks-fit-notes-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .rks-departure-box {
    padding: 1.75rem 1.25rem 1.5rem;
    gap: 1.25rem;
  }

  .rks-departure-box__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .rks-departure-box__col--right {
    align-items: flex-start;
    text-align: left;
  }

  .rks-departure-btn {
    width: 100%;
    text-align: center;
  }

  /* --- RKS Inclusions & FAQs Mobile --- */
  .rks-inclusions-faqs-section {
    padding: 3rem 1.25rem 3.5rem;
    overflow: hidden;
  }

  .rks-inclusions-faqs__inner {
    gap: 2.25rem;
  }

  .rks-inclusions-faqs__heading {
    font-size: 1.85rem;
  }

  .rks-inclusions-faqs__header {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .rks-inclusions-carousel__track-wrap {
    width: 100%;
    overflow: hidden;
    padding-top: 20px;
    padding-bottom: 6px;
  }

  .rks-inclusions-carousel__track {
    gap: 1.25rem;
  }

  .rks-inclusion-card {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 2.25rem 1.35rem 1.75rem;
  }

  .rks-inclusion-card__badge {
    left: 1.25rem;
  }

  .rks-faq-header {
    padding: 1.15rem 0.25rem;
    font-size: 0.95rem;
  }

  /* --- RKS Request Details Mobile --- */
  .rks-request-details-section {
    padding: 3rem 1.25rem 3.5rem;
  }

  .rks-request-details__inner {
    gap: 1.75rem;
  }

  .rks-request-details__heading {
    font-size: 1.75rem;
  }

  .rks-request-details__form-title {
    font-size: 1.25rem;
  }

  .rks-form__grid {
    grid-template-columns: 1fr;
  }

  .rks-form__grid--full {
    grid-column: span 1;
  }

  .rks-submit-btn {
    width: 100%;
    justify-content: center;
  }

  .rks-request-details__actions {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .rks-request-details__actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* --- Journeys Hero Mobile --- */
  .journeys-hero {
    min-height: auto;
    padding: 4.5rem 1.25rem 3.5rem;
  }

  .journeys-hero__inner {
    padding: 0;
  }

  .journeys-hero__title {
    font-size: 1.95rem;
  }

  .journeys-hero__tagline {
    font-size: 1.05rem;
  }

  .journeys-hero__actions {
    flex-direction: column;
    width: 100%;
    gap: 0.85rem;
  }

  .journeys-hero__actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* --- Journeys Ways of Seeing Mobile --- */
  .journeys-ways-section {
    padding: 3.5rem 1.25rem 4rem;
  }

  .journeys-ways__inner {
    gap: 2.5rem;
  }

  .journeys-ways__top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .journeys-ways__carousel-wrap {
    border-radius: 20px;
    aspect-ratio: 4 / 3;
    max-width: 100%;
  }

  .journeys-ways__title {
    font-size: 1.85rem;
  }

  .journeys-ways__pillars {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 2rem;
  }

  /* --- Journeys Showcase Mobile --- */
  .journeys-showcase-section {
    padding: 3.5rem 1.25rem 4rem;
  }

  .journeys-showcase__inner {
    gap: 2.25rem;
  }

  .journeys-showcase__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .journeys-showcase__image-wrap {
    border-radius: 20px;
    aspect-ratio: 4 / 3;
    max-width: 100%;
  }

  .journeys-showcase__title {
    font-size: 1.85rem;
  }

  .btn--showcase-solid {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* --- Journeys Understand & Choose Mobile --- */
  .journeys-understand-section,
  .journeys-choose-section {
    padding: 3.5rem 1.25rem 4rem;
  }

  .journeys-understand__inner,
  .journeys-choose__inner {
    gap: 2.25rem;
  }

  .journeys-understand__title,
  .journeys-choose__title {
    font-size: 1.85rem;
  }

  .journeys-understand__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 440px;
    margin: 0 auto;
    width: 100%;
  }

  .btn--understand-pill,
  .btn--choose-pill {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .journeys-choose__actions {
    flex-direction: column;
    width: 100%;
    gap: 0.85rem;
  }

  /* --- Journeys Coming Mobile --- */
  .journeys-coming-section {
    padding: 3.5rem 1.25rem 4rem;
  }

  .journeys-coming__title {
    font-size: 1.85rem;
  }

  .journeys-coming__subtitle {
    font-size: 1.1rem;
  }

  .btn--coming-solid {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* ==================== SRI LANKA JOURNEY PAGE ==================== */

.sl-hero {
  position: relative;
  width: 100%;
  margin-top: var(--nav-height);
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('images/sl-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 4.5rem 1.5rem 6.5rem;
  box-sizing: border-box;
}

.sl-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 25, 30, 0.25) 0%,
    rgba(15, 20, 25, 0.45) 50%,
    rgba(10, 15, 20, 0.65) 100%
  );
  z-index: 1;
}

.sl-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.sl-hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sl-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.sl-hero__tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 600;
  color: #ffffff;
  margin-top: 0.65rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.sl-hero__desc {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  max-width: 780px;
  margin-top: 0.85rem;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.sl-hero__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1.4rem;
}

.sl-pill-badge {
  background-color: #ffffff;
  color: #2b231d;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.38rem 1.15rem;
  border-radius: 50px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
  letter-spacing: 0.01em;
}

.sl-hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.65rem;
  flex-wrap: wrap;
}

.btn--white-solid {
  background-color: #ffffff;
  color: #2b231d;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.72rem 1.65rem;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.btn--white-solid:hover {
  background-color: #f7f3ed;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}

.btn--hero-glass {
  background-color: rgba(140, 145, 145, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.72rem 1.65rem;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.btn--hero-glass:hover {
  background-color: rgba(160, 165, 165, 0.85);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
  color: #ffffff;
}

/* --- Sri Lanka 5 Floating Feature Cards --- */
.sl-features-strip {
  position: relative;
  z-index: 10;
  margin-top: -55px;
  padding: 0 var(--space-md);
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.sl-features__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.1rem;
}

.sl-feature-card {
  background-color: #ffffff;
  border-radius: 14px;
  padding: 1.5rem 1.1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.09);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

.sl-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
}

.sl-feature-card__icon-badge {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: #faf5ed;
  border: 1.5px solid #dcc9b4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7b2f21;
  margin-bottom: 0.65rem;
}

.sl-feature-card__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #8E4A3B;
  margin: 0 0 0.35rem;
  line-height: 1.25;
}

.sl-feature-card__desc {
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 400;
  color: #554f49;
  line-height: 1.45;
  margin: 0;
}

/* --- Sri Lanka 2nd Section: The Opening Promise --- */
.sl-promise-section {
  background-color: #fdfaf6;
  padding: 5.5rem var(--space-md) 6rem;
  box-sizing: border-box;
}

.sl-promise__inner {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.sl-promise__content {
  display: flex;
  flex-direction: column;
}

.sl-promise__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8E4A3B;
  margin-bottom: 0.75rem;
  display: block;
}

.sl-promise__heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  line-height: 1.2;
  margin: 0 0 1.75rem;
}

.sl-promise__heading-main {
  display: block;
  font-weight: 800;
  color: #7B2F21;
}

.sl-promise__heading-sub {
  display: block;
  font-weight: 400;
  color: #7B2F21;
  font-style: normal;
  margin-top: 0.2rem;
}

.sl-promise__desc {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sl-promise__desc p {
  font-family: var(--font-heading);
  font-size: 0.96rem;
  font-weight: 400;
  line-height: 1.75;
  color: #3d3733;
  margin: 0;
}

.sl-promise__images {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sl-promise__img-wrap {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.sl-promise__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.sl-promise__img-wrap:hover .sl-promise__img {
  transform: scale(1.02);
}

/* --- Sri Lanka 3rd Section: Follow the story through the landscape --- */
.sl-story-landscape-section {
  background-color: #fdfaf6;
  padding: 5rem var(--space-md) 5.5rem;
  box-sizing: border-box;
}

.sl-story-landscape__inner {
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sl-story-landscape__header {
  text-align: center;
  margin-bottom: 2.75rem;
}

.sl-story-landscape__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: #8E4A3B;
  display: block;
  margin-bottom: 0.4rem;
}

.sl-story-landscape__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 700;
  color: #7B2F21;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.25;
}

.sl-story-cards-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sl-story-pair {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.sl-story-card {
  position: relative;
  width: 100%;
  min-height: 180px;
  aspect-ratio: 16 / 4.4;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-color: #2b231d;
}

.sl-story-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.sl-story-card:hover .sl-story-card__img {
  transform: scale(1.02);
}

.sl-story-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.sl-story-card--left .sl-story-card__overlay {
  background: linear-gradient(
    90deg,
    rgba(15, 12, 10, 0.65) 0%,
    rgba(15, 12, 10, 0.35) 45%,
    transparent 100%
  );
}

.sl-story-card--right .sl-story-card__overlay {
  background: linear-gradient(
    270deg,
    rgba(15, 12, 10, 0.65) 0%,
    rgba(15, 12, 10, 0.35) 45%,
    transparent 100%
  );
}

.sl-story-card__box {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  max-width: 480px;
  display: flex;
  flex-direction: column;
}

.sl-story-card__box--left {
  left: 2rem;
  align-items: flex-start;
  text-align: left;
}

.sl-story-card__box--right {
  right: 2rem;
  align-items: flex-end;
  text-align: right;
}

.sl-story-card__tag {
  background-color: #ffffff;
  color: #2b231d;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.3rem 0.95rem;
  border-radius: 4px;
  margin-bottom: 0.4rem;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.sl-story-card__text-block {
  background-color: rgba(20, 15, 12, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 0.65rem 1.15rem;
  border-radius: 4px;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.sl-story-card__sublabel {
  font-family: var(--font-heading);
  font-size: 0.74rem;
  font-weight: 600;
  color: #e3c2ab;
  display: block;
  margin-bottom: 0.15rem;
  letter-spacing: 0.02em;
}

.sl-story-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.2rem;
  line-height: 1.25;
}

.sl-story-card__caption {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.4;
}

.sl-story-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin: 0.25rem 0;
}

.sl-story-divider span {
  width: 6px;
  height: 6px;
  background-color: #8E4A3B;
  border-radius: 1px;
}

.sl-story-landscape__action {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

.btn--sl-story-route {
  background-color: #803425;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.8rem 2.2rem;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  box-shadow: 0 4px 14px rgba(128, 52, 37, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.btn--sl-story-route:hover {
  background-color: #5c2317;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(128, 52, 37, 0.38);
  color: #ffffff;
}

/* --- Sri Lanka 4th Section: Two shores. Many journeys --- */
.sl-enduring-section {
  background-color: #FAF6F0;
  padding: 5.5rem var(--space-md) 6rem;
  box-sizing: border-box;
}

.sl-enduring__inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.sl-enduring__header {
  display: flex;
  flex-direction: column;
}

.sl-enduring__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8E4A3B;
  margin-bottom: 0.75rem;
  display: block;
}

.sl-enduring__heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  line-height: 1.2;
  margin: 0 0 1.5rem;
}

.sl-enduring__heading-main {
  display: block;
  font-weight: 800;
  color: #7B2F21;
}

.sl-enduring__heading-sub {
  display: block;
  font-weight: 400;
  color: #7B2F21;
  margin-top: 0.2rem;
}

.sl-enduring__intro {
  font-family: var(--font-heading);
  font-size: 0.96rem;
  font-weight: 400;
  line-height: 1.75;
  color: #3d3733;
  margin: 0;
}

.sl-enduring__list {
  display: flex;
  flex-direction: column;
  gap: 1.65rem;
}

.sl-enduring__item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.sl-enduring__item-title {
  font-family: var(--font-heading);
  font-size: 1.22rem;
  font-weight: 700;
  color: #8E4A3B;
  margin: 0;
  line-height: 1.3;
}

.sl-enduring__item-desc {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.7;
  color: #3d3733;
  margin: 0;
}

/* --- Sri Lanka 5th Section: The Buddhist Heritage Bridge --- */
.sl-buddhist-bridge-section {
  background-color: #FAF6F0;
  padding: 5.5rem var(--space-md) 6rem;
  box-sizing: border-box;
}

.sl-buddhist-bridge__inner {
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sl-buddhist-bridge__header {
  text-align: center;
  max-width: 860px;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sl-buddhist-bridge__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8E4A3B;
  margin-bottom: 0.75rem;
  display: block;
}

.sl-buddhist-bridge__heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  line-height: 1.2;
  margin: 0 0 1.25rem;
}

.sl-buddhist-bridge__heading-main {
  display: block;
  font-weight: 800;
  color: #7B2F21;
}

.sl-buddhist-bridge__heading-sub {
  display: block;
  font-weight: 400;
  color: #7B2F21;
  margin-top: 0.2rem;
}

.sl-buddhist-bridge__desc {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.7;
  color: #3d3733;
  margin: 0;
}

.sl-buddhist-bridge__desc strong {
  font-weight: 700;
  color: #2b231d;
}

.sl-buddhist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  width: 100%;
}

.sl-buddhist-card {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9.8;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  background-color: #2b231d;
}

.sl-buddhist-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.sl-buddhist-card:hover .sl-buddhist-card__img {
  transform: scale(1.03);
}

.sl-buddhist-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(12, 10, 8, 0.72) 100%);
  z-index: 1;
  pointer-events: none;
}

.sl-buddhist-card__content {
  position: absolute;
  z-index: 2;
  bottom: 1.4rem;
  display: flex;
  flex-direction: column;
}

.sl-buddhist-card__content--bl {
  left: 1.5rem;
  text-align: left;
  align-items: flex-start;
}

.sl-buddhist-card__content--br {
  right: 1.5rem;
  text-align: right;
  align-items: flex-end;
}

.sl-buddhist-card__tag {
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.2rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.sl-buddhist-card__content--bl .sl-buddhist-card__tag::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 1.5px;
  background-color: rgba(255, 255, 255, 0.8);
}

.sl-buddhist-card__content--br .sl-buddhist-card__tag::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 1.5px;
  background-color: rgba(255, 255, 255, 0.8);
}

.sl-buddhist-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.25;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* --- Sri Lanka 6th Section: Nature is part of the story --- */
.sl-nature-story-section {
  background-color: #FAF6F0;
  padding: 5.5rem var(--space-md) 6rem;
  box-sizing: border-box;
}

.sl-nature-story__inner {
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
}

.sl-nature-story__header {
  max-width: 980px;
  display: flex;
  flex-direction: column;
}

.sl-nature-story__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8E4A3B;
  margin-bottom: 0.75rem;
  display: block;
}

.sl-nature-story__heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  line-height: 1.2;
  margin: 0 0 1.25rem;
}

.sl-nature-story__heading-main {
  display: block;
  font-weight: 800;
  color: #7B2F21;
}

.sl-nature-story__heading-sub {
  display: block;
  font-weight: 400;
  color: #7B2F21;
  margin-top: 0.2rem;
}

.sl-nature-story__desc {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.75;
  color: #3d3733;
  margin: 0 0 1.5rem;
}

.sl-nature-story__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.sl-nature-story__list li {
  font-family: var(--font-heading);
  font-size: 0.94rem;
  color: #3d3733;
  line-height: 1.6;
  position: relative;
  padding-left: 1.35rem;
}

.sl-nature-story__list li::before {
  content: "•";
  position: absolute;
  left: 0.15rem;
  top: -0.05rem;
  color: #8E4A3B;
  font-size: 1.2rem;
  line-height: 1.3;
}

.sl-nature-images-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  width: 100%;
}

.sl-nature-card {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9.5;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  background-color: #2b231d;
}

.sl-nature-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.sl-nature-card:hover .sl-nature-card__img {
  transform: scale(1.03);
}

.sl-nature-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(12, 10, 8, 0.72) 100%);
  z-index: 1;
  pointer-events: none;
}

.sl-nature-card__content {
  position: absolute;
  z-index: 2;
  bottom: 1.4rem;
  left: 1.5rem;
  display: flex;
  flex-direction: column;
}

.sl-nature-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.25;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* --- Sri Lanka 7th Section: Culture that is still alive --- */
.sl-culture-alive-section {
  background-color: #FAF6F0;
  padding: 5.5rem var(--space-md) 6rem;
  box-sizing: border-box;
}

.sl-culture-alive__inner {
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
}

.sl-culture-alive__header {
  max-width: 980px;
  display: flex;
  flex-direction: column;
}

.sl-culture-alive__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8E4A3B;
  margin-bottom: 0.75rem;
  display: block;
}

.sl-culture-alive__heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  line-height: 1.2;
  margin: 0 0 1.25rem;
}

.sl-culture-alive__heading-main {
  font-weight: 800;
  color: #7B2F21;
}

.sl-culture-alive__heading-sub {
  font-weight: 400;
  color: #7B2F21;
}

.sl-culture-alive__desc {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.75;
  color: #3d3733;
  margin: 0 0 1.5rem;
}

.sl-culture-alive__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.sl-culture-alive__list li {
  font-family: var(--font-heading);
  font-size: 0.94rem;
  color: #3d3733;
  line-height: 1.6;
  position: relative;
  padding-left: 1.35rem;
}

.sl-culture-alive__list li::before {
  content: "•";
  position: absolute;
  left: 0.15rem;
  top: -0.05rem;
  color: #8E4A3B;
  font-size: 1.2rem;
  line-height: 1.3;
}

.sl-culture-images-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  width: 100%;
}

.sl-culture-card {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9.5;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  background-color: #2b231d;
}

.sl-culture-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.sl-culture-card:hover .sl-culture-card__img {
  transform: scale(1.03);
}

.sl-culture-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(12, 10, 8, 0.72) 100%);
  z-index: 1;
  pointer-events: none;
}

.sl-culture-card__content {
  position: absolute;
  z-index: 2;
  bottom: 1.4rem;
  left: 1.5rem;
  display: flex;
  flex-direction: column;
}

.sl-culture-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.25;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* --- Sri Lanka 8th Section: Vegetarian Food & Living Practice --- */
.sl-food-practice-section {
  background-color: #FAF6F0;
  padding: 5.5rem var(--space-md) 6rem;
  box-sizing: border-box;
}

.sl-food-practice__inner {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.sl-food-practice__content {
  display: flex;
  flex-direction: column;
}

.sl-food-practice__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8E4A3B;
  margin-bottom: 0.75rem;
  display: block;
}

.sl-food-practice__heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  line-height: 1.2;
  margin: 0 0 1.25rem;
}

.sl-food-practice__heading-main {
  display: block;
  font-weight: 800;
  color: #7B2F21;
}

.sl-food-practice__heading-sub {
  display: block;
  font-weight: 400;
  color: #7B2F21;
  margin-top: 0.2rem;
}

.sl-food-practice__heading-bold {
  font-weight: 800;
}

.sl-food-practice__desc {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.75;
  color: #3d3733;
  margin: 0 0 1.5rem;
}

.sl-food-practice__checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.sl-food-practice__checklist li {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  color: #2e2824;
  line-height: 1.55;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.sl-check-icon {
  color: #2e2824;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.4;
  flex-shrink: 0;
}

.sl-food-practice__image-wrap {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.sl-food-practice__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.sl-food-practice__image-wrap:hover .sl-food-practice__img {
  transform: scale(1.02);
}

/* --- Sri Lanka 9th Section: How the Bhumivox Experience Works --- */
.sl-experience-works-section {
  background-color: #FAF6F0;
  padding: 5.5rem var(--space-md) 6rem;
  box-sizing: border-box;
}

.sl-experience-works__inner {
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.sl-experience-works__header {
  display: flex;
  flex-direction: column;
}

.sl-experience-works__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8E4A3B;
  margin-bottom: 0.75rem;
  display: block;
}

.sl-experience-works__heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  line-height: 1.2;
  margin: 0;
}

.sl-experience-works__heading-main {
  font-weight: 800;
  color: #7B2F21;
}

.sl-experience-works__heading-sub {
  font-weight: 400;
  color: #7B2F21;
}

/* 4-Stage Process Card */
.sl-process-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 2.5rem 2.25rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.sl-process-stage {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
}

.sl-process-badge {
  background-color: #803425;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.38rem 1.15rem;
  border-radius: 6px;
  letter-spacing: 0.02em;
}

.sl-process-desc {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  color: #3d3733;
  line-height: 1.6;
  margin: 0;
}

.sl-process-divider {
  width: 1.5px;
  min-height: 90px;
  background-color: #d6cbbe;
  align-self: stretch;
  flex-shrink: 0;
}

/* Experience Standards Card */
.sl-standards-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 2.25rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.sl-standards-badge {
  background-color: #803425;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.4rem 1.25rem;
  border-radius: 6px;
  letter-spacing: 0.02em;
  align-self: flex-start;
}

.sl-standards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 3rem;
}

.sl-standards-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sl-standards-list li {
  font-family: var(--font-heading);
  font-size: 0.94rem;
  color: #3d3733;
  line-height: 1.6;
  position: relative;
  padding-left: 1.35rem;
}

.sl-standards-list li::before {
  content: "•";
  position: absolute;
  left: 0.15rem;
  top: -0.05rem;
  color: #8E4A3B;
  font-size: 1.2rem;
  line-height: 1.3;
}

/* --- Sri Lanka 10th Section: 9 Days / 8 Nights Itinerary --- */
.sl-itinerary-section {
  background-color: #FAF6F0;
  padding: 5.5rem var(--space-md) 6rem;
  box-sizing: border-box;
}

.sl-itinerary__inner {
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.sl-itinerary__header {
  display: flex;
  flex-direction: column;
}

.sl-itinerary__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8E4A3B;
  margin-bottom: 0.75rem;
  display: block;
}

.sl-itinerary__heading {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.8vw, 3rem);
  font-weight: 800;
  color: #7B2F21;
  line-height: 1.15;
  margin: 0 0 1rem;
}

.sl-itinerary__desc {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.75;
  color: #3d3733;
  margin: 0;
  max-width: 1100px;
}

.sl-itinerary__grid {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.sl-itinerary-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 4rem;
  padding: 1.6rem 0;
  border-bottom: 1.5px solid #dcd4c8;
}

.sl-itinerary-row--single {
  grid-template-columns: 1fr;
}

.sl-itinerary-col {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.sl-itinerary-day__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin: 0;
  line-height: 1.3;
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.sl-itinerary-day__num {
  font-weight: 800;
  color: #7B2F21;
  font-size: 1.22rem;
}

.sl-itinerary-day__name {
  font-weight: 700;
  color: #8E4A3B;
}

.sl-itinerary-day__desc {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.65;
  color: #3d3733;
  margin: 0;
}

/* --- Sri Lanka 11th Section: 7 Days / 6 Nights Essentials --- */
.sl-essentials-section {
  background-color: #FAF6F0;
  padding: 5rem var(--space-md) 6rem;
  box-sizing: border-box;
}

.sl-essentials__inner {
  max-width: 1220px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
}

.sl-essentials__bars {
  position: absolute;
  top: 0;
  right: 2.5rem;
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}

.sl-essentials__bars span {
  width: 16px;
  height: 68px;
  background-color: #803425;
  border-radius: 2px;
  display: block;
}

.sl-essentials__bars span:first-child {
  margin-top: 18px;
}

.sl-essentials__content {
  max-width: 960px;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.sl-essentials__subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 400;
  color: #7B2F21;
  line-height: 1.25;
  margin: 0;
}

.sl-essentials__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.8vw, 3rem);
  font-weight: 800;
  color: #7B2F21;
  line-height: 1.15;
  margin: 0 0 0.5rem;
}

.sl-essentials__desc {
  font-family: var(--font-heading);
  font-size: 0.96rem;
  font-weight: 400;
  line-height: 1.7;
  color: #3d3733;
  margin: 0;
}

.sl-essentials__focus {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 0.5rem;
}

.sl-essentials__focus-label {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 400;
  color: #3d3733;
}

.sl-essentials__focus-route {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.75;
  color: #3d3733;
  margin: 0;
}

.sl-essentials__focus-route strong {
  font-weight: 700;
  color: #2b231d;
}

/* --- Sri Lanka 12th Section: Who This Journey Is For --- */
.sl-who-for-section {
  background-color: #FAF6F0;
  padding: 5.5rem var(--space-md) 6rem;
  box-sizing: border-box;
}

.sl-who-for__inner {
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.sl-who-for__header {
  display: flex;
  flex-direction: column;
}

.sl-who-for__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8E4A3B;
  margin-bottom: 0.75rem;
  display: block;
}

.sl-who-for__heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: 800;
  color: #7B2F21;
  line-height: 1.2;
  margin: 0;
}

.sl-who-for__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2.25rem;
  align-items: stretch;
}

.sl-who-card {
  background-color: #fff6e8;
  border-radius: 16px;
  padding: 2.75rem 2.25rem 2.25rem;
  border: 1.5px solid #ebdccb;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.sl-who-card__badge-wrap {
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
}

.sl-who-badge {
  background-color: #803425;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.45rem 1.4rem;
  border-radius: 8px;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 10px rgba(128, 52, 37, 0.25);
  white-space: nowrap;
}

.sl-who-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.sl-who-list li {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  color: #3d3733;
  line-height: 1.6;
  position: relative;
  padding-left: 1.25rem;
}

.sl-who-list li::before {
  content: "•";
  position: absolute;
  left: 0.1rem;
  top: -0.05rem;
  color: #8E4A3B;
  font-size: 1.15rem;
  line-height: 1.3;
}

.sl-who-for__right-col {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  justify-content: space-between;
}

.sl-who-for__img-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.sl-who-for__img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.sl-who-for__img-wrap:hover .sl-who-for__img {
  transform: scale(1.02);
}

/* --- Sri Lanka 13th Section: Your Journey Leaders --- */
.sl-leaders-section {
  background-color: #FAF6F0;
  padding: 5.5rem var(--space-md) 6rem;
  box-sizing: border-box;
}

.sl-leaders__inner {
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.sl-leaders__header {
  display: flex;
  flex-direction: column;
}

.sl-leaders__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8E4A3B;
  margin-bottom: 0.75rem;
  display: block;
}

.sl-leaders__heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  line-height: 1.2;
  margin: 0;
}

.sl-leaders__heading-main {
  font-weight: 800;
  color: #7B2F21;
}

.sl-leaders__heading-sub {
  font-weight: 400;
  color: #7B2F21;
}

.sl-leaders__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.sl-leaders__content {
  display: flex;
  flex-direction: column;
}

.sl-leaders__name {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: #7B2F21;
  margin: 0 0 0.35rem;
  line-height: 1.2;
}

.sl-leaders__role {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6e645a;
  margin-bottom: 1.15rem;
  display: block;
}

.sl-leaders__bio {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.75;
  color: #3d3733;
  margin: 0;
}

.sl-leaders__img-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.sl-leaders__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.sl-leaders__img-wrap:hover .sl-leaders__img {
  transform: scale(1.02);
}

/* --- Sri Lanka 14th Section: Departure & Price Module --- */
.sl-departures-section {
  background-color: #FAF6F0;
  padding: 5.5rem var(--space-md) 6rem;
  box-sizing: border-box;
}

.sl-departures__inner {
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
}

.sl-departures__header {
  display: flex;
  flex-direction: column;
}

.sl-departures__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8E4A3B;
  margin-bottom: 0.75rem;
  display: block;
}

.sl-departures__heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  line-height: 1.2;
  margin: 0 0 1.25rem;
}

.sl-departures__heading-sub {
  font-weight: 400;
  color: #7B2F21;
}

.sl-departures__heading-main {
  font-weight: 800;
  color: #7B2F21;
}

.sl-departures__desc {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.7;
  color: #3d3733;
  margin: 0;
  max-width: 1050px;
}

.sl-departures-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.sl-departure-card {
  background-color: #FFF6E8;
  border-radius: 6px;
  padding: 1.75rem 2.25rem;
  border: 1px solid rgba(225, 205, 185, 0.45);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0 4px 18px rgba(160, 120, 80, 0.09);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sl-departure-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(160, 120, 80, 0.14);
}

.sl-departure-card__info {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}

.sl-dep-status-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.22rem 0.65rem;
  border-radius: 3px;
  width: fit-content;
  margin-bottom: 0.25rem;
}

.sl-dep-status-badge--available {
  background-color: #E2AD64;
  color: #ffffff;
}

.sl-dep-status-badge--limited {
  background-color: #E07A5F;
  color: #ffffff;
}

.sl-dep-status-badge--waitlist {
  background-color: #51967F;
  color: #ffffff;
}

.sl-departure-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: #7B2F21;
  margin: 0;
  line-height: 1.3;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.sl-departure-card__title span {
  font-weight: 500;
}

.sl-departure-card__title strong {
  font-weight: 800;
}

.sl-departure-card__meta {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  color: #3d3733;
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
  margin-top: 0.2rem;
}

.sl-departure-card__price {
  font-family: var(--font-heading);
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  margin-top: 0.35rem;
}

.sl-departure-card__price strong {
  font-size: 1.35rem;
  font-weight: 800;
  color: #1f1b18;
}

.sl-departure-card__price-sub {
  font-size: 0.88rem;
  font-weight: 400;
  color: #4a423d;
}

.sl-departure-card__actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-width: 175px;
  flex-shrink: 0;
}

.btn--dep-reserve {
  background-color: #803425;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.68rem 1.4rem;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  transition: all 0.25s ease;
  box-shadow: 0 3px 10px rgba(128, 52, 37, 0.2);
  display: inline-block;
  border: 1px solid #803425;
}

.btn--dep-reserve:hover {
  background-color: #5c2317;
  border-color: #5c2317;
  transform: translateY(-1px);
  color: #ffffff;
}

.btn--dep-view {
  background-color: #FFF6E8;
  color: #803425;
  border: 1px solid #A66453;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.62rem 1.4rem;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  transition: all 0.25s ease;
  display: inline-block;
}

.btn--dep-view:hover {
  background-color: #ffffff;
  border-color: #803425;
  transform: translateY(-1px);
  color: #803425;
}

/* --- Sri Lanka 15th Section: Inclusions & Exclusions --- */
.sl-inc-exc-section {
  background-color: #FAF6F0;
  padding: 1.5rem var(--space-md) 6rem;
  box-sizing: border-box;
}

.sl-inc-exc__inner {
  max-width: 1220px;
  margin: 0 auto;
}

.sl-inc-exc__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

.sl-inc-exc-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 3rem 2.25rem 2.5rem;
  border: 1px solid rgba(225, 205, 185, 0.5);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 22px rgba(160, 120, 80, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sl-inc-exc-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(160, 120, 80, 0.12);
}

.sl-inc-exc-card__badge {
  position: absolute;
  top: -16px;
  left: 28px;
  background-color: #803425;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.38rem 1.45rem;
  border-radius: 6px;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 12px rgba(128, 52, 37, 0.25);
  display: inline-block;
}

.sl-inc-exc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.sl-inc-exc-list li {
  font-family: var(--font-heading);
  font-size: 0.93rem;
  color: #2b2521;
  line-height: 1.58;
  position: relative;
  padding-left: 1.25rem;
}

.sl-inc-exc-list li::before {
  content: "•";
  position: absolute;
  left: 0.1rem;
  top: -0.05rem;
  color: #2b2521;
  font-size: 1.15rem;
  line-height: 1.3;
}

/* --- Sri Lanka 16th Section: Plan My Sri Lanka Journey Form --- */
.sl-form-section {
  background-color: #FAF6F0;
  padding: 1rem var(--space-md) 6rem;
  box-sizing: border-box;
}

.sl-form__inner {
  max-width: 960px;
  margin: 0 auto;
}

.sl-form-card {
  background-color: #ffffff;
  border-radius: 24px;
  border: 1.5px solid #d4c0ac;
  padding: 3.25rem 3.5rem 3rem;
  box-shadow: 0 8px 32px rgba(160, 120, 80, 0.08);
  box-sizing: border-box;
}

.sl-form__title {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: #1a1614;
  margin: 0 0 2rem;
  line-height: 1.2;
}

.sl-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem 1.75rem;
  width: 100%;
}

.sl-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

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

.sl-form-label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #231f1c;
  text-transform: uppercase;
}

.sl-form-input,
.sl-form-select {
  width: 100%;
  background-color: #FAF6F0;
  border: 1.2px solid #cebea8;
  border-radius: 8px;
  padding: 0.88rem 1.15rem;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  color: #231f1c;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.sl-form-input::placeholder {
  color: #8c827a;
  font-size: 0.88rem;
}

.sl-form-input:focus,
.sl-form-select:focus {
  border-color: #803425;
  box-shadow: 0 0 0 2px rgba(128, 52, 37, 0.15);
  background-color: #ffffff;
}

.sl-select-wrapper {
  position: relative;
  width: 100%;
}

.sl-select-wrapper .sl-form-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 2.75rem;
}

.sl-select-wrapper::after {
  content: "";
  position: absolute;
  right: 1.25rem;
  top: 45%;
  width: 9px;
  height: 9px;
  border-right: 2.5px solid #1a1614;
  border-bottom: 2.5px solid #1a1614;
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}

.sl-form-consent {
  margin-top: 0.5rem;
}

.sl-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  user-select: none;
}

.sl-checkbox-input {
  accent-color: #C24B33;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.sl-checkbox-text {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 500;
  color: #2b2521;
}

.sl-form-submit-wrap {
  margin-top: 0.5rem;
}

.btn--sl-form-submit {
  width: 100%;
  background-color: #F8CCA0;
  color: #1f1b18;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 1.05rem 2rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(248, 204, 160, 0.4);
  text-align: center;
  display: block;
}

.btn--sl-form-submit:hover {
  background-color: #f5bc84;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(248, 204, 160, 0.55);
}

/* --- Sri Lanka 17th Section: Cross the Sea Final CTA --- */
.sl-final-cta-section {
  background-color: #FAF6F0;
  padding: 5rem var(--space-md) 6rem;
  box-sizing: border-box;
}

.sl-final-cta__inner {
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.sl-final-cta__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8E4A3B;
  margin-bottom: 0.75rem;
  display: block;
}

.sl-final-cta__heading {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 3.5vw, 2.85rem);
  font-weight: 800;
  color: #7B2F21;
  line-height: 1.2;
  margin: 0 0 1.5rem;
}

.sl-final-cta__text {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.75;
  color: #3d3733;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  max-width: 1050px;
  margin-bottom: 2.5rem;
}

.sl-final-cta__text p {
  margin: 0;
}

.sl-final-cta__actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.btn--sl-final-primary {
  background-color: #803425;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 4px 14px rgba(128, 52, 37, 0.3);
  transition: all 0.25s ease;
  border: 1px solid #803425;
}

.btn--sl-final-primary:hover {
  background-color: #5c2317;
  border-color: #5c2317;
  transform: translateY(-2px);
  color: #ffffff;
}

.btn--sl-final-secondary {
  background-color: #ffffff;
  color: #7B2F21;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1.5px solid #dcd1c4;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
}

.btn--sl-final-secondary:hover {
  border-color: #803425;
  transform: translateY(-2px);
  background-color: #fff6e8;
  color: #803425;
}

/* ==========================================================================
   DEPARTURE PAGE STYLES
   ========================================================================== */
.dep-hero-banner {
  width: 100%;
  background-color: #FAF6F0;
  overflow: hidden;
  line-height: 0;
}

.dep-hero-banner__img-wrap {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.dep-hero-banner__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 85vh;
}

/* --- Departure Intro Section --- */
.dep-intro-section {
  background-color: #ffffff;
  padding: 4.5rem var(--space-md) 0;
  box-sizing: border-box;
  text-align: center;
}

.dep-intro__inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dep-intro__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.2vw, 2.45rem);
  line-height: 1.25;
  margin: 0 0 1.15rem;
}

.dep-intro__heading-rust {
  color: #803425;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.dep-intro__heading-dark {
  color: #1a1614;
  font-weight: 600;
}

.dep-intro__heading-bold {
  color: #1a1614;
  font-weight: 900;
}

.dep-intro__subheading {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: #231f1c;
  font-weight: 500;
  margin: 0 0 1.85rem;
  line-height: 1.4;
}

.dep-intro__badge-wrap {
  margin-bottom: 2rem;
}

.dep-intro__badge {
  background-color: #A67C52;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.38rem 1.35rem;
  border-radius: 4px;
  display: inline-block;
  text-transform: uppercase;
}

.dep-intro__desc {
  font-family: var(--font-heading);
  font-size: 0.96rem;
  line-height: 1.7;
  color: #2b2521;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.dep-intro__desc p {
  margin: 0;
}

.dep-intro__desc strong.text-rust {
  color: #803425;
  font-weight: 800;
}

.dep-intro__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.btn--dep-primary {
  background-color: #803425;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.65rem 1.6rem;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: 0 3px 12px rgba(128, 52, 37, 0.28);
  transition: all 0.25s ease;
  border: 1px solid #803425;
}

.btn--dep-primary:hover {
  background-color: #5c2317;
  border-color: #5c2317;
  transform: translateY(-1px);
  color: #ffffff;
}

.btn--dep-secondary {
  background-color: #ffffff;
  color: #803425;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.65rem 1.6rem;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1.2px solid #dcd1c4;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.25s ease;
}

.btn--dep-secondary:hover {
  border-color: #803425;
  transform: translateY(-1px);
  background-color: #fff6e8;
  color: #803425;
}

.dep-intro__divider {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  height: 1px;
  background-color: #e4ddd3;
}

/* --- Departure 3rd Section: One Page. Two Ways to Browse --- */
.dep-browse-section {
  position: relative;
  width: 100%;
  min-height: 520px;
  overflow: hidden;
  padding: 4.5rem var(--space-md) 6rem;
  box-sizing: border-box;
}

.dep-browse__bg-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.dep-browse__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  display: block;
}

.dep-browse__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0.15) 35%,
    rgba(0, 0, 0, 0) 100%
  );
}

.dep-browse__inner {
  position: relative;
  z-index: 2;
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.dep-browse__heading {
  font-family: var(--font-heading);
  line-height: 1.18;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.dep-browse__heading-main {
  font-size: clamp(2.2rem, 3.8vw, 3.1rem);
  font-weight: 800;
  color: #7B2F21;
}

.dep-browse__heading-sub {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 500;
  color: #7B2F21;
}

.dep-view-toggle {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 4px;
  display: inline-flex;
  gap: 2px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.dep-view-btn {
  border: none;
  background: transparent;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #7B2F21;
  padding: 0.6rem 1.6rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.dep-view-btn--active {
  background-color: #7B2F21;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(123, 47, 33, 0.3);
}

.dep-view-btn:hover:not(.dep-view-btn--active) {
  background-color: #fdf5ea;
}

.dep-filter-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 18px;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.1);
  padding: 1.4rem 1.75rem 1.25rem;
  width: 100%;
  max-width: 680px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.dep-filter__top-row {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 1rem;
  align-items: end;
}

.dep-filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.dep-filter-label {
  font-family: var(--font-heading);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #1a1614;
  text-transform: uppercase;
}

.dep-filter-select-wrap {
  position: relative;
  width: 100%;
}

.dep-filter-select {
  width: 100%;
  background-color: #F8D88E;
  border: 1px solid #cbb27a;
  border-radius: 8px;
  padding: 0.55rem 2rem 0.55rem 0.85rem;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: #231f1c;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.dep-filter-select-wrap::after {
  content: "";
  position: absolute;
  right: 0.85rem;
  top: 45%;
  width: 7px;
  height: 7px;
  border-right: 2px solid #1a1614;
  border-bottom: 2px solid #1a1614;
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}

.dep-filter__bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.dep-filter__avail-wrap {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.dep-avail-chips {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.dep-avail-chip {
  background-color: #FBF4E8;
  border: 1px solid #d4c2aa;
  border-radius: 4px;
  padding: 0.25rem 0.65rem;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  color: #3d3733;
  cursor: pointer;
  transition: all 0.2s ease;
}

.dep-avail-chip:hover,
.dep-avail-chip--active {
  background-color: #803425;
  color: #ffffff;
  border-color: #803425;
}

.dep-filter-clear {
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  color: #C24B33;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.dep-filter-clear:hover {
  color: #803425;
}

/* --- Departure 4th Section: Journey Cards List --- */
.dep-cards-section {
  background-color: #FAF6F0;
  padding: 4.5rem var(--space-md) 6rem;
  box-sizing: border-box;
}

.dep-cards__inner {
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.dep-journey-card {
  background-color: #FFE6CC;
  border-radius: 20px;
  padding: 1.35rem 2.25rem 1.35rem 1.35rem;
  display: flex;
  align-items: center;
  gap: 2.25rem;
  box-shadow: 0 6px 22px rgba(180, 120, 60, 0.08);
  border: 1px solid rgba(225, 185, 140, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

.dep-journey-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(180, 120, 60, 0.14);
}

.dep-journey-card__img-wrap {
  width: 260px;
  height: 175px;
  flex-shrink: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.dep-journey-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.dep-journey-card:hover .dep-journey-card__img {
  transform: scale(1.03);
}

.dep-journey-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.dep-journey-card__status-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.15rem;
}

.dep-status-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 0.22rem 0.65rem;
  border-radius: 4px;
  text-transform: uppercase;
}

.dep-status-tag__square {
  width: 6px;
  height: 6px;
  border-radius: 1px;
  display: inline-block;
}

.dep-status-tag--tan {
  background-color: #9C5847;
  color: #ffffff;
}

.dep-status-tag--tan .dep-status-tag__square {
  background-color: #ffffff;
}

.dep-status-tag--soldout {
  background-color: #ffffff;
  color: #803425;
  border: 1px solid #d4a89d;
}

.dep-status-tag--soldout .dep-status-tag__square {
  background-color: #803425;
}

.dep-status-tag--open {
  background-color: #4CAF50;
  color: #ffffff;
}

.dep-status-tag--open .dep-status-tag__square {
  background-color: #ffffff;
}

.dep-status-tag__count {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: #3d3733;
}

.dep-journey-card__title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: #7B2F21;
  margin: 0;
  line-height: 1.2;
}

.dep-journey-card__locations {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  color: #554d46;
  margin: 0;
}

.dep-journey-card__meta {
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 600;
  color: #231f1c;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.dep-leader-dot {
  color: #803425;
  font-size: 1rem;
}

.dep-journey-card__pricing {
  margin-top: 0.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.dep-journey-card__price-main {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1614;
}

.dep-journey-card__price-main strong {
  font-size: 1.25rem;
  font-weight: 800;
  color: #1a1614;
}

.dep-journey-card__price-main span {
  font-size: 0.85rem;
  font-weight: 400;
  color: #443f3a;
}

.dep-journey-card__price-note {
  font-family: var(--font-heading);
  font-size: 0.74rem;
  color: #6e645a;
  margin: 0;
}

.dep-journey-card__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  min-width: 210px;
  flex-shrink: 0;
}

.dep-journey-card__link {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: #803425;
  text-decoration: none;
  transition: color 0.2s ease;
}

.dep-journey-card__link:hover {
  color: #5c2317;
  text-decoration: underline;
}

.btn--dep-card-action {
  background-color: #9C5847;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.65rem 1.45rem;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: 0 4px 12px rgba(156, 88, 71, 0.3);
  transition: all 0.25s ease;
  border: none;
  white-space: nowrap;
}

.btn--dep-card-action:hover {
  background-color: #7B2F21;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(123, 47, 33, 0.4);
  color: #ffffff;
}

.dep-cards__footnote {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: #6e645a;
  text-align: center;
  margin: 1.5rem auto 0;
  max-width: 950px;
  line-height: 1.5;
}

/* --- Departure 5th Section: Status Guide Table --- */
.dep-status-guide-section {
  background-color: #FAF6F0;
  padding: 2.5rem var(--space-md) 6rem;
  box-sizing: border-box;
}

.dep-status-guide__inner {
  max-width: 1220px;
  margin: 0 auto;
}

.dep-status-table-wrap {
  background-color: #FAF6F0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.dep-status-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.dep-status-th {
  background-color: #7B2F21;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  padding: 1.15rem 2rem;
  border: none;
  letter-spacing: 0.01em;
}

.dep-status-th--status {
  width: 25%;
}

.dep-status-th--desc {
  width: 50%;
}

.dep-status-th--btn {
  width: 25%;
}

.dep-status-table tbody tr {
  border-bottom: 1.5px solid #dcd1c2;
}

.dep-status-table tbody tr:last-child {
  border-bottom: none;
}

.dep-status-td {
  padding: 1.35rem 2rem;
  vertical-align: middle;
  font-family: var(--font-heading);
}

.dep-status-td--desc {
  font-size: 0.95rem;
  color: #231f1c;
  font-weight: 500;
  line-height: 1.5;
}

.dep-status-td--btn {
  font-size: 0.92rem;
  color: #231f1c;
  font-weight: 600;
}

.dep-guide-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-heading);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 0.32rem 0.85rem;
  border-radius: 4px;
  text-transform: uppercase;
}

.dep-guide-badge__sq {
  width: 8px;
  height: 8px;
  border-radius: 1px;
  display: inline-block;
}

.dep-guide-badge--open {
  background-color: #4CAF50;
  color: #ffffff;
}

.dep-guide-badge--open .dep-guide-badge__sq {
  background-color: #ffffff;
}

.dep-guide-badge--few {
  background-color: #A85A42;
  color: #ffffff;
}

.dep-guide-badge--few .dep-guide-badge__sq {
  background-color: #ffffff;
}

.dep-guide-badge--enquiry {
  background-color: #6F9EA8;
  color: #123038;
}

.dep-guide-badge--enquiry .dep-guide-badge__sq {
  background-color: #123038;
}

.dep-guide-badge--soon {
  background-color: #E29676;
  color: #4a1f11;
}

.dep-guide-badge--soon .dep-guide-badge__sq {
  background-color: #4a1f11;
}

.dep-guide-badge--waitlist {
  background-color: #ffffff;
  color: #3d3733;
  border: 1px solid #cbb8a3;
}

.dep-guide-badge--waitlist .dep-guide-badge__sq {
  background-color: #3d3733;
}

.dep-guide-badge--soldout {
  background-color: #EA5D5D;
  color: #ffffff;
}

.dep-guide-badge--soldout .dep-guide-badge__sq {
  background-color: #ffffff;
}

/* --- Departure 6th Section: Process Stepper --- */
.dep-steps-section {
  background-color: #FAF6F0;
  padding: 4.5rem var(--space-md) 6rem;
  box-sizing: border-box;
}

.dep-steps__inner {
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dep-steps__header {
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  text-align: center;
}

.dep-steps__heading {
  font-family: var(--font-heading);
  margin: 0;
  line-height: 1.25;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dep-steps__heading-main {
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: 800;
  color: #7B2F21;
}

.dep-steps__heading-sub {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  color: #7B2F21;
}

.dep-steps__desc {
  font-family: var(--font-heading);
  font-size: 0.96rem;
  color: #231f1c;
  font-weight: 500;
  margin: 0;
  max-width: 650px;
  line-height: 1.5;
}

.dep-stepper-wrap {
  position: relative;
  width: 100%;
}

.dep-stepper-line {
  position: absolute;
  top: 22px;
  left: 6%;
  right: 6%;
  height: 1.5px;
  background-color: #dfc3b0;
  z-index: 1;
}

.dep-stepper-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 2;
}

.dep-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.45rem;
}

.dep-step-item__node {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #7B2F21;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(123, 47, 33, 0.25);
  margin-bottom: 0.35rem;
  border: 3px solid #FAF6F0;
  box-sizing: border-box;
}

.dep-step-item__num {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
}

.dep-step-item__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1614;
  margin: 0;
  line-height: 1.2;
}

.dep-step-item__desc {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 400;
  color: #3d3733;
  margin: 0;
  line-height: 1.45;
  max-width: 180px;
}

/* --- Departure 7th Section: No Suitable Departure Yet --- */
.dep-custom-section {
  background-color: #ffffff;
  padding: 5rem var(--space-md) 6rem;
  box-sizing: border-box;
}

.dep-custom__inner {
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.dep-custom__header {
  margin-bottom: 3.5rem;
}

.dep-custom__heading {
  font-family: var(--font-heading);
  margin: 0;
  line-height: 1.25;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dep-custom__heading-main {
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: 800;
  color: #7B2F21;
}

.dep-custom__heading-sub {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  color: #7B2F21;
}

.dep-custom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
}

.dep-custom-card {
  background-color: #9F5A46;
  border-radius: 20px;
  padding: 2.75rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  min-height: 250px;
  box-sizing: border-box;
  box-shadow: 0 8px 24px rgba(159, 90, 70, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dep-custom-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(159, 90, 70, 0.3);
}

.dep-custom-card__text {
  font-family: var(--font-heading);
  font-size: 0.96rem;
  font-weight: 400;
  line-height: 1.6;
  color: #ffffff;
  margin: 0 0 2rem;
  max-width: 320px;
}

.btn--dep-custom-white {
  width: 100%;
  max-width: 270px;
  background-color: #ffffff;
  color: #1a1614;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.8rem 1.4rem;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.25s ease;
  display: inline-block;
}

.btn--dep-custom-white:hover {
  background-color: #FFF3E3;
  color: #7B2F21;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* --- Departure 8th Section: Your Next Journey Begins (Final CTA) --- */
.dep-final-section {
  background-color: #FFF0DE;
  padding: 5.5rem var(--space-md) 6.5rem;
  box-sizing: border-box;
  text-align: center;
}

.dep-final__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dep-final__header {
  margin-bottom: 2.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.dep-final__heading {
  font-family: var(--font-heading);
  margin: 0;
  line-height: 1.25;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dep-final__heading-top {
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  font-weight: 400;
  color: #7B2F21;
}

.dep-final__heading-highlight {
  font-weight: 800;
  color: #7B2F21;
}

.dep-final__heading-main {
  font-size: clamp(2.1rem, 3.6vw, 2.9rem);
  font-weight: 800;
  color: #7B2F21;
}

.dep-final__desc {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  line-height: 1.6;
  color: #3d3733;
  margin: 0;
  max-width: 680px;
}

.dep-final__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn--dep-final-btn {
  background-color: #A25B47;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.75rem 1.6rem;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 4px 14px rgba(162, 91, 71, 0.28);
  transition: all 0.25s ease;
  border: none;
  white-space: nowrap;
}

.btn--dep-final-btn:hover {
  background-color: #7B2F21;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(123, 47, 33, 0.4);
  color: #ffffff;
}

/* --- Sri Lanka Responsiveness --- */
@media (max-width: 1100px) {
  .sl-features__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .sl-features__grid > :nth-child(4),
  .sl-features__grid > :nth-child(5) {
    grid-column: span 1;
  }
  .sl-promise__inner {
    grid-template-columns: 1fr;
    gap: 2.75rem;
  }
}

@media (max-width: 768px) {
  .sl-hero {
    padding: 3.5rem 1.25rem 4.5rem;
    min-height: auto;
  }
  .sl-features-strip {
    margin-top: -30px;
    padding: 0 1rem;
  }
  .sl-features__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
  }
  .sl-features__grid > :nth-child(5) {
    grid-column: 1 / -1;
    max-width: 280px;
    margin: 0 auto;
    width: 100%;
  }
  .sl-promise-section {
    padding: 3.5rem 1.25rem 4rem;
  }
  .sl-promise__heading {
    font-size: 1.85rem;
  }
  .sl-story-landscape-section {
    padding: 3.5rem 1.25rem 4rem;
  }
  .sl-story-landscape__title {
    font-size: 1.85rem;
  }
  .sl-story-card {
    aspect-ratio: auto;
    min-height: 220px;
    padding: 1.25rem 1rem;
    box-sizing: border-box;
    align-items: flex-end;
  }
  .sl-story-card__overlay {
    background: linear-gradient(
      180deg,
      rgba(15, 12, 10, 0.2) 0%,
      rgba(15, 12, 10, 0.75) 100%
    ) !important;
  }
  .sl-story-card__box {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto !important;
    right: auto !important;
    transform: none;
    max-width: 100%;
    width: 100%;
    align-items: flex-start !important;
    text-align: left !important;
  }
  .sl-story-card__text-block {
    width: 100%;
    box-sizing: border-box;
    padding: 0.65rem 0.85rem;
  }
  .btn--sl-story-route {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .sl-enduring-section {
    padding: 3.5rem 1.25rem 4rem;
  }
  .sl-enduring__heading {
    font-size: 1.85rem;
  }
  .sl-enduring__item-title {
    font-size: 1.15rem;
  }
  .sl-buddhist-bridge-section {
    padding: 3.5rem 1.25rem 4rem;
  }
  .sl-buddhist-bridge__heading {
    font-size: 1.85rem;
  }
  .sl-buddhist-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .sl-buddhist-card {
    aspect-ratio: 16 / 10;
  }
  .sl-nature-story-section {
    padding: 3.5rem 1.25rem 4rem;
  }
  .sl-nature-story__heading {
    font-size: 1.85rem;
  }
  .sl-nature-images-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .sl-nature-card {
    aspect-ratio: 16 / 10;
  }
  .sl-culture-alive-section {
    padding: 3.5rem 1.25rem 4rem;
  }
  .sl-culture-alive__heading {
    font-size: 1.85rem;
  }
  .sl-culture-images-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .sl-culture-card {
    aspect-ratio: 16 / 10;
  }
  .sl-food-practice-section {
    padding: 3.5rem 1.25rem 4rem;
  }
  .sl-food-practice__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .sl-food-practice__heading {
    font-size: 1.85rem;
  }
  .sl-experience-works-section {
    padding: 3.5rem 1.25rem 4rem;
  }
  .sl-experience-works__heading {
    font-size: 1.85rem;
  }
  .sl-process-card {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.75rem 1.25rem;
  }
  .sl-process-divider {
    display: none;
  }
  .sl-standards-card {
    padding: 1.75rem 1.25rem;
  }
  .sl-standards-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .sl-itinerary-section {
    padding: 3.5rem 1.25rem 4rem;
  }
  .sl-itinerary__heading {
    font-size: 2rem;
  }
  .sl-itinerary-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.35rem 0;
  }
  .sl-essentials-section {
    padding: 3.5rem 1.25rem 4rem;
  }
  .sl-essentials__title {
    font-size: 2rem;
  }
  .sl-essentials__bars {
    display: none;
  }
  .sl-who-for-section {
    padding: 3.5rem 1.25rem 4rem;
  }
  .sl-who-for__heading {
    font-size: 1.85rem;
  }
  .sl-who-for__grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .sl-who-card {
    padding: 2.25rem 1.25rem 1.75rem;
  }
  .sl-leaders-section {
    padding: 3.5rem 1.25rem 4rem;
  }
  .sl-leaders__heading {
    font-size: 1.85rem;
  }
  .sl-leaders__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .sl-departures-section {
    padding: 3.5rem 1.25rem 4rem;
  }
  .sl-departures__heading {
    font-size: 1.85rem;
  }
  .sl-departure-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 1.25rem;
    gap: 1.5rem;
  }
  .sl-departure-card__meta {
    gap: 0.75rem 1.25rem;
  }
  .sl-departure-card__actions {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .btn--dep-reserve,
  .btn--dep-view {
    flex: 1;
    min-width: 135px;
  }
  .sl-inc-exc-section {
    padding: 1.5rem 1.25rem 4rem;
  }
  .sl-inc-exc__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .sl-inc-exc-card {
    padding: 2.75rem 1.5rem 2rem;
  }
  .sl-form-section {
    padding: 1rem 1.25rem 4rem;
  }
  .sl-form-card {
    padding: 2.25rem 1.35rem 2rem;
    border-radius: 16px;
  }
  .sl-form__title {
    font-size: 1.45rem;
    margin-bottom: 1.5rem;
  }
  .sl-form__grid {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }
  .sl-final-cta-section {
    padding: 3.5rem 1.25rem 4rem;
  }
  .sl-final-cta__heading {
    font-size: 1.85rem;
  }
  .sl-final-cta__actions {
    flex-direction: column;
    width: 100%;
  }
  .btn--sl-final-primary,
  .btn--sl-final-secondary {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .dep-intro-section {
    padding: 3.5rem 1.25rem 0;
  }
  .dep-intro__heading {
    font-size: 1.75rem;
  }
  .dep-intro__actions {
    flex-direction: column;
    width: 100%;
    margin-bottom: 2.5rem;
  }
  .btn--dep-primary,
  .btn--dep-secondary {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .dep-browse-section {
    padding: 3.5rem 1.25rem 4.5rem;
    min-height: auto;
  }
  .dep-browse__heading-main {
    font-size: 2rem;
  }
  .dep-browse__heading-sub {
    font-size: 1.6rem;
  }
  .dep-filter-card {
    padding: 1.25rem 1rem;
  }
  .dep-filter__top-row {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .dep-cards-section {
    padding: 3.5rem 1.25rem 4rem;
  }
  .dep-journey-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem;
    gap: 1.25rem;
  }
  .dep-journey-card__img-wrap {
    width: 100%;
    height: 200px;
  }
  .dep-journey-card__actions {
    width: 100%;
    align-items: flex-start;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.85rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(225, 185, 140, 0.35);
  }
  .dep-status-guide-section {
    padding: 2rem 1.25rem 4rem;
  }
  .dep-status-th,
  .dep-status-td {
    padding: 1rem 1.25rem;
  }
  .dep-status-th {
    font-size: 1rem;
  }
  .dep-steps-section {
    padding: 3.5rem 1.25rem 4.5rem;
  }
  .dep-steps__header {
    margin-bottom: 2.5rem;
  }
  .dep-stepper-line {
    display: none;
  }
  .dep-stepper-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1rem;
  }
  .dep-custom-section {
    padding: 3.5rem 1.25rem 4rem;
  }
  .dep-custom__header {
    margin-bottom: 2.25rem;
  }
  .dep-custom-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .dep-final-section {
    padding: 3.5rem 1.25rem 4.5rem;
  }
  .dep-final__header {
    margin-bottom: 2rem;
  }
  .dep-final__actions {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }
  .btn--dep-final-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .sl-features__grid {
    grid-template-columns: 1fr;
  }
  .sl-features__grid > :nth-child(5) {
    max-width: 100%;
  }
  .sl-hero__actions {
    flex-direction: column;
    width: 100%;
  }
  .btn--white-solid,
  .btn--hero-glass {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .sl-story-card__title {
    font-size: 1.05rem;
  }
  .sl-story-card__caption {
    font-size: 0.78rem;
  }
  .dep-stepper-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem 0.75rem;
  }
}

/* -- Small Mobile (≤ 380px) -- */
@media (max-width: 380px) {
  .hero__cta {
    font-size: 0.65rem;
    padding: 0.38rem 0.75rem;
  }

  .about-section__title,
  .story-section__title,
  .two-orgs-section__title,
  .journey-diff-section__title,
  .outer-journey-section__title,
  .who-section__title,
  .best-india-section__title,
  .beliefs-section__title,
  .begun-final-section__title {
    font-size: 1.3rem;
  }

  .founder-section__name {
    font-size: 1.9rem;
  }

  .mission-card__title {
    font-size: 1.65rem;
  }
}