@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
/* font-family: "Jost", sans-serif; */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
/* font-family: "Open Sans", sans-serif; */

:root {
  --deep: #08211d;
  --deep-2: #0d332c;
  --teal: #124a40;
  --teal-light: #1c6b5b;
  --aqua: #3fd6a6;
  --aqua-soft: #a7ecd3;
  --gold: #d9a441;
  --gold-soft: #f0c876;
  --sand: #f4efe3;
  --sand-2: #ece4d1;
  --ink: #0c1512;
  --paper: #fbf9f3;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 20px 60px rgba(4, 20, 16, 0.35);
  --maxw: 1180px;
  --display: "Jost", sans-serif;
  --head: "Jost", sans-serif;
  --serif: "Jost", sans-serif;
  --body: "Open Sans", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--body);
  background: var(--paper);
  color: #d8d8d8;
  line-height: 1.3;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--head);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: #fff;
}

h2 {
  font-size: 50px;
  margin: 0 0 15px 0;
  font-weight: 300;
}

/* ===== NAV ===== */
/* Header Base Styles */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(11, 19, 17, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.35s ease;
}

/* Scrolled Header Effect */
.nav.scrolled {
  background: rgba(11, 19, 17, 0.85);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border-bottom-color: rgba(16, 185, 129, 0.3);
}

.nav-inner {
  margin: 0 auto;
  padding: 12px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand Styling */
.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  max-width: 100px;
}

/* Navigation Links Styling */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-link {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.5px;
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s ease;
}

/* Animated Underline Effect on Hover */
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #84cc60;
  transition: width 0.3s ease;
  box-shadow: 0 0 8px #10b981;
}

.nav-link:hover {
  color: #84cc60;
}

.nav-link:hover::after {
  width: 100%;
}

/* Header Button Styling */
.btn-nav.btn {
  padding: 12px 24px;
}

/* Hamburger Icon Styling */
.burger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
  z-index: 1001;
}

.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Mobile Responsive Drawer Styling */
@media (max-width: 900px) {
  .burger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: rgba(11, 19, 17, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(16, 185, 129, 0.2);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-link {
    font-size: 1.1rem;
  }

  /* Hamburger Toggle Animation to 'X' */
  .burger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: #10b981;
  }

  .burger.active span:nth-child(2) {
    opacity: 0;
  }

  .burger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: #10b981;
  }
}
/* hero */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 180px 0 100px;
  overflow: hidden;
}

/* Background Video */
.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgb(0 0 0 / 95%) 0%,
    rgb(90 90 90 / 9%) 55%,
    rgb(255 255 255 / 0%) 100%
  );
  pointer-events: none;
  user-select: none;
}

/* Grid Wrapper */
.hero-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
}

.tag-line {
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  color: #d8d8d8;
  font-size: 20px;
  display: block;
  margin-bottom: 20px;
  font-style: italic;
  opacity: 0.6;
}

.hero-inner h1 {
  font-size: clamp(3rem, 5.5vw, 5rem);
  color: #fff;
  line-height: 1;
  margin-bottom: 1.25rem;
  letter-spacing: -1px;
}

.hero-inner .tag-line {
  color: #ffffff;
}

.hero-inner .tag-line::before {
  background-color: #fff;
}

.hero-inner h1 span {
  color: #84cc60;
}

/* Stat Chips */
.stat-strip {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.stat-chip {
  background: rgba(164, 166, 165, 0.12);
  color: #84cc60;
  font-size: 0.775rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.hero-sub {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.hero-desc {
  color: #9ca3af;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Action Buttons */
.btn-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 16px 32px;
  background-color: #84cc60;
  color: #000;
  text-decoration: none;
  cursor: pointer;
  overflow: visible !important;
}

.btn.btn-outline {
  background-color: #fff;
  color: #000;
}

/* Map Card */
.map-card {
  width: 100%;
  max-width: 480px;
  background: rgb(0 0 0 / 18%);
  backdrop-filter: blur(12px);
  border-radius: 5px;
  padding: 10px;
  margin-left: auto;
}

.pin-label {
  fill: #ffffff;
  font-size: 11px;
  font-weight: 600;
}

/* Scroll Cue */
.scroll-cue {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  border: 2px solid #84cc60;
  border-radius: 20px;
  z-index: 2;
}

.scroll-cue::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  background: #84cc60;
  border-radius: 2px;
  animation: scrollAnim 1.8s infinite;
}

@keyframes scrollAnim {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(14px);
  }
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .overlay {
    background: linear-gradient(
      180deg,
      rgba(11, 19, 17, 0.88) 0%,
      rgba(11, 19, 17, 0.98) 100%
    );
  }
}

/* ===== PILLARS (THE EXPEDITION) ===== */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
.pillar {
  background: var(--deep-2);
  padding: 38px 28px 34px;
  position: relative;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}
.pillar:hover {
  background: var(--teal);
  transform: translateY(-4px);
}
.pillar .num {
  font-family: var(--display);
  font-size: 2.4rem;
  color: var(--gold);
  opacity: 0.9;
  line-height: 1;
}
.pillar h3 {
  font-family: var(--head);
  color: var(--paper);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 14px 0 10px;
}
.pillar p {
  color: rgba(251, 249, 243, 0.72);
  font-size: 0.92rem;
}
.crew-note {
  margin-top: 44px;
  padding: 26px 30px;
  border-left: 3px solid var(--gold);
  background: rgba(217, 164, 65, 0.08);
  border-radius: 0 8px 8px 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--sand);
}

@media (max-width: 900px) {
  .pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .pillars {
    grid-template-columns: 1fr;
  }
}

/* ===== WHY ROWS ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 10px;
}
.why-card {
  background: var(--paper);
  border: 1px solid rgba(18, 74, 64, 0.12);
  border-radius: 10px;
  padding: 30px 26px;
  box-shadow: 0 10px 26px rgba(12, 21, 18, 0.05);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(12, 21, 18, 0.1);
}
.why-card h3 {
  font-size: 1.08rem;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0px;
  font-weight: 500;
}
.why-card p {
  font-size: 0.92rem;
  color: #3c4b46;
}

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== ROUTE ===== */
.route-media {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 340px;
  margin-bottom: 52px;
  box-shadow: var(--shadow);
}
.route-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.route-media .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(6, 20, 17, 0.85),
    rgba(6, 20, 17, 0.05) 60%
  );
  display: flex;
  align-items: flex-end;
  padding: 30px;
}
.route-media .overlay .odo {
  font-family: var(--display);
  color: var(--paper);
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: 0.02em;
}
.route-media .overlay .odo small {
  display: block;
  font-family: var(--body);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--gold-soft);
  font-weight: 700;
  margin-bottom: 6px;
}

.route-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.route-card {
  background: var(--paper);
  border: 1px solid rgba(18, 74, 64, 0.14);
  border-radius: 10px;
  padding: 24px 26px;
  position: relative;
}
.route-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 3px;
  background: linear-gradient(180deg, var(--aqua), var(--gold));
  border-radius: 3px;
}
.route-card h4 {
  font-family: var(--head);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
  padding-left: 14px;
}
.route-card p {
  font-size: 0.88rem;
  color: #4a5652;
  padding-left: 14px;
  line-height: 1.65;
}
.route-card.full {
  grid-column: 1 / -1;
}

@media (max-width: 760px) {
  .route-list {
    grid-template-columns: 1fr;
  }
}

/* ===== AQUASCAPE ROADSHOW ===== */
.roadshow-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.workshop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.workshop-card {
  background: rgba(251, 249, 243, 0.04);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 26px 22px;
  transition:
    border-color 0.25s ease,
    background 0.25s ease;
}
.workshop-card:hover {
  border-color: var(--aqua);
  background: rgba(63, 214, 166, 0.06);
}
.workshop-card .ic {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--aqua), var(--teal-light));
  margin-bottom: 16px;
}
.workshop-card h4 {
  color: var(--paper);
  font-family: var(--head);
  font-size: 0.98rem;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.workshop-card p {
  color: rgba(251, 249, 243, 0.66);
  font-size: 0.86rem;
}

@media (max-width: 900px) {
  .workshop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .workshop-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== SPONSOR YOUR CITY ===== */
.tier-badges {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 10px;
}
.tier-badge {
  text-align: center;
  background: var(--paper);
  border: 1px solid rgba(18, 74, 64, 0.14);
  border-radius: 10px;
  padding: 26px 14px;
}
.tier-badge .mark {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  color: var(--ink);
  font-size: 1.1rem;
}
.tier-badge h4 {
  font-size: 0.86rem;
  color: var(--teal);
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}
.tier-badge p {
  font-size: 0.8rem;
  color: #586863;
}

@media (max-width: 960px) {
  .tier-badges {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 620px) {
  .tier-badges {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== WHY BRAND / BENEFITS ===== */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
.benefit {
  background: var(--deep-2);
  padding: 32px 26px;
}
.benefit h3 {
  color: var(--gold-soft);
  font-family: var(--head);
  font-size: 1rem;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}
.benefit p {
  color: rgba(251, 249, 243, 0.7);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .benefit-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== SPONSORSHIP TIERS (PRICING) ===== */
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.price-card {
  background: var(--paper);
  border: 1px solid rgba(18, 74, 64, 0.14);
  border-radius: 14px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 30px rgba(12, 21, 18, 0.06);
  position: relative;
}
.price-card.feature {
  border-color: var(--gold);
  box-shadow: 0 20px 46px rgba(217, 164, 65, 0.22);
  transform: translateY(-10px);
}
.price-card .ribbon {
  position: absolute;
  top: -13px;
  left: 26px;
  background: linear-gradient(120deg, var(--gold-soft), var(--gold));
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 999px;
  text-transform: uppercase;
}
.price-card h3 {
  font-size: 1.05rem;
  color: var(--teal);
  margin-bottom: 6px;
  line-height: 1.3;
}
.price-card .who {
  font-size: 0.82rem;
  color: #68766f;
  margin-bottom: 18px;
}
.price-card .price {
  font-family: var(--display);
  font-size: 1.7rem;
  color: var(--deep);
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
.price-card .price small {
  font-family: var(--body);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  color: var(--teal-light);
  display: block;
  font-weight: 700;
  margin-bottom: 4px;
}
.price-card p.desc {
  font-size: 0.86rem;
  color: #42504b;
  flex: 1;
}

@media (max-width: 960px) {
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .price-card.feature {
    transform: none;
  }
}
@media (max-width: 600px) {
  .price-grid {
    grid-template-columns: 1fr;
  }
}

.inkind-strip {
  margin-top: 44px;
  padding: 28px 30px;
  background: var(--sand-2);
  border-radius: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.inkind-strip .lbl {
  font-family: var(--head);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  margin-right: 10px;
}
.pill {
  background: var(--paper);
  border: 1px solid rgba(18, 74, 64, 0.18);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--deep);
  font-weight: 500;
}

/* ===== RECEIVE TABLE ===== */
.receive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.receive-item {
  display: flex;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(18, 74, 64, 0.12);
}
.receive-item .n {
  font-family: var(--display);
  color: var(--gold);
  font-size: 1.2rem;
  flex: none;
  width: 30px;
}
.receive-item h4 {
  font-size: 0.92rem;
  color: var(--teal);
  margin-bottom: 4px;
}
.receive-item p {
  font-size: 0.82rem;
  color: #586863;
}
@media (max-width: 900px) {
  .receive-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .receive-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== CONTENT STORY ===== */
.content-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.content-card {
  background: rgba(251, 249, 243, 0.04);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
.content-card .thumb {
  height: 120px;
  background-size: cover;
  background-position: center;
}
.content-card .cbody {
  padding: 18px 18px 22px;
}
.content-card h4 {
  color: var(--paper);
  font-family: var(--head);
  font-size: 0.92rem;
  margin-bottom: 6px;
}
.content-card p {
  color: rgba(251, 249, 243, 0.62);
  font-size: 0.8rem;
}

@media (max-width: 960px) {
  .content-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 620px) {
  .content-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== NETWORK TAGS ===== */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}
.tag-cloud span {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid rgba(18, 74, 64, 0.16);
  font-size: 0.86rem;
  color: var(--deep);
  font-weight: 500;
  transition: all 0.2s ease;
}
.tag-cloud span:hover {
  background: var(--teal);
  color: var(--paper);
  border-color: var(--teal);
}

/* ===== COMMITMENT ===== */
.commit-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.commit-list {
  margin-top: 22px;
}
.commit-list li {
  padding: 12px 0 12px 30px;
  position: relative;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.08rem;
  color: var(--sand);
  border-bottom: 1px solid rgba(251, 249, 243, 0.1);
}
.commit-list li::before {
  content: "~";
  position: absolute;
  left: 0;
  top: 11px;
  color: var(--gold);
  font-family: var(--display);
  font-size: 1.2rem;
}
.commit-media {
  border-radius: 14px;
  overflow: hidden;
  height: 440px;
  box-shadow: var(--shadow);
}
.commit-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 900px) {
  .commit-wrap {
    grid-template-columns: 1fr;
  }
  .commit-media {
    height: 280px;
    order: -1;
  }
}

/* ===== WHY TICI ===== */
.whytici {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.whytici .quote-mark {
  font-family: var(--display);
  font-size: 5rem;
  color: var(--gold);
  line-height: 1;
  opacity: 0.5;
}
@media (max-width: 860px) {
  .whytici {
    grid-template-columns: 1fr;
  }
}

/* ===== JOIN CTAs ===== */
.join-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.join-card {
  background: var(--paper);
  border: 1px solid rgba(18, 74, 64, 0.16);
  border-radius: 12px;
  padding: 26px 20px;
  text-align: center;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.join-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(12, 21, 18, 0.1);
  border-color: var(--aqua);
}
.join-card .glyph {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--aqua-soft), var(--aqua));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  color: var(--deep);
  font-size: 1.3rem;
}
.join-card p {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--deep);
}
@media (max-width: 960px) {
  .join-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .join-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== FINAL CTA ===== */
.final-cta {
  position: relative;
  padding: 140px 0;
  text-align: center;
  color: var(--paper);
  background:
    linear-gradient(180deg, rgba(6, 18, 15, 0.55), rgba(4, 12, 10, 0.92)),
    url("https://images.unsplash.com/photo-1546489800-3f420ef6dca8?auto=format&fit=crop&w=1800&q=80")
      center/cover no-repeat;
}
.final-cta h2 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  color: var(--paper);
  max-width: 840px;
  margin: 0 auto 20px;
  line-height: 1.05;
}
.final-cta .meta-line {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 700;
  margin-bottom: 16px;
}
.final-cta .sub {
  font-family: var(--serif);
  font-style: italic;
  color: var(--aqua-soft);
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.final-cta .vehicles {
  margin-top: 6px;
  color: rgba(251, 249, 243, 0.65);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}
.final-cta .btn-row {
  justify-content: center;
}

.final-cta .btn-row {
  margin-top: 30px;
}

/* =====================================================
   INDIA TOUR — FINAL FOOTER
===================================================== */

.tour-footer {
  position: relative;

  overflow: hidden;

  background: #041b17;

  color: #f4f1e8;
}

/* =====================================================
   TOP CLOSING STATEMENT
===================================================== */

.tour-footer-hero {
  position: relative;

  min-height: 430px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  width: min(1180px, calc(100% - 50px));

  margin: 0 auto;

  padding: 90px 0 80px;

  border-bottom: 1px solid rgba(142, 225, 189, 0.16);
}

.tour-footer-hero-inner {
  max-width: 850px;
}

/* =====================================================
   LABEL
===================================================== */

.tour-footer-eyebrow {
  display: flex;

  align-items: center;

  gap: 14px;

  margin-bottom: 24px;

  font-size: 10px;

  font-weight: 600;

  letter-spacing: 3px;

  color: #ffffff90;
}

.tour-footer-eyebrow::before {
  content: "";

  width: 38px;

  height: 1px;

  background: #fff;
}

/* =====================================================
   HUGE FOOTER TITLE
===================================================== */

.tour-footer-title {
  margin: 0;

  font-size: clamp(60px, 8vw, 70px);

  line-height: 1;

  letter-spacing: -5px;

  text-transform: uppercase;

  color: #f4f1e8;
}

.tour-footer-title span {
  display: block;

  color: #84cc60;
}

/* =====================================================
   INTRO
===================================================== */

.tour-footer-intro {
  max-width: 580px;

  margin: 30px 0 0;

  font-size: 18px;

  line-height: 1.6;

  font-style: italic;

  color: #8ea69f;
}

/* =====================================================
   RIGHT ROUTE MARK
===================================================== */

.tour-footer-route-mark {
  position: absolute;

  right: 0;

  bottom: 85px;

  display: flex;

  flex-direction: column;

  align-items: flex-end;

  gap: 5px;

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 3px;

  color: #637e76;
}

.tour-footer-route-mark strong {
  font-size: 28px;

  letter-spacing: -1px;

  color: #fff;
}

/* =====================================================
   MAIN FOOTER
===================================================== */

.tour-footer-main {
  width: min(1180px, calc(100% - 50px));

  margin: 0 auto;

  padding: 65px 0;

  display: grid;

  grid-template-columns:
    1.7fr
    1fr
    0.8fr
    0.7fr;

  gap: 70px;
}

/* =====================================================
   BRAND
===================================================== */

.tour-footer-brand h3 {
  margin: 0 0 12px;

  font-size: 28px;

  line-height: 1;

  font-weight: 500;

  letter-spacing: -1px;

  color: #f4f1e8;
}

.tour-footer-brand h3 span {
  font-weight: 300;

  color: #8ea69f;
}

.tour-footer-brand-line {
  margin-bottom: 25px;

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 2px;

  color: #8ee1bd;
}

.tour-footer-brand p {
  max-width: 360px;

  margin: 0;

  font-size: 15px;

  line-height: 1.65;

  color: #829991;
}

/* =====================================================
   BRAND LOCATION
===================================================== */

.tour-footer-location {
  display: flex;

  flex-wrap: wrap;

  gap: 8px 20px;

  margin-top: 28px;
}

.tour-footer-location span {
  font-size: 8px;

  font-weight: 700;

  letter-spacing: 1.5px;

  color: #ffffffc6;
}

/* =====================================================
   COLUMN
===================================================== */

.tour-footer-column {
  display: flex;

  flex-direction: column;

  align-items: flex-start;
}

.tour-footer-column-label {
  margin-bottom: 20px;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 2px;

  color: #fff;
}

.tour-footer-column a {
  margin-bottom: 12px;

  font-size: 14px;

  line-height: 1.5;

  color: #9aada7;

  text-decoration: none;

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.tour-footer-column a:hover {
  color: #8ee1bd;

  transform: translateX(4px);
}

.tour-footer-sub-label {
  margin-top: 22px;

  margin-bottom: 15px;
}

/* =====================================================
   BOTTOM BAR
===================================================== */

.tour-footer-bottom {
  width: min(1180px, calc(100% - 50px));

  margin: 0 auto;

  min-height: 80px;

  display: grid;

  grid-template-columns:
    1fr
    auto
    1fr;

  align-items: center;

  gap: 25px;

  border-top: 1px solid rgba(142, 225, 189, 0.14);
}

/* =====================================================
   COPYRIGHT
===================================================== */

.tour-footer-copy {
  font-size: 11px;

  color: #fff;
}

/* =====================================================
   ROUTE WORDS
===================================================== */

.tour-footer-bottom-route {
  display: flex;

  align-items: center;

  gap: 14px;
}

.tour-footer-bottom-route span {
  font-size: 10px;

  font-weight: 500;

  letter-spacing: 2px;

  color: #ffffffc6;
}

.tour-footer-bottom-route span:not(:last-child)::after {
  content: "·";

  margin-left: 14px;

  color: #fff;
}

/* =====================================================
   BACK / YEAR
===================================================== */

.tour-footer-back {
  text-align: right;

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 2px;

  color: #84cc60;
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {
  .tour-footer-hero {
    min-height: auto;

    padding: 80px 0 70px;
  }

  .tour-footer-title {
    font-size: clamp(55px, 10vw, 90px);
  }

  .tour-footer-route-mark {
    display: none;
  }

  .tour-footer-main {
    grid-template-columns:
      1.5fr
      1fr
      1fr;

    gap: 45px;
  }

  .tour-footer-brand {
    grid-column: 1 / -1;
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {
  .tour-footer-hero,
  .tour-footer-main,
  .tour-footer-bottom {
    width: calc(100% - 30px);
  }

  .tour-footer-hero {
    padding: 70px 0 60px;
  }

  .tour-footer-title {
    font-size: 52px;

    letter-spacing: -3px;
  }

  .tour-footer-intro {
    font-size: 16px;
  }

  .tour-footer-main {
    grid-template-columns: 1fr;

    gap: 40px;

    padding: 55px 0;
  }

  .tour-footer-brand {
    grid-column: auto;
  }

  .tour-footer-bottom {
    grid-template-columns: 1fr;

    gap: 15px;

    padding: 25px 0;

    text-align: left;
  }

  .tour-footer-bottom-route {
    flex-wrap: wrap;
  }

  .tour-footer-back {
    text-align: left;
  }
}
.container {
  max-width: 1300px;
  margin: 0 auto;
}
@media (max-width: 800px) {
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 520px) {
  .foot-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .section-pad {
    padding: 80px 0;
  }
  .pillars,
  .benefit-grid,
  .workshop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .btn {
    padding: 13px 22px;
    font-size: 0.78rem;
  }
  .route-media {
    height: 220px;
  }
}

/* ===== EXPEDITION SECTION FIXES ===== */
.expedition-section {
  padding: 6rem 0;
  background: #000;
  position: relative;
  z-index: 2;
  overflow: visible; /* Prevent SVG clipping */
}

.expedition-section .why-section-number {
  color: #fff;
}

.expedition-section .why-section-number span {
  color: #fff !important;
}

.expedition-grid-wrapper {
  position: relative;
  margin: 3.5rem 0 2.5rem;
}

/* Connecting Top SVG Arrows */
.exp-svg-arrows {
  position: absolute;
  top: -45px;
  left: 0;
  width: 100%;
  height: 55px;
  z-index: 10;
  pointer-events: none;
  overflow: visible;
}

.arrow-path {
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  animation: drawConnectingArrows 1.8s ease-out forwards;
}

@keyframes drawConnectingArrows {
  to {
    stroke-dashoffset: 0;
  }
}

/* Grid Layout */
.expedition-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  background: rgba(8, 33, 29, 0.9);
}

.exp-card {
  position: relative;
  padding: 2.5rem 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.exp-card:last-child {
  border-right: none;
}

/* Background Image Hover Scale */
.card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(60%) brightness(0.35);
  transition:
    transform 0.6s ease,
    filter 0.6s ease;
  z-index: 1;
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 33, 29, 0.5) 0%,
    rgba(8, 33, 29, 0.95) 100%
  );
  z-index: 2;
  transition: opacity 0.4s ease;
}

.card-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.exp-number {
  font-family: var(--display);
  font-size: 2.2rem;
  color: #79bb58;
  line-height: 1;
  margin-bottom: 1.25rem;
  display: block;
}

.exp-card-title {
  font-family: var(--head);
  font-size: 1.25rem;
  color: #ffffff;
  letter-spacing: 0.1em;
  margin-bottom: 0.85rem;
}

.exp-card-desc {
  font-size: 0.875rem;
  color: #ece4d1;
  line-height: 1.6;
  flex-grow: 1;
}
/* Card Hover Interactions */
.exp-card:hover {
  transform: translateY(-6px);
}

.exp-card:hover .card-bg {
  transform: scale(1.08);
  filter: grayscale(0%) brightness(0.65);
}

.exp-card:hover .card-arrow-btn {
  color: #d9a441;
}

.exp-card:hover .draw-arrow {
  color: #d9a441;
  transform: translateX(6px);
}

/* Callout Banner */
.expedition-callout {
  background: rgba(8, 33, 29, 0.85);
  border-left: 4px solid #79bb58;
  padding: 1.75rem 2rem;
  border-radius: 0 8px 8px 0;
  backdrop-filter: blur(10px);
}

.expedition-callout p {
  font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  color: #f4efe3;
}

.expedition-callout em {
  font-style: normal;
  color: #f0c876;
}

/* Responsive Rules */
@media (max-width: 992px) {
  .exp-svg-arrows {
    display: none;
  }
  .expedition-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .exp-card {
    border-bottom: 1px solid var(--line);
  }
  .exp-card:nth-child(2) {
    border-right: none;
  }
}

@media (max-width: 576px) {
  .expedition-grid {
    grid-template-columns: 1fr;
  }
  .exp-card {
    border-right: none;
  }
}

/* next */
/* =========================================
   WHY EXPEDITION SECTION
========================================= */

.why-exists-section {
  position: relative;
  overflow: hidden;
  padding: 8rem 0 7rem;
  background: #f5f4ed;
  color: #082c27;
}

/* BACKGROUND WORD */
.why-bg-text {
  position: absolute;
  top: 6%;
  right: -5%;
  font-size: clamp(8rem, 18vw, 20rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.08em;
  color: rgb(8 44 39 / 7%);
  pointer-events: none;
  user-select: none;
}

/* TOP META */
.why-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4rem;
}

.why-section-number {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #49635d;
}

.why-section-number span:first-child {
  font-size: 14px;
  color: #0b5c50;
}

.why-section-number i {
  width: 45px;
  height: 1px;
  background: #0b5c50;
  display: block;
}

.why-location {
  font-size: 10px;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: #6b7773;
}

/* INTRO */
.why-intro {
  max-width: 1050px;
  margin-bottom: 5.5rem;
}

/* LABEL */
.why-tag-wrap {
  margin-bottom: 1.8rem;
}

.tag-line {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6b706c;
}

.tag-line::before {
  content: "";
  width: 28px;
  height: 1px;
  background: #177467;
}

/* TITLE */
.why-title {
  margin: 0;
  color: #082c27;
  font-size: clamp(3rem, 5vw, 6.2rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 300;
  text-transform: uppercase;
}

.why-title span {
  display: block;
  overflow: hidden;
}

.why-title .why-word {
  display: inline-block;
  will-change: transform, opacity;
}

.why-title em {
  color: #177467;
  font-style: normal;
}

/* LEDE AREA */
.why-intro-bottom {
  display: grid;
  grid-template-columns: 100px minmax(0, 760px);
  gap: 35px;
  margin-top: 3rem;
  margin-left: 8%;
}

.why-line {
  width: 100%;
  height: 1px;
  margin-top: 12px;
  background: #b5beb9;
}

.why-lede {
  margin: 0;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.75;
  font-style: italic;
  color: #4d635d;
}

.why-lede strong {
  color: #0b5c50;
  font-weight: 600;
}

/* =========================================
   GRID
========================================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}

/* =========================================
   CARD
========================================= */
.why-card {
  position: relative;
  min-height: 330px;
  padding: 2rem;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 1; /* Fallback */
  transform: translateY(0);
  transition:
    background-color 0.45s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

/* CARD TOP */
.why-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3.5rem;
}

.why-card-number {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #0c7565;
}

.why-card-label {
  padding: 6px 10px;
  border: 1px solid #d6dfdb;
  border-radius: 100px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #6c7b76;
  transition: all 0.4s ease;
}

/* ICON */
.why-card-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 1.4rem;
  border: 1px solid #b7d1ca;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.5s ease,
    background 0.4s ease;
}

.why-card-icon span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #16806d;
  box-shadow: 0 0 0 5px rgba(22, 128, 109, 0.08);
}

/* TITLE */
.why-card-title {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #082c27;
}

/* DESCRIPTION */
.why-card-desc {
  max-width: 390px;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #66736f;
}

/* FOOTER */
.why-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 2rem;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #84908c;
}

.why-arrow {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d9e0dd;
  border-radius: 50%;
  font-size: 15px;
  color: #0b5c50;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.3s ease,
    color 0.3s ease;
}

/* =========================================
   CARD HOVER
========================================= */
.why-card:hover {
  background: #edf5f1;
  transform: translateY(-6px);
  z-index: 2;
}

.why-card:hover .why-card-label {
  background: #0b5c50;
  border-color: #0b5c50;
  color: #ffffff;
}

.why-card:hover .why-card-icon {
  transform: rotate(20deg) scale(1.08);
  background: rgba(23, 116, 103, 0.08);
}

.why-card:hover .why-arrow {
  transform: rotate(45deg);
  background: #0b5c50;
  color: #ffffff;
}

/* =========================================
   BOTTOM STATEMENT
========================================= */
.why-bottom {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  gap: 30px;
  margin-top: 4rem;
}

.why-bottom-line {
  height: 1px;
  background: #b7c0bc;
}

.why-bottom-content {
  display: flex;
  align-items: center;
  gap: 30px;
}

.why-bottom-content > span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #0b7564;
}

.why-bottom-content p {
  margin: 0;
  font-size: 0.95rem;
  font-style: italic;
  color: #697670;
}

.why-bottom-year {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #7a8581;
}

.why-lede {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1100px) {
  .why-title {
    font-size: clamp(3rem, 7vw, 5rem);
  }
  .why-intro-bottom {
    margin-left: 0;
  }
  .why-card {
    min-height: 300px;
  }
}

@media (max-width: 900px) {
  .why-exists-section {
    padding: 6rem 0;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-title {
    font-size: clamp(2.8rem, 8vw, 4.5rem);
  }
  .why-bottom {
    grid-template-columns: 60px 1fr auto;
  }
}

@media (max-width: 600px) {
  .why-exists-section {
    padding: 4.5rem 0;
  }
  .why-top {
    margin-bottom: 3rem;
  }
  .why-location {
    display: none;
  }
  .why-title {
    font-size: 2.6rem;
    line-height: 1;
  }
  .why-intro {
    margin-bottom: 3.5rem;
  }
  .why-intro-bottom {
    display: block;
    margin-top: 2rem;
  }
  .why-line {
    width: 45px;
    margin-bottom: 20px;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .why-card {
    min-height: 290px;
  }
  .why-card-top {
    margin-bottom: 2.5rem;
  }
  .why-bottom {
    display: block;
  }
  .why-bottom-line {
    width: 50px;
    margin-bottom: 20px;
  }
  .why-bottom-content {
    display: block;
  }
  .why-bottom-content p {
    margin-top: 10px;
  }
  .why-bottom-year {
    display: block;
    margin-top: 20px;
  }
}

/* next22 */
/* =========================================
   ROUTE SECTION
========================================= */

.route-section {
  position: relative;
  overflow: hidden;

  padding: 8rem 0 9rem;

  background: #f3f0e7;
  color: #082d28;
}

/* BACKGROUND WORD */

.route-bg-word {
  position: absolute;

  top: 15%;
  left: -7%;

  font-size: clamp(10rem, 23vw, 25rem);
  line-height: 0.8;

  font-weight: 800;
  letter-spacing: -0.08em;

  color: rgba(8, 45, 40, 0.025);

  pointer-events: none;
  user-select: none;
}

/* =========================================
   HEADER
========================================= */

.route-head {
  margin-bottom: 4rem;
}

.route-kicker {
  display: flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 1.5rem;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;

  color: #126a5b;
}

.route-kicker-line {
  width: 35px;
  height: 1px;

  background: #126a5b;
}

.route-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 4rem;
}

.route-title {
  margin: 0;
  color: #000;
  font-size: clamp(3.5rem, 5vw, 7rem);
  line-height: 0.88;

  font-weight: 300;

  letter-spacing: -0.055em;

  text-transform: uppercase;
}

.route-title span {
  display: block;
}

.route-title em {
  color: #84cc60;
  font-style: normal;
}

.route-intro {
  width: 280px;

  padding-bottom: 8px;
}

.route-intro span {
  display: block;

  margin-bottom: 12px;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;

  color: #126a5b;
}

.route-intro p {
  margin: 0;

  font-size: 14px;
  line-height: 1.6;

  color: #687671;
}

/* =========================================
   HERO
========================================= */

.route-hero {
  position: relative;

  height: min(58vh, 580px);

  overflow: hidden;

  border-radius: 18px;

  box-shadow: 0 25px 60px rgba(22, 40, 35, 0.13);
}

.route-hero img {
  width: 100%;
  height: 115%;

  object-fit: cover;

  display: block;

  transform: scale(1.05);
}

.route-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(0, 25, 22, 0.65) 0%,
    rgba(0, 25, 22, 0.2) 55%,
    rgba(0, 25, 22, 0.05) 100%
  );
}

/* DISTANCE */

.route-distance {
  position: absolute;

  left: 3rem;
  bottom: 3rem;

  color: #fff;
}

.route-distance span {
  display: block;
  max-width: 250px;
  margin-bottom: 10px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #84cc60;
  line-height: 1.5;
}

.route-distance strong {
  display: block;

  font-size: clamp(3rem, 5vw, 5.5rem);
  line-height: 0.9;

  font-weight: 600;

  letter-spacing: -0.04em;
}

.route-distance strong span {
  display: inline;

  margin: 0;

  font-size: 0.5em;

  color: #fff;
}

/* HERO INDEX */

.route-hero-index {
  position: absolute;

  top: 2rem;
  right: 2rem;

  display: flex;
  align-items: center;
  gap: 10px;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.15em;

  color: #fff;
}

.route-hero-index i {
  width: 35px;
  height: 1px;

  background: rgba(255, 255, 255, 0.5);
}

/* SCROLL */

.route-scroll {
  position: absolute;

  right: 2.5rem;
  bottom: 2.5rem;

  display: flex;
  align-items: center;
  gap: 15px;

  transform: rotate(-90deg);
  transform-origin: right bottom;

  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;

  color: rgba(255, 255, 255, 0.7);
}

.route-scroll-line {
  width: 50px;
  height: 1px;

  background: rgba(255, 255, 255, 0.5);
}

/* =========================================
   JOURNEY
========================================= */

.route-journey {
  position: relative;

  margin-top: 6rem;

  padding-bottom: 2rem;
}

/* CENTRAL LINE */

.route-line {
  position: absolute;

  top: 0;
  bottom: 0;

  left: 50%;

  width: 1px;

  transform: translateX(-50%);

  background: #cbd2cc;
}

.route-line-progress {
  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 0;

  background: #157665;

  transform-origin: top;
}

/* =========================================
   ROUTE STOP
========================================= */

.route-stop {
  position: relative;

  width: 50%;

  display: flex;

  margin-bottom: 2rem;
}

.route-stop-left {
  padding-right: 5rem;

  justify-content: flex-end;
  text-align: right;
}

.route-stop-right {
  margin-left: 50%;

  padding-left: 5rem;

  justify-content: flex-start;
}

/* NUMBER */

.route-stop-number {
  position: absolute;

  top: 0;

  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #9fb3ad;

  border-radius: 50%;

  background: #f3f0e7;

  font-size: 11px;
  font-weight: 700;

  color: #126a5b;

  z-index: 3;

  transition:
    background 0.4s ease,
    color 0.4s ease,
    transform 0.4s ease;
}

.route-stop-left .route-stop-number {
  right: -21px;
}

.route-stop-right .route-stop-number {
  left: -21px;
}

/* CARD */

.route-stop-content {
  position: relative;

  width: 100%;
  max-width: 560px;

  padding: 2rem;

  background: rgba(255, 255, 255, 0.72);

  border: 1px solid #d8ddd7;

  border-radius: 14px;

  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.4s ease,
    box-shadow 0.4s ease;
}

/* META */

.route-stop-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  margin-bottom: 1.5rem;
}

.route-stop-left .route-stop-meta {
  flex-direction: row-reverse;
}

.route-stop-meta span {
  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.14em;

  color: #84cc60;
}

.route-stop-meta small {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #565757;
}

/* TITLE */

.route-stop-content h3 {
  margin: 0 0 1rem;

  font-size: clamp(1.6rem, 2.2vw, 2.3rem);
  line-height: 1;

  font-weight: 400;

  letter-spacing: -0.035em;

  color: #092e29;
}

.route-stop-content h3 em {
  color: #84cc60;
  font-style: italic;
}

/* DESCRIPTION */

.route-stop-content p {
  margin: 0;

  font-size: 0.9rem;
  line-height: 1.7;

  color: #697772;
}

/* FOOTER */

.route-stop-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-top: 2rem;
  padding-top: 1rem;

  border-top: 1px solid #dce2dd;

  font-size: 8px;
  font-weight: 700;

  letter-spacing: 0.15em;

  color: #87938e;
}

.route-arrow {
  width: 32px;
  height: 32px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #ccd6d1;
  border-radius: 50%;

  font-size: 15px;

  color: #0c6959;

  transition:
    transform 0.4s ease,
    background 0.3s ease,
    color 0.3s ease;
}

/* HOVER */

.route-stop-content:hover {
  background: #fff;

  transform: translateY(-6px);

  box-shadow: 0 18px 45px rgba(17, 51, 44, 0.08);
}

.route-stop-content:hover .route-arrow {
  transform: rotate(45deg);

  background: #84cc60;
  color: #fff;
}

.route-stop:hover .route-stop-number {
  background: #0c6959;
  color: #fff;

  transform: scale(1.12);
}

/* =========================================
   FOOTER
========================================= */

.route-footer {
  margin-top: 5rem;
}

.route-footer-line {
  width: 100%;
  height: 1px;

  margin-bottom: 1.5rem;

  background: #c5cdc8;
}

.route-footer-label {
  display: flex;
  align-items: center;

  gap: 15px;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.14em;

  color: #126a5b;
}

.route-footer-label i {
  width: 35px;
  height: 1px;

  background: #aab7b1;
}

.route-footer-caption {
  margin-top: 1.5rem;

  font-size: clamp(1.2rem, 2vw, 2rem);
  font-weight: 300;

  letter-spacing: -0.02em;

  color: #697671;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {
  .route-section {
    padding: 6rem 0;
  }

  .route-head-row {
    display: block;
  }

  .route-intro {
    width: auto;
    max-width: 450px;

    margin-top: 2rem;
  }

  .route-hero {
    height: 450px;
  }

  .route-stop-left,
  .route-stop-right {
    width: 100%;

    margin-left: 0;

    padding-left: 4rem;
    padding-right: 0;

    text-align: left;

    justify-content: flex-start;
  }

  .route-line {
    left: 20px;
  }

  .route-stop-left .route-stop-number,
  .route-stop-right .route-stop-number {
    left: -1px;
    right: auto;
  }

  .route-stop-left .route-stop-meta {
    flex-direction: row;
  }

  .route-stop-content {
    max-width: none;
  }

  .route-footer-label {
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .route-section {
    padding: 4.5rem 0;
  }

  .route-title {
    font-size: 3rem;
  }

  .route-hero {
    height: 400px;

    border-radius: 12px;
  }

  .route-distance {
    left: 1.5rem;
    bottom: 1.5rem;
  }

  .route-distance strong {
    font-size: 3rem;
  }

  .route-scroll {
    display: none;
  }

  .route-journey {
    margin-top: 4rem;
  }

  .route-stop-left,
  .route-stop-right {
    padding-left: 3.5rem;
  }

  .route-stop-content {
    padding: 1.4rem;
  }

  .route-stop-meta {
    display: block;
  }

  .route-stop-meta small {
    display: block;
    margin-top: 7px;
  }

  .route-stop-content h3 {
    font-size: 1.6rem;
  }

  .route-footer-label {
    gap: 10px;
  }

  .route-footer-label i {
    width: 15px;
  }
}

/* =========================================
   AQUASCAPING ROADSHOW
========================================= */

.roadshow-section {
  position: relative;
  overflow: hidden;

  padding: 9rem 0;

  background: #000;
  color: #f4f4ed;
}

/* BACKGROUND WORD */

.roadshow-bg-text {
  position: absolute;

  top: 18%;
  right: -8%;

  font-size: clamp(10rem, 22vw, 24rem);

  line-height: 0.8;

  font-weight: 800;

  letter-spacing: -0.08em;

  color: rgb(255 255 255 / 7%);

  pointer-events: none;
  user-select: none;
}

/* =========================================
   HEADER
========================================= */

.roadshow-header {
  position: relative;
  z-index: 2;

  max-width: 1100px;

  margin-bottom: 5rem;
}

/* KICKER */

.roadshow-kicker {
  display: flex;
  align-items: center;

  gap: 12px;

  margin-bottom: 1.5rem;

  font-size: 11px;

  font-weight: 500;

  letter-spacing: 0.22em;

  color: #fff;
}

.roadshow-kicker span {
  width: 28px;
  height: 1px;

  background: #fff;
}

/* TITLE ROW */

.roadshow-title-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 40px;
}

.roadshow-title {
  margin: 0;

  max-width: 900px;

  font-size: clamp(3.5rem, 5vw, 7rem);

  line-height: 1;

  letter-spacing: -0.045em;

  text-transform: uppercase;
}

.roadshow-title em {
  display: block;

  color: #84cc60;

  font-style: normal;
}

/* COUNT */

.roadshow-count {
  display: flex;
  align-items: flex-end;

  gap: 10px;

  padding-bottom: 8px;
}

.roadshow-count strong {
  font-size: 3rem;

  line-height: 0.8;

  font-weight: 300;

  color: #84cc60;
}

.roadshow-count span {
  font-size: 13px;

  line-height: 1.4;

  letter-spacing: 0.14em;

  color: #6e7d78;
}

/* INTRO */

.roadshow-intro {
  display: grid;

  grid-template-columns: 80px minmax(0, 760px);

  gap: 25px;

  margin-top: 2.5rem;

  margin-left: 5%;
}

.roadshow-intro-line {
  width: 100%;
  height: 1px;

  margin-top: 14px;

  background: #9f9f9f;
}

.roadshow-intro p {
  margin: 0;

  font-size: clamp(1.1rem, 1.7vw, 1.5rem);

  line-height: 1.6;

  font-style: italic;
  opacity: 0.5;
}

/* =========================================
   GRID
========================================= */

.roadshow-grid {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 1px;

  background: #243a35;

  border: 1px solid #243a35;
}

/* =========================================
   CARD
========================================= */

.roadshow-card {
  position: relative;

  min-height: 340px;

  padding: 1.7rem;

  background: #050b0a;

  overflow: hidden;

  display: flex;
  flex-direction: column;

  transition:
    background 0.45s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

/* GREEN GLOW */

.roadshow-card::after {
  content: "";

  position: absolute;

  width: 180px;
  height: 180px;

  right: -90px;
  bottom: -90px;

  border-radius: 50%;

  background: rgba(54, 190, 145, 0.08);

  filter: blur(30px);

  opacity: 0;

  transition: opacity 0.5s ease;
}

/* TOP */

.roadshow-card-top {
  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-bottom: 4rem;
}

.roadshow-number {
  font-size: 11px;

  font-weight: 600;

  letter-spacing: 0.1em;

  color: #4e7167;
}

.roadshow-label {
  padding: 5px 9px;

  border: 1px solid #84cc605c;

  border-radius: 50px;

  font-size: 8px;

  font-weight: 600;

  letter-spacing: 0.14em;

  color: #607748;

  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease;
}

/* SYMBOL */

.roadshow-symbol {
  position: relative;

  width: 42px;
  height: 42px;

  margin-bottom: 1.5rem;

  border: 1px solid #27534a;

  border-radius: 10px;

  overflow: hidden;
}

.roadshow-symbol span:first-child {
  position: absolute;

  left: 9px;
  bottom: 8px;

  width: 20px;
  height: 20px;

  border-radius: 50%;

  background: #84cc60;
}

.roadshow-symbol span:last-child {
  position: absolute;

  right: -3px;
  top: -3px;

  width: 22px;
  height: 22px;

  border-radius: 50%;

  background: #84cc6059;
}

/* TITLE */

.roadshow-card h3 {
  margin: 0 0 1rem;

  max-width: 240px;

  font-size: 1.25rem;

  line-height: 1.15;
  letter-spacing: -0.02em;

  color: #f5f5ee;
}

.roadshow-card h3 em {
  color: #84cc60;

  font-style: normal;
}

/* DESCRIPTION */

.roadshow-card p {
  max-width: 260px;

  margin: 0 0 20px;

  font-size: 0.9rem;

  line-height: 1.6;

  color: #82918c;
}

/* FOOTER */

.roadshow-card-bottom {
  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-top: auto;

  padding-top: 2rem;

  border-top: 1px solid #1c302b;

  font-size: 10px;

  letter-spacing: 0.14em;
  color: #c8c8c8;
}

.roadshow-arrow {
  width: 30px;
  height: 30px;

  display: flex;

  align-items: center;
  justify-content: center;

  border: 1px solid #84cc60;

  border-radius: 50%;

  font-size: 14px;

  color: #84cc60;

  transition:
    transform 0.4s ease,
    background 0.3s ease,
    color 0.3s ease;
}

/* =========================================
   HOVER
========================================= */

.roadshow-card:hover {
  background: #0a1714;

  transform: translateY(-6px);

  z-index: 3;
}

.roadshow-card:hover::after {
  opacity: 1;
}

.roadshow-card:hover .roadshow-label {
  background: #84cc60;

  border-color: #84cc60;

  color: #06100d;
}

.roadshow-card:hover .roadshow-arrow {
  transform: rotate(45deg);

  background: #84cc60;

  color: #06100d;
}

/* =========================================
   FOOTER
========================================= */

.roadshow-footer {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 20px;

  margin-top: 3rem;

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 0.18em;

  color: #557069;
}

.roadshow-footer i {
  width: 30px;
  height: 1px;

  background: #29433c;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {
  .roadshow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .roadshow-title {
    font-size: clamp(3.2rem, 8vw, 5.5rem);
  }
}

@media (max-width: 700px) {
  .roadshow-section {
    padding: 5rem 0;
  }

  .roadshow-title-wrap {
    display: block;
  }

  .roadshow-count {
    margin-top: 2rem;
  }

  .roadshow-intro {
    grid-template-columns: 40px minmax(0, 1fr);

    margin-left: 0;

    gap: 15px;
  }

  .roadshow-grid {
    grid-template-columns: 1fr;
  }

  .roadshow-card {
    min-height: 300px;
  }

  .roadshow-footer {
    flex-wrap: wrap;
  }
}

/* next section */
/* =========================================
   SPONSOR YOUR CITY — DARK THEME
========================================= */

.sponsor-section {
  position: relative;
  overflow: hidden;

  padding: 8rem 0 7rem;

  background: #000;
  color: #f5f5ee;
}

/* =========================================
   BACKGROUND WORD
========================================= */

.sponsor-bg-text {
  position: absolute;

  top: 16%;
  right: -8%;

  font-size: clamp(10rem, 22vw, 24rem);
  line-height: 0.8;

  font-weight: 800;
  letter-spacing: -0.09em;

  color: rgba(255, 255, 255, 0.025);

  pointer-events: none;
  user-select: none;

  z-index: 0;
}

/* =========================================
   CONTAINER CONTENT
========================================= */

.sponsor-section .container {
  position: relative;
  z-index: 2;
}

/* =========================================
   TOP META
========================================= */

.sponsor-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4rem;
}

/* SECTION NUMBER */

.sponsor-number {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #83ca5f;
}

.sponsor-number span {
  font-size: 14px;
  color: #83ca5f;
}

.sponsor-number i {
  display: block;
  width: 40px;
  height: 1px;
  background: #3b6a5c;
}

/* YEAR */

.sponsor-year {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #61766e;
}

/* =========================================
   INTRO
========================================= */

.sponsor-intro {
  max-width: 1050px;
  margin-bottom: 5rem;
}

/* KICKER */

.sponsor-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: #fff;
}

.sponsor-kicker span {
  display: block;
  width: 28px;
  height: 1px;
  background: #fff;
}

/* =========================================
   MAIN TITLE
========================================= */

.sponsor-title {
  max-width: 1000px;
  margin: 0;
  font-size: clamp(3rem, 5vw, 6.5rem);
  line-height: 1;
  letter-spacing: -0.055em;

  text-transform: uppercase;

  color: #f5f5ee;
}

.sponsor-title em {
  color: #84cc60;

  font-style: normal;
}

/* =========================================
   INTRO DESCRIPTION
========================================= */

.sponsor-intro-bottom {
  display: grid;

  grid-template-columns: 100px minmax(0, 760px);

  gap: 30px;

  margin-top: 2.8rem;

  margin-left: 6%;
}

.sponsor-intro-line {
  width: 100%;
  height: 1px;

  margin-top: 14px;

  background: #31463f;
}

.sponsor-lede {
  margin: 0;

  font-size: clamp(1.05rem, 1.5vw, 1.35rem);

  line-height: 1.65;

  font-style: italic;

  color: #93a79f;
}

/* =========================================
   PARTNER GRID
========================================= */

.sponsor-grid {
  display: grid;

  grid-template-columns: repeat(5, minmax(0, 1fr));

  gap: 1px;

  background: #263b35;

  border: 1px solid #263b35;
}

/* =========================================
   SPONSOR CARD
========================================= */

.sponsor-card {
  position: relative;

  min-height: 380px;

  padding: 1.7rem;

  background: #07110f;

  display: flex;
  flex-direction: column;

  overflow: hidden;

  transition:
    background 0.4s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s ease;
}

/* CARD GLOW */

.sponsor-card::after {
  content: "";

  position: absolute;

  width: 180px;
  height: 180px;

  right: -100px;
  bottom: -100px;

  border-radius: 50%;

  background: rgba(159, 232, 197, 0.08);

  filter: blur(35px);

  opacity: 0;

  pointer-events: none;

  transition: opacity 0.5s ease;
}

/* =========================================
   CARD TOP
========================================= */

.sponsor-card-head {
  display: flex;

  align-items: center;
  justify-content: space-between;

  margin-bottom: 4rem;
}

.sponsor-card-number {
  font-size: 11px;

  font-weight: 700;

  letter-spacing: 0.1em;

  color: #547068;
}

/* =========================================
   GOLD CODE CIRCLE
========================================= */

.sponsor-card-code {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #83ca5f;
  color: #06100d;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition:
    transform 0.4s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

/* =========================================
   PARTNER TYPE
========================================= */

.sponsor-card-type {
  margin-bottom: 1rem;

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 0.15em;

  color: #797979;
}

/* =========================================
   CARD TITLE
========================================= */

.sponsor-card h3 {
  max-width: 220px;
  margin: 0 0 1rem;
  font-size: 1.35rem;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #f5f5ee;
}

.sponsor-card h3 em {
  color: #83ca5f;

  font-style: italic;
}

/* =========================================
   CARD DESCRIPTION
========================================= */

.sponsor-card p {
  max-width: 230px;

  margin: 0 0 20px;

  font-size: 0.88rem;

  line-height: 1.65;

  color: #84958f;
}

/* =========================================
   CARD FOOTER
========================================= */

.sponsor-card-footer {
  display: flex;

  align-items: center;
  justify-content: space-between;

  margin-top: auto;

  padding-top: 1.5rem;

  border-top: 1px solid #233831;

  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.13em;
  color: #979797;
}

/* =========================================
   CARD ARROW
========================================= */

.sponsor-arrow {
  width: 32px;
  height: 32px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #83ca5f;

  border-radius: 50%;

  color: #83ca5f;

  font-size: 15px;

  transition:
    transform 0.4s ease,
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

/* =========================================
   CARD HOVER
========================================= */

.sponsor-card:hover {
  background: #0d1d19;

  transform: translateY(-7px);

  z-index: 3;
}

.sponsor-card:hover::after {
  opacity: 1;
}

.sponsor-card:hover .sponsor-card-code {
  transform: scale(1.08);

  background: #f0bd52;

  box-shadow: 0 0 0 6px rgba(234, 182, 77, 0.08);
}

.sponsor-card:hover .sponsor-arrow {
  transform: rotate(45deg);

  background: #83ca5f;

  border-color: #83ca5f;

  color: #06100d;
}

/* =========================================
   CTA
========================================= */

.sponsor-cta {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 3rem;

  margin-top: 4rem;

  padding: 2.5rem 3rem;

  background: #102c25;

  border: 1px solid #1e473c;

  color: #fff;
}

/* CTA LABEL */

.sponsor-cta-label {
  display: block;

  margin-bottom: 10px;

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 0.18em;

  color: #eab64d;
}

/* CTA TITLE */

.sponsor-cta h3 {
  margin: 0;

  font-size: clamp(1.8rem, 3vw, 3rem);

  line-height: 0.95;

  letter-spacing: -0.035em;

  font-weight: 500;

  color: #f5f5ee;
}

.sponsor-cta h3 em {
  color: #9fe8c5;

  font-style: normal;
}

/* =========================================
   CTA BUTTON
========================================= */

.sponsor-cta-button {
  flex-shrink: 0;

  display: flex;

  align-items: center;

  gap: 20px;

  padding: 13px 14px 13px 20px;

  border: 1px solid rgba(159, 232, 197, 0.3);

  color: #f5f5ee;

  text-decoration: none;

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 0.13em;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

.sponsor-cta-button i {
  width: 32px;
  height: 32px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #9fe8c5;

  color: #06100d;

  font-size: 15px;

  font-style: normal;

  transition: transform 0.3s ease;
}

.sponsor-cta-button:hover {
  background: #9fe8c5;

  border-color: #9fe8c5;

  color: #06100d;
}

.sponsor-cta-button:hover i {
  transform: rotate(45deg);
}

/* =========================================
   BOTTOM NAV
========================================= */

.sponsor-bottom {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 18px;

  margin-top: 2.5rem;

  font-size: 8px;

  font-weight: 700;

  letter-spacing: 0.18em;

  color: #60766e;
}

.sponsor-bottom i {
  width: 28px;
  height: 1px;

  background: #29443c;
}

/* =========================================
   BACKGROUND DECORATION
========================================= */

.sponsor-section::before {
  content: "";

  position: absolute;

  top: -200px;
  left: 50%;

  width: 700px;
  height: 400px;

  transform: translateX(-50%);

  background: radial-gradient(
    ellipse,
    rgba(43, 140, 110, 0.08) 0%,
    rgba(43, 140, 110, 0) 70%
  );

  pointer-events: none;
}

/* =========================================
   RESPONSIVE — TABLET
========================================= */

@media (max-width: 1100px) {
  .sponsor-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sponsor-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
  }
}

/* =========================================
   RESPONSIVE — SMALL TABLET
========================================= */

@media (max-width: 800px) {
  .sponsor-section {
    padding: 6rem 0;
  }

  .sponsor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sponsor-intro-bottom {
    margin-left: 0;
  }

  .sponsor-title {
    font-size: clamp(2.8rem, 8vw, 5rem);
  }

  .sponsor-cta {
    padding: 2rem;
  }
}

/* =========================================
   RESPONSIVE — MOBILE
========================================= */

@media (max-width: 550px) {
  .sponsor-section {
    padding: 4.5rem 0;
  }

  .sponsor-top {
    margin-bottom: 3rem;
  }

  .sponsor-year {
    display: none;
  }

  .sponsor-title {
    font-size: 2.7rem;

    line-height: 0.95;
  }

  .sponsor-intro-bottom {
    display: grid;

    grid-template-columns: 35px minmax(0, 1fr);

    gap: 15px;

    margin-top: 2rem;
  }

  .sponsor-lede {
    font-size: 1rem;

    line-height: 1.6;
  }

  .sponsor-grid {
    grid-template-columns: 1fr;
  }

  .sponsor-card {
    min-height: 320px;

    padding: 1.5rem;
  }

  .sponsor-card-head {
    margin-bottom: 3rem;
  }

  .sponsor-cta {
    display: block;

    padding: 2rem 1.5rem;
  }

  .sponsor-cta h3 {
    font-size: 2rem;

    line-height: 1;
  }

  .sponsor-cta-button {
    width: fit-content;

    margin-top: 2rem;
  }

  .sponsor-bottom {
    flex-wrap: wrap;

    gap: 10px;

    line-height: 1.8;
  }

  .sponsor-bg-text {
    font-size: 9rem;

    top: 25%;
  }
}

/* =========================================
   BRAND BENEFITS SECTION
========================================= */

.brand-benefits-section {
  position: relative;
  overflow: hidden;

  padding: 8rem 0;

  background: #062a24;
  color: #f5f4ed;
}

/* =========================================
   CONTAINER
========================================= */

.brand-benefits-section .container {
  position: relative;
  z-index: 2;
}

/* =========================================
   HEADER
========================================= */

.brand-benefits-head {
  max-width: 950px;

  margin-bottom: 4rem;
}

/* =========================================
   KICKER
========================================= */

.brand-benefits-kicker {
  display: flex;
  align-items: center;

  gap: 12px;

  margin-bottom: 1.5rem;

  font-size: 11px;
  font-weight: 500;

  letter-spacing: 0.2em;
  color: #fff;
}

.brand-benefits-kicker span {
  display: block;

  width: 32px;
  height: 1px;

  background: #fff;
}

/* =========================================
   MAIN TITLE
========================================= */

.brand-benefits-title {
  max-width: 900px;

  margin: 0;

  font-size: clamp(3rem, 5vw, 6.2rem);

  line-height: 1.1;

  letter-spacing: -0.055em;

  text-transform: uppercase;

  color: #f7f6ef;
}

.brand-benefits-title em {
  display: block;

  color: #84cc60;

  font-style: normal;
}

/* =========================================
   BENEFITS GRID
========================================= */

.brand-benefits-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  border: 1px solid rgba(150, 207, 190, 0.28);

  border-radius: 12px;

  overflow: hidden;

  background: rgba(255, 255, 255, 0.025);
}

/* =========================================
   BENEFIT CARD
========================================= */

.brand-benefit-card {
  position: relative;

  min-height: 255px;

  padding: 2.4rem 2rem;

  display: flex;
  flex-direction: column;

  border-right: 1px solid rgba(150, 207, 190, 0.28);

  border-bottom: 1px solid rgba(150, 207, 190, 0.28);

  background: #08342d;

  overflow: hidden;

  transition:
    background 0.45s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Remove right border */

.brand-benefit-card:nth-child(3n) {
  border-right: 0;
}

/* Remove bottom border */

.brand-benefit-card:nth-child(n + 4) {
  border-bottom: 0;
}

/* =========================================
   HOVER GLOW
========================================= */

.brand-benefit-card::before {
  content: "";

  position: absolute;

  width: 220px;
  height: 220px;

  right: -120px;
  bottom: -120px;

  border-radius: 50%;

  background: rgba(142, 229, 194, 0.12);

  filter: blur(45px);

  opacity: 0;

  transition: opacity 0.5s ease;

  pointer-events: none;
}

/* =========================================
   NUMBER
========================================= */

.brand-benefit-number {
  margin-bottom: 3.5rem;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 0.15em;

  color: #84cc60;

  transition:
    color 0.3s ease,
    transform 0.4s ease;
}

/* =========================================
   CONTENT
========================================= */

.brand-benefit-content {
  max-width: 330px;
}

/* =========================================
   TITLE
========================================= */

.brand-benefit-content h3 {
  margin: 0 0 1rem;

  font-size: 1.25rem;

  line-height: 1.15;

  color: #ffffff;

  transition:
    color 0.3s ease,
    transform 0.4s ease;
}

/* =========================================
   DESCRIPTION
========================================= */

.brand-benefit-content p {
  max-width: 330px;

  margin: 0;

  font-size: 0.92rem;

  line-height: 1.65;

  color: #9db4ad;

  transition: color 0.3s ease;
}

/* =========================================
   ARROW
========================================= */

.brand-benefit-arrow {
  position: absolute;

  right: 1.8rem;
  bottom: 1.5rem;

  width: 34px;
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(142, 229, 194, 0.25);

  border-radius: 50%;

  color: #8ee5c2;

  font-size: 16px;

  opacity: 0.5;

  transition:
    background 0.35s ease,
    color 0.35s ease,
    transform 0.4s ease,
    opacity 0.35s ease;
}

/* =========================================
   CARD HOVER
========================================= */

.brand-benefit-card:hover {
  background: #0b4037;

  transform: translateY(-5px);

  z-index: 2;
}

.brand-benefit-card:hover::before {
  opacity: 1;
}

.brand-benefit-card:hover .brand-benefit-number {
  color: #8ee5c2;

  transform: translateX(5px);
}

.brand-benefit-card:hover .brand-benefit-content h3 {
  color: #84cc60;

  transform: translateX(4px);
}

.brand-benefit-card:hover .brand-benefit-content p {
  color: #c2d3ce;
}

.brand-benefit-card:hover .brand-benefit-arrow {
  opacity: 1;

  background: #84cc60;

  color: #062a24;

  border-color: #84cc60;

  transform: rotate(45deg);
}

/* =========================================
   BOTTOM STATEMENT
========================================= */

.brand-benefits-bottom {
  position: relative;

  display: flex;
  align-items: center;

  gap: 2rem;

  margin-top: 2.5rem;

  padding: 1.8rem 2rem;

  background: #113c34;

  border-left: 3px solid #84cc60;
}

/* =========================================
   BOTTOM LINE
========================================= */

.brand-benefits-bottom-line {
  width: 55px;
  height: 1px;

  flex-shrink: 0;

  background: #547c72;
}

/* =========================================
   BOTTOM TEXT
========================================= */

.brand-benefits-bottom p {
  margin: 0;

  font-size: clamp(1rem, 1.5vw, 1.25rem);

  line-height: 1.5;

  font-style: italic;

  color: #e6eee9;
}

/* =========================================
   BOTTOM ARROW
========================================= */

.brand-benefits-bottom-arrow {
  margin-left: auto;

  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #84cc60;

  border-radius: 50%;

  color: #84cc60;

  font-size: 16px;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.brand-benefits-bottom:hover .brand-benefits-bottom-arrow {
  background: #84cc60;

  color: #062a24;

  transform: translateY(4px);
}

/* =========================================
   BACKGROUND DECORATION
========================================= */

.brand-benefits-section::before {
  content: "STORY";

  position: absolute;

  right: -3%;

  top: 12%;

  font-size: clamp(10rem, 22vw, 22rem);

  line-height: 0.7;

  font-weight: 800;

  letter-spacing: -0.09em;

  color: rgb(255 255 255 / 12%);

  pointer-events: none;

  user-select: none;
}

/* =========================================
   RESPONSIVE — TABLET
========================================= */

@media (max-width: 1000px) {
  .brand-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-benefit-card:nth-child(3n) {
    border-right: 1px solid rgba(150, 207, 190, 0.28);
  }

  .brand-benefit-card:nth-child(2n) {
    border-right: 0;
  }

  .brand-benefit-card:nth-child(n + 4) {
    border-bottom: 1px solid rgba(150, 207, 190, 0.28);
  }

  .brand-benefit-card:nth-child(n + 5) {
    border-bottom: 0;
  }
}

/* =========================================
   RESPONSIVE — MOBILE
========================================= */

@media (max-width: 600px) {
  .brand-benefits-section {
    padding: 5rem 0;
  }

  .brand-benefits-head {
    margin-bottom: 3rem;
  }

  .brand-benefits-title {
    font-size: 2.7rem;

    line-height: 0.95;
  }

  .brand-benefits-grid {
    grid-template-columns: 1fr;

    border-radius: 8px;
  }

  .brand-benefit-card,
  .brand-benefit-card:nth-child(2n),
  .brand-benefit-card:nth-child(3n) {
    min-height: 280px;

    border-right: 0;

    border-bottom: 1px solid rgba(150, 207, 190, 0.28);
  }

  .brand-benefit-card:last-child {
    border-bottom: 0;
  }

  .brand-benefit-number {
    margin-bottom: 3rem;
  }

  .brand-benefits-bottom {
    align-items: flex-start;

    gap: 1rem;

    padding: 1.5rem;
  }

  .brand-benefits-bottom-line {
    width: 25px;

    margin-top: 10px;
  }

  .brand-benefits-bottom-arrow {
    display: none;
  }
}

/* =========================================
   SPONSORSHIP OPPORTUNITIES
========================================= */

.sponsorship-section {
  position: relative;
  overflow: hidden;

  padding: 8rem 0;

  background: #ffffff;

  color: #082d28;
}

/* =========================================
   BACKGROUND WORD
========================================= */

.sponsorship-bg-text {
  position: absolute;

  top: 20%;
  right: -8%;

  font-size: clamp(10rem, 22vw, 24rem);

  line-height: 0.8;

  font-weight: 800;

  letter-spacing: -0.09em;

  color: rgba(8, 45, 40, 0.11);

  pointer-events: none;

  user-select: none;
}

/* =========================================
   CONTAINER
========================================= */

.sponsorship-section .container {
  position: relative;

  z-index: 2;
}

/* =========================================
   HEADER
========================================= */

.sponsorship-header {
  max-width: 900px;

  margin-bottom: 4.5rem;
}

/* =========================================
   KICKER
========================================= */

.sponsorship-kicker {
  display: flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 1.4rem;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 0.2em;

  color: #3f3f3f;
}

.sponsorship-kicker span {
  width: 32px;

  height: 1px;

  background: #3f3f3f;
}

/* =========================================
   TITLE
========================================= */

.sponsorship-title {
  max-width: 850px;

  margin: 0;

  font-size: clamp(3rem, 5vw, 6rem);

  line-height: 0.92;

  letter-spacing: -0.055em;

  text-transform: uppercase;

  color: #092e29;
}

.sponsorship-title em {
  display: block;

  color: #84cc60;

  font-style: normal;
}

/* =========================================
   INTRO
========================================= */

.sponsorship-intro {
  max-width: 650px;

  margin: 2rem 0 0 7%;

  font-size: clamp(1rem, 1.4vw, 1.2rem);

  line-height: 1.65;

  font-style: italic;

  color: #657670;
}

/* =========================================
   PARTNERSHIP GRID
========================================= */

.sponsorship-grid {
  display: grid;

  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 14px;
}

/* =========================================
   CARD
========================================= */

.sponsorship-card {
  position: relative;

  min-height: 420px;

  padding: 2rem 1.6rem;

  display: flex;

  flex-direction: column;

  background: #fafaf7;

  border: 1px solid #d9dfdb;

  border-radius: 12px;

  overflow: visible;

  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    box-shadow 0.4s ease,
    background 0.35s ease;
}

/* =========================================
   FEATURED CARD
========================================= */

.sponsorship-featured {
  border-color: #e2a935;

  background: #fffdf6;

  box-shadow: 0 18px 45px rgba(213, 163, 56, 0.14);
}

/* =========================================
   TOP TIER BADGE
========================================= */

.sponsorship-badge {
  position: absolute;

  top: -13px;

  left: 28px;

  padding: 6px 14px;

  border-radius: 30px;

  background: #eab64d;

  color: #082d28;

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 0.13em;
}

/* =========================================
   CARD TOP
========================================= */

.sponsorship-card-top {
  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-bottom: 3rem;
}

.sponsorship-number {
  font-size: 10px;

  font-weight: 700;

  letter-spacing: 0.12em;

  color: #81908b;
}

.sponsorship-code {
  width: 40px;

  height: 40px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  border: 1px solid #d5ddd8;

  color: #0b695b;

  font-size: 11px;

  font-weight: 800;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

/* Featured code */

.sponsorship-featured .sponsorship-code {
  background: #eab64d;

  border-color: #eab64d;

  color: #082d28;
}

/* =========================================
   TYPE
========================================= */

.sponsorship-type {
  display: block;

  margin-bottom: 1rem;

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 0.13em;

  line-height: 1.4;

  color: #0b6c5d;
}

/* =========================================
   CARD TITLE
========================================= */

.sponsorship-card h3 {
  max-width: 270px;

  margin: 0 0 1.8rem;

  font-size: 1.25rem;

  line-height: 1.2;

  letter-spacing: -0.02em;

  color: #092e29;
}

.sponsorship-card h3 em {
  color: #0b7563;

  font-style: italic;
}

/* =========================================
   INVESTMENT
========================================= */

.sponsorship-investment {
  display: flex;

  flex-direction: column;

  gap: 8px;

  margin-bottom: 1.5rem;

  padding-top: 1rem;

  border-top: 1px solid #dfe4e0;
}

.sponsorship-investment span {
  font-size: 8px;

  font-weight: 800;

  letter-spacing: 0.14em;

  color: #71807b;
}

.sponsorship-investment strong {
  font-size: 1.45rem;

  line-height: 1;

  letter-spacing: -0.03em;

  color: #092e29;
}

/* =========================================
   DESCRIPTION
========================================= */

.sponsorship-card p {
  margin: 0 0 14px;

  font-size: 0.87rem;

  line-height: 1.65;

  color: #687873;
}

/* =========================================
   CARD FOOTER
========================================= */

.sponsorship-card-footer {
  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-top: auto;

  padding-top: 1.5rem;

  border-top: 1px solid #dfe4e0;

  font-size: 10px;

  letter-spacing: 0.12em;

  color: #89948f;
}

.sponsorship-card-footer i {
  width: 30px;

  height: 30px;

  display: flex;

  align-items: center;

  justify-content: center;

  border: 1px solid #d1d9d4;

  border-radius: 50%;

  color: #0b6c5d;

  font-size: 14px;

  font-style: normal;

  transition:
    transform 0.35s ease,
    background 0.3s ease,
    color 0.3s ease;
}

/* =========================================
   HOVER
========================================= */

.sponsorship-card:hover {
  transform: translateY(-8px);

  border-color: #9dbcb2;

  background: #ffffff;

  box-shadow: 0 20px 45px rgba(8, 45, 40, 0.08);
}

.sponsorship-featured:hover {
  border-color: #e2a935;

  box-shadow: 0 22px 50px rgba(213, 163, 56, 0.18);
}

.sponsorship-card:hover .sponsorship-code {
  transform: scale(1.08);

  background: #0b6c5d;

  border-color: #0b6c5d;

  color: #ffffff;
}

.sponsorship-featured:hover .sponsorship-code {
  background: #f0bd52;

  border-color: #f0bd52;

  color: #082d28;
}

.sponsorship-card:hover .sponsorship-card-footer i {
  transform: rotate(45deg);

  background: #0b6c5d;

  border-color: #0b6c5d;

  color: #ffffff;
}

/* =========================================
   IN-KIND PARTNERS
========================================= */

.inkind-partners {
  display: flex;

  align-items: center;

  gap: 2rem;

  margin-top: 3rem;

  padding: 1.5rem 1.8rem;

  background: #f4f0e3;

  border-radius: 10px;
}

.inkind-title {
  display: flex;

  align-items: center;

  gap: 10px;

  flex-shrink: 0;

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 0.15em;

  color: #80651e;
}

.inkind-title span {
  width: 8px;

  height: 8px;

  border-radius: 50%;

  background: #eab64d;
}

/* =========================================
   IN-KIND LIST
========================================= */

.inkind-list {
  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 10px;
}

.inkind-list span {
  padding: 9px 16px;

  border: 1px solid #d1d8d2;

  border-radius: 30px;

  background: #ffffff;

  font-size: 11px;

  color: #193d36;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.inkind-list span:hover {
  background: #0b6c5d;

  border-color: #0b6c5d;

  color: #ffffff;

  transform: translateY(-2px);
}

/* =========================================
   BOTTOM CTA
========================================= */

.sponsorship-bottom {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 3rem;

  margin-top: 4rem;

  padding: 2.5rem 3rem;

  background: #092e29;

  color: #ffffff;

  border-radius: 10px;
}

.sponsorship-bottom > div > span {
  display: block;

  margin-bottom: 10px;

  font-size: 10px;
  font-weight: 600;

  letter-spacing: 0.16em;

  color: #ffffffba;
}

.sponsorship-bottom h3 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.sponsorship-bottom h3 em {
  color: #83cb60;
  font-style: normal;
}

/* =========================================
   CTA BUTTON
========================================= */

.sponsorship-bottom > a {
  flex-shrink: 0;

  display: flex;

  align-items: center;

  gap: 15px;

  padding: 10px 10px 10px 18px;

  border: 1px solid #83cb60;

  color: #ffffff;

  text-decoration: none;

  font-size: 8px;

  font-weight: 600;

  letter-spacing: 0.13em;

  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.sponsorship-bottom > a i {
  width: 34px;

  height: 34px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: #83cb60;

  color: #092e29;

  font-size: 15px;

  font-style: normal;

  transition: transform 0.3s ease;
}

.sponsorship-bottom > a:hover {
  background: #83cb60;

  color: #092e29;
}

.sponsorship-bottom > a:hover i {
  transform: rotate(45deg);
}

/* =========================================
   BACKGROUND DECORATION
========================================= */

.sponsorship-section::before {
  content: "";

  position: absolute;

  top: -180px;

  left: 50%;

  width: 700px;

  height: 350px;

  transform: translateX(-50%);

  background: radial-gradient(
    ellipse,
    rgba(72, 156, 128, 0.08) 0%,
    rgba(72, 156, 128, 0) 70%
  );

  pointer-events: none;
}

/* =========================================
   RESPONSIVE — 1100px
========================================= */

@media (max-width: 1100px) {
  .sponsorship-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* =========================================
   RESPONSIVE — 700px
========================================= */

@media (max-width: 700px) {
  .sponsorship-section {
    padding: 5.5rem 0;
  }

  .sponsorship-title {
    font-size: clamp(2.7rem, 9vw, 4.5rem);
  }

  .sponsorship-intro {
    margin-left: 0;
  }

  .sponsorship-grid {
    grid-template-columns: 1fr;
  }

  .sponsorship-card {
    min-height: 390px;
  }

  .inkind-partners {
    display: block;

    padding: 1.5rem;
  }

  .inkind-title {
    margin-bottom: 1rem;
  }

  .sponsorship-bottom {
    display: block;

    padding: 2rem;
  }

  .sponsorship-bottom > a {
    width: fit-content;

    margin-top: 2rem;
  }
}

/* =========================================
   RESPONSIVE — 480px
========================================= */

@media (max-width: 480px) {
  .sponsorship-title {
    font-size: 2.65rem;
  }

  .sponsorship-card {
    padding: 1.5rem;

    min-height: 360px;
  }

  .sponsorship-card-top {
    margin-bottom: 2.5rem;
  }

  .sponsorship-bottom h3 {
    font-size: 1.9rem;
  }
}

/* =========================================
   WHAT SPONSORS CAN RECEIVE
========================================= */

.sponsor-receive-section {
  position: relative;
  overflow: hidden;

  padding: 8rem 0;

  background: #041c18;

  color: #f4f5ed;
}

/* =========================================
   BACKGROUND TEXT
========================================= */

.sponsor-receive-bg {
  position: absolute;

  right: -5%;
  top: 18%;

  font-size: clamp(10rem, 23vw, 25rem);

  line-height: 0.75;

  font-weight: 800;

  letter-spacing: -0.09em;

  color: rgb(255 255 255 / 7%);

  pointer-events: none;

  user-select: none;
}

/* =========================================
   TOP GLOW
========================================= */

.sponsor-receive-section::before {
  content: "";

  position: absolute;

  top: -180px;
  left: 30%;

  width: 650px;
  height: 400px;

  background: radial-gradient(
    ellipse,
    rgba(76, 183, 145, 0.1),
    transparent 70%
  );

  pointer-events: none;
}

/* =========================================
   CONTAINER
========================================= */

.sponsor-receive-section .container {
  position: relative;

  z-index: 2;
}

/* =========================================
   HEADER
========================================= */

.sponsor-receive-header {
  max-width: 850px;

  margin-bottom: 4.5rem;
}

/* =========================================
   KICKER
========================================= */

.sponsor-receive-kicker {
  display: flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 1.4rem;

  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #c9c9c9;
}

.sponsor-receive-kicker span {
  width: 32px;

  height: 1px;

  background: #fff;
}

/* =========================================
   TITLE
========================================= */

.sponsor-receive-title {
  max-width: 850px;

  margin: 0;

  font-size: clamp(3.2rem, 5vw, 6.2rem);

  line-height: 0.9;

  letter-spacing: -0.055em;

  text-transform: uppercase;

  color: #f5f5ee;
}

.sponsor-receive-title em {
  display: block;

  color: #84cc60;

  font-style: normal;
}

/* =========================================
   BENEFIT GRID
========================================= */

.sponsor-receive-grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  border-top: 1px solid rgba(143, 211, 191, 0.24);

  border-left: 1px solid rgba(143, 211, 191, 0.24);
}

/* =========================================
   BENEFIT CARD
========================================= */

.receive-card {
  position: relative;

  min-height: 245px;

  padding: 1.8rem 2rem;

  display: flex;

  flex-direction: column;

  border-right: 1px solid rgba(143, 211, 191, 0.24);

  border-bottom: 1px solid rgba(143, 211, 191, 0.24);

  background: rgba(255, 255, 255, 0.015);

  overflow: hidden;

  transition:
    background 0.4s ease,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* =========================================
   CARD TOP
========================================= */

.receive-card-top {
  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-bottom: 2.7rem;
}

/* =========================================
   NUMBER
========================================= */

.receive-number {
  font-size: 11px;

  font-weight: 800;

  letter-spacing: 0.1em;

  color: #84cc60;

  transition:
    transform 0.35s ease,
    color 0.35s ease;
}

/* =========================================
   ICON
========================================= */

.receive-icon {
  width: 44px;

  height: 44px;

  display: flex;

  align-items: center;

  justify-content: center;

  border: 1px solid #84cc60;

  border-radius: 50%;

  background: rgba(134, 223, 187, 0.05);

  color: #84cc60;

  font-size: 15px;

  transition:
    background 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease,
    transform 0.4s ease;
}

/* =========================================
   CONTENT
========================================= */

.receive-content {
  max-width: 330px;
}

/* =========================================
   TITLE
========================================= */

.receive-content h3 {
  margin: 0 0 0.8rem;

  font-size: 1.05rem;

  line-height: 1.2;

  color: #f2f2ea;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

/* =========================================
   DESCRIPTION
========================================= */

.receive-content p {
  margin: 0;

  font-size: 0.87rem;

  line-height: 1.6;

  color: #8da69e;

  transition: color 0.3s ease;
}

/* =========================================
   ARROW
========================================= */

.receive-arrow {
  position: absolute;

  right: 1.8rem;

  bottom: 1.5rem;

  width: 30px;

  height: 30px;

  display: flex;

  align-items: center;

  justify-content: center;

  border: 1px solid rgba(134, 223, 187, 0.2);

  border-radius: 50%;

  color: #6c9388;

  font-size: 13px;

  opacity: 0.5;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.35s ease,
    opacity 0.3s ease;
}

/* =========================================
   HOVER
========================================= */

.receive-card:hover {
  background: #08352d;

  transform: translateY(-5px);

  z-index: 3;
}

.receive-card:hover .receive-number {
  transform: translateX(5px);

  color: #f0c65d;
}

.receive-card:hover .receive-icon {
  background: #84cc60;

  border-color: #84cc60;

  color: #06251f;

  transform: rotate(8deg) scale(1.08);
}

.receive-card:hover .receive-content h3 {
  color: #84cc60;

  transform: translateX(3px);
}

.receive-card:hover .receive-content p {
  color: #bfd0ca;
}

.receive-card:hover .receive-arrow {
  opacity: 1;

  background: #84cc60;

  border-color: #84cc60;

  color: #06251f;

  transform: rotate(45deg);
}

/* =========================================
   BOTTOM STATEMENT
========================================= */

.receive-bottom {
  display: flex;

  align-items: center;

  gap: 1.5rem;

  margin-top: 3rem;

  padding: 1.6rem 2rem;

  background: #0a3028;

  border: 1px solid rgba(134, 223, 187, 0.16);

  border-left: 3px solid #84cc60;

  border-radius: 3px;
}

/* =========================================
   BOTTOM ICON
========================================= */

.receive-bottom-icon {
  width: 46px;

  height: 46px;

  flex-shrink: 0;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: #84cc60;

  color: #06251f;

  font-size: 16px;
}

/* =========================================
   BOTTOM LABEL
========================================= */

.receive-bottom span {
  display: block;

  margin-bottom: 5px;

  font-size: 10px;

  letter-spacing: 0.16em;

  color: #84cc60;
}

/* =========================================
   BOTTOM TEXT
========================================= */

.receive-bottom p {
  margin: 0;

  font-size: 1.05rem;

  font-style: italic;

  line-height: 1.4;

  color: #d7e2dd;
}

/* =========================================
   BOTTOM LINE
========================================= */

.receive-bottom-line {
  width: 100px;

  height: 1px;

  margin-left: auto;

  background: rgba(161, 220, 110, 0.25);
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {
  .sponsor-receive-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {
  .sponsor-receive-section {
    padding: 5rem 0;
  }

  .sponsor-receive-header {
    margin-bottom: 3rem;
  }

  .sponsor-receive-title {
    font-size: 2.7rem;
  }

  .sponsor-receive-grid {
    grid-template-columns: 1fr;
  }

  .receive-card {
    min-height: 240px;

    padding: 1.5rem;
  }

  .receive-card-top {
    margin-bottom: 2.3rem;
  }

  .receive-bottom {
    align-items: flex-start;

    padding: 1.4rem;

    gap: 1rem;
  }

  .receive-bottom-icon {
    width: 40px;

    height: 40px;
  }

  .receive-bottom-line {
    display: none;
  }
}

/* =====================================================
   CONTENT STORY SECTION
===================================================== */

.content-story-section {
  position: relative;

  overflow: hidden;

  padding: 8rem 0;

  background: #ffffff;

  color: #082d28;
}

/* =====================================================
   WATERMARK
===================================================== */

.content-story-watermark {
  position: absolute;

  top: 18%;

  right: -7%;

  font-size: clamp(10rem, 23vw, 25rem);

  line-height: 0.75;

  font-weight: 800;

  letter-spacing: -0.1em;

  color: rgba(8, 45, 40, 0.08);

  pointer-events: none;

  user-select: none;
}

/* =====================================================
   CONTAINER
===================================================== */

.content-story-section .container {
  position: relative;

  z-index: 2;
}

/* =====================================================
   HEADER
===================================================== */

.content-story-header {
  margin-bottom: 4.5rem;
}

.content-story-kicker {
  display: flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 1.5rem;

  font-size: 10px;

  font-weight: 600;

  letter-spacing: 0.2em;

  color: #000000e2;
}

.content-story-kicker span {
  width: 35px;

  height: 1px;

  background: #ccc;
}

/* =====================================================
   HEADER GRID
===================================================== */

.content-story-header-grid {
  display: grid;

  grid-template-columns:
    1.45fr
    0.55fr;

  align-items: end;

  gap: 4rem;
}

/* =====================================================
   TITLE
===================================================== */

.content-story-title {
  margin: 0;
  font-size: clamp(3.2rem, 5vw, 6.5rem);
  line-height: 0.88;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  color: #092f2a;
}

.content-story-title em {
  color: #84cc60;
  font-style: normal;
}

/* =====================================================
   INTRO
===================================================== */

.content-story-intro {
  padding-bottom: 0.4rem;
}

.content-story-intro-line {
  width: 65px;

  height: 2px;

  margin-bottom: 1.4rem;

  background: #84cc60;
}

.content-story-intro p {
  max-width: 390px;

  margin: 0 0 1.5rem;

  font-size: clamp(1rem, 1.4vw, 1.2rem);

  line-height: 1.6;

  font-style: italic;

  color: #657670;
}

.content-story-meta {
  font-size: 9px;

  font-weight: 800;

  letter-spacing: 0.18em;

  color: #087362;
}

/* =====================================================
   CARD GRID
===================================================== */

.content-story-grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 18px;
}

/* =====================================================
   CARD
===================================================== */

.content-story-card {
  position: relative;

  overflow: hidden;

  background: #f5f7f4;

  border: 1px solid #d7dfda;

  border-radius: 10px;

  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    box-shadow 0.4s ease;
}

/* =====================================================
   FEATURED CARD
===================================================== */

.content-story-card-featured {
  grid-column: span 2;
}

/* =====================================================
   IMAGE
===================================================== */

.story-card-image {
  position: relative;

  height: 240px;

  overflow: hidden;

  background: #092f2a;
}

.content-story-card-featured .story-card-image {
  height: 320px;
}

.story-card-image img {
  width: 100%;

  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

/* =====================================================
   IMAGE OVERLAY
===================================================== */

.story-card-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.02),
    rgba(0, 0, 0, 0.38)
  );

  pointer-events: none;
}

/* =====================================================
   CARD NUMBER
===================================================== */

.story-card-number {
  position: absolute;

  top: 18px;

  left: 18px;

  z-index: 3;

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 0.14em;

  color: #efbd4d;
}

/* =====================================================
   MEDIA ICON
===================================================== */

.story-card-media-icon {
  position: absolute;

  right: 18px;

  bottom: 18px;

  z-index: 3;

  width: 42px;

  height: 42px;

  display: flex;

  align-items: center;

  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.5);

  border-radius: 50%;

  background: rgba(0, 0, 0, 0.28);

  backdrop-filter: blur(7px);

  color: #ffffff;

  font-size: 13px;

  transition:
    background 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s ease;
}

/* =====================================================
   CARD CONTENT
===================================================== */

.story-card-content {
  min-height: 225px;

  padding: 1.5rem;

  display: flex;

  flex-direction: column;
}

/* Featured content */

.content-story-card-featured .story-card-content {
  min-height: 205px;
}

/* =====================================================
   HEADING ROW
===================================================== */

.story-card-heading {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 15px;

  margin-bottom: 0.75rem;
}

/* =====================================================
   CATEGORY
===================================================== */

.story-card-category {
  font-size: 10px;

  font-weight: 500;

  letter-spacing: 0.15em;

  color: #087362;
}

/* =====================================================
   SMALL LABEL
===================================================== */

.story-card-small-label {
  padding: 5px 9px;

  border: 1px solid #d2dbd6;

  border-radius: 30px;

  font-size: 7px;

  font-weight: 800;

  letter-spacing: 0.1em;

  color: #7b8a85;
}

/* =====================================================
   CARD TITLE
===================================================== */

.story-card-content h3 {
  margin: 0 0 0.7rem;

  font-size: 1.35rem;

  line-height: 1.1;

  letter-spacing: -0.025em;

  color: #092f2a;
}

.content-story-card-featured .story-card-content h3 {
  font-size: 1.65rem;
}

/* =====================================================
   DESCRIPTION
===================================================== */

.story-card-content p {
  max-width: 450px;

  margin: 0 0 15px;

  font-size: 0.86rem;

  line-height: 1.6;

  color: #687873;
}

/* =====================================================
   FOOTER
===================================================== */

.story-card-footer {
  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-top: auto;

  padding-top: 1.2rem;

  border-top: 1px solid #d7dfda;
}

.story-card-footer span {
  font-size: 10px;

  font-weight: 500;

  letter-spacing: 0.15em;

  color: #899691;
}

.story-card-footer i {
  width: 32px;

  height: 32px;

  display: flex;

  align-items: center;

  justify-content: center;

  border: 1px solid #ccd7d2;

  border-radius: 50%;

  color: #087362;

  font-size: 14px;

  font-style: normal;

  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    transform 0.35s ease;
}

/* =====================================================
   HOVER
===================================================== */

.content-story-card:hover {
  transform: translateY(-8px);

  border-color: #8eb5aa;

  box-shadow: 0 22px 45px rgba(5, 45, 38, 0.11);
}

.content-story-card:hover .story-card-image img {
  transform: scale(1.08);
}

.content-story-card:hover .story-card-media-icon {
  background: #84cc60;

  border-color: #84cc60;

  color: #092f2a;

  transform: scale(1.08);
}

.content-story-card:hover .story-card-footer i {
  background: #84cc60;

  border-color: #84cc60;

  color: #000;

  transform: rotate(45deg);
}

/* =====================================================
   BOTTOM MESSAGE
===================================================== */

.content-story-bottom {
  display: flex;

  align-items: center;

  gap: 1.5rem;

  margin-top: 3rem;

  padding: 1.5rem 1.8rem;

  background: #f3f0e5;

  border-left: 3px solid #84cc60;
}

.content-story-bottom-icon {
  width: 46px;

  height: 46px;

  flex-shrink: 0;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: #84cc60;

  color: #000;
}

.content-story-bottom-content {
  flex: 1;
}

.content-story-bottom-content span {
  display: block;

  margin-bottom: 5px;

  font-size: 10px;

  font-weight: 500;

  letter-spacing: 0.16em;

  color: #087362;
}

.content-story-bottom-content p {
  margin: 0;

  font-size: 1rem;

  line-height: 1.4;

  font-style: italic;

  color: #66756f;
}

.content-story-bottom-arrow {
  width: 38px;

  height: 38px;

  flex-shrink: 0;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: #84cc60;

  color: #000;

  transition: transform 0.35s ease;
}

.content-story-bottom:hover .content-story-bottom-arrow {
  transform: rotate(45deg);
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {
  .content-story-header-grid {
    grid-template-columns: 1fr;

    gap: 2rem;
  }

  .content-story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .content-story-card-featured {
    grid-column: span 2;
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {
  .content-story-section {
    padding: 5rem 0;
  }

  .content-story-title {
    font-size: 2.8rem;
  }

  .content-story-grid {
    grid-template-columns: 1fr;

    gap: 15px;
  }

  .content-story-card-featured {
    grid-column: auto;
  }

  .story-card-image,
  .content-story-card-featured .story-card-image {
    height: 230px;
  }

  .story-card-content,
  .content-story-card-featured .story-card-content {
    min-height: 210px;

    padding: 1.35rem;
  }

  .content-story-card-featured .story-card-content h3 {
    font-size: 1.4rem;
  }

  .content-story-bottom {
    align-items: flex-start;

    padding: 1.3rem;

    gap: 1rem;
  }

  .content-story-bottom-icon {
    width: 40px;

    height: 40px;
  }
}

/* =========================================================
   INDIA'S NATURE NETWORK
========================================================= */

.nature-network-section {
  position: relative;
  overflow: hidden;

  padding: 7rem 0 6rem;

  background: #f5f0e5;
  color: #082d28;
}

/* =========================================================
   CONTAINER
========================================================= */

.nature-network-wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

/* =========================================================
   HEADER
========================================================= */

.nature-network-intro {
  max-width: 850px;
  margin-bottom: 3.5rem;
}

/* =========================================================
   EYEBROW
========================================================= */

.nature-network-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 1.25rem;

  font-size: 10px;
  font-weight: 600;

  letter-spacing: 0.22em;
  text-transform: uppercase;

  color: #6b6b6b;
}

.nature-network-eyebrow::before {
  content: "";

  width: 32px;
  height: 1px;

  background: #6b6b6b;
}

/* =========================================================
   TITLE
========================================================= */

.nature-network-title {
  margin: 0;

  font-size: clamp(3rem, 5vw, 5.8rem);

  line-height: 0.88;

  letter-spacing: -0.055em;

  text-transform: uppercase;

  color: #082d28;
}

.nature-network-title span {
  color: #84cc60;
}

/* =========================================================
   DESCRIPTION
========================================================= */

.nature-network-description {
  max-width: 650px;

  margin: 1.8rem 0 0;

  font-size: 1.05rem;

  line-height: 1.6;

  font-style: italic;

  color: #65756f;
}

/* =========================================================
   NETWORK GRID
========================================================= */

.nature-network-grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  border-top: 1px solid #d2d9d3;
  border-left: 1px solid #d2d9d3;
}

/* =========================================================
   NETWORK ITEM
========================================================= */

.nature-network-tag {
  position: relative;

  min-height: 92px;

  display: flex;

  align-items: center;

  gap: 15px;

  padding: 1.3rem 1.4rem;

  border-right: 1px solid #d2d9d3;
  border-bottom: 1px solid #d2d9d3;

  background: rgba(255, 255, 255, 0.28);

  color: #092f2a;

  transition:
    background 0.3s ease,
    padding-left 0.3s ease;
}

/* =========================================================
   NUMBER
========================================================= */

.tag-number {
  position: absolute;

  top: 10px;
  right: 13px;

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 0.1em;

  color: #b2bcb7;
}

/* =========================================================
   DOT
========================================================= */

.tag-dot {
  width: 8px;
  height: 8px;

  flex: 0 0 8px;

  border-radius: 50%;

  background: #087362;

  box-shadow: 0 0 0 4px rgba(8, 115, 98, 0.09);
}

/* =========================================================
   TEXT
========================================================= */

.nature-network-tag > span:last-child {
  font-size: 0.92rem;

  font-weight: 600;

  line-height: 1.35;
}

/* =========================================================
   HOVER
========================================================= */

.nature-network-tag:hover {
  background: #ffffff;

  padding-left: 1.7rem;
}

.nature-network-tag:hover .tag-dot {
  background: #e3ad3d;
}

/* =========================================================
   BOTTOM
========================================================= */

.nature-network-bottom {
  display: flex;

  align-items: center;

  gap: 1.5rem;

  margin-top: 3rem;

  padding-top: 1.5rem;

  border-top: 1px solid #d2d9d3;
}

.network-bottom-line {
  width: 45px;
  height: 2px;

  flex-shrink: 0;

  background: #e3ad3d;
}

.nature-network-bottom p {
  margin: 0;

  flex: 1;

  font-size: 0.95rem;

  font-style: italic;

  color: #687873;
}

.network-bottom-count {
  flex-shrink: 0;

  padding: 8px 13px;

  border: 1px solid #cbd4ce;

  border-radius: 50px;

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 0.14em;

  color: #087362;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {
  .nature-network-section {
    padding: 5.5rem 0;
  }

  .nature-network-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {
  .nature-network-section {
    padding: 4.5rem 0;
  }

  .nature-network-wrap {
    width: min(100% - 30px, 540px);
  }

  .nature-network-title {
    font-size: 2.9rem;
  }

  .nature-network-description {
    font-size: 0.95rem;
  }

  .nature-network-grid {
    grid-template-columns: 1fr;
  }

  .nature-network-tag {
    min-height: 75px;
  }

  .nature-network-bottom {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nature-network-bottom p {
    flex-basis: calc(100% - 60px);
  }

  .network-bottom-count {
    margin-left: 60px;
  }
}

/* =========================================================
   TICI COMMITMENT SECTION
========================================================= */

.commitment-section {
  position: relative;
  overflow: hidden;

  padding: 120px 0 90px;

  background: #062d27;

  color: #f5f3ea;
}

/* =========================================================
   CONTAINER
========================================================= */

.commitment-section .container {
  position: relative;
  z-index: 2;

  width: 1120px;
  max-width: calc(100% - 40px);

  margin: 0 auto;
}

/* =========================================================
   BACKGROUND WORD
========================================================= */

.commitment-bg-text {
  position: absolute;

  top: 180px;
  right: -100px;

  font-size: 220px;
  line-height: 0.8;

  font-weight: 800;
  letter-spacing: -10px;

  color: rgba(255, 255, 255, 0.018);

  pointer-events: none;
  user-select: none;
}

/* =========================================================
   HEADER
========================================================= */

.commitment-header {
  margin-bottom: 70px;
}

/* =========================================================
   EYEBROW
========================================================= */

.commitment-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 22px;

  font-size: 10px;
  font-weight: 500;

  letter-spacing: 3px;
  text-transform: uppercase;

  color: #ffffffa1;
}

.commitment-eyebrow span {
  width: 35px;
  height: 1px;

  display: block;

  background: #fff;
}

/* =========================================================
   HEADER GRID
========================================================= */

.commitment-heading-wrap {
  display: grid;

  grid-template-columns: minmax(0, 1.5fr) minmax(250px, 0.5fr);

  gap: 70px;

  align-items: end;
}

/* =========================================================
   MAIN TITLE
========================================================= */

.commitment-title {
  margin: 0;

  font-size: clamp(48px, 5vw, 86px);

  line-height: 1;

  letter-spacing: -4px;

  text-transform: uppercase;

  color: #f7f5ed;
}

.commitment-title em {
  color: #84cc60;

  font-style: normal;
}

/* =========================================================
   SIDE TEXT
========================================================= */

.commitment-side-text {
  padding-bottom: 5px;
}

.commitment-side-text span {
  display: block;

  margin-bottom: 15px;

  font-size: 10px;
  font-weight: 500;

  letter-spacing: 2px;

  color: #84cc60;
}

.commitment-side-text p {
  margin: 0;

  font-size: 16px;

  line-height: 1.65;

  font-style: italic;

  color: #8fa9a2;
}

/* =========================================================
   MAIN CONTENT
========================================================= */

.commitment-layout {
  display: grid;

  grid-template-columns: 0.9fr 1.1fr;

  gap: 55px;

  align-items: start;
}

/* =========================================================
   IMAGE COLUMN
========================================================= */

.commitment-visual {
  width: 100%;
}

/* =========================================================
   IMAGE
========================================================= */

.commitment-image {
  position: relative;

  width: 100%;

  height: 580px;

  overflow: hidden;

  border-radius: 16px;

  background: #102d28;
}

.commitment-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: opacity 0.2s ease;
}

/* =========================================================
   IMAGE OVERLAY
========================================================= */

.commitment-image-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.08) 20%,
    rgba(0, 20, 17, 0.1) 40%,
    rgba(0, 20, 17, 0.9) 100%
  );

  pointer-events: none;
}

/* =========================================================
   IMAGE TOP
========================================================= */

.commitment-image-top {
  position: absolute;

  top: 22px;
  left: 22px;
  right: 22px;

  display: flex;

  align-items: center;

  justify-content: space-between;
}

.commitment-image-top span {
  display: inline-flex;

  align-items: center;

  padding: 8px 13px;

  border: 1px solid rgba(255, 255, 255, 0.3);

  border-radius: 50px;

  background: rgba(0, 0, 0, 0.25);

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 2px;

  color: #fff;
}

.commitment-image-top strong {
  width: 48px;
  height: 48px;

  display: flex;

  align-items: center;
  justify-content: center;

  border: 1px solid #84cc60;

  border-radius: 50%;

  background: rgba(0, 0, 0, 0.25);

  font-size: 11px;

  color: #84cc60;
}

/* =========================================================
   IMAGE BOTTOM
========================================================= */

.commitment-image-bottom {
  position: absolute;

  left: 28px;
  right: 28px;
  bottom: 28px;
}

.commitment-image-bottom small {
  display: block;

  margin-bottom: 12px;

  font-size: 10px;
  letter-spacing: 2px;

  color: #84cc60;
}

.commitment-image-bottom h3 {
  margin: 0;

  max-width: 450px;

  font-size: 32px;

  line-height: 1;

  letter-spacing: -1.5px;

  color: #fff;
}

/* =========================================================
   IMAGE CAPTION
========================================================= */

.commitment-caption {
  display: flex;

  align-items: flex-start;

  gap: 13px;

  margin-top: 18px;
}

.commitment-caption > span {
  width: 28px;
  height: 1px;

  flex: 0 0 28px;

  margin-top: 8px;

  background: #fff;
}

.commitment-caption p {
  margin: 0;

  font-size: 14px;

  line-height: 1.55;

  font-style: italic;

  color: #d1d1d1;
}

/* =========================================================
   RIGHT ITEMS
========================================================= */

.commitment-items {
  width: 100%;

  border-top: 1px solid rgba(142, 225, 189, 0.22);
}

/* =========================================================
   ITEMS INTRO
========================================================= */

.commitment-intro {
  height: 58px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  border-bottom: 1px solid rgba(142, 225, 189, 0.18);
}

.commitment-intro span {
  font-size: 9px;

  font-weight: 600;

  letter-spacing: 2px;

  color: #84cc60;
}

.commitment-intro div {
  width: 35px;
  height: 1px;

  background: #84cc60;
}

/* =========================================================
   CLICKABLE CARD
========================================================= */

.commitment-card {
  position: relative;

  width: 100%;
  min-height: 90px;

  display: grid;

  grid-template-columns: 45px minmax(0, 1fr) 40px;

  gap: 15px;

  padding: 20px 15px;

  margin: 0;

  border: 0;

  border-bottom: 1px solid rgba(142, 225, 189, 0.15);

  outline: none;

  background: transparent;

  text-align: left;

  font-family: inherit;

  color: #fff;

  cursor: pointer;

  appearance: none;

  -webkit-appearance: none;

  transition:
    background 0.25s ease,
    padding-left 0.25s ease;
}

/* =========================================================
   CARD NUMBER
========================================================= */

.commitment-card-number {
  align-self: start;

  padding-top: 4px;

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 1px;

  color: #718d86;
}

/* =========================================================
   CARD CONTENT
========================================================= */

.commitment-card-content {
  display: block;
}

.commitment-card-content strong {
  display: block;

  margin-bottom: 7px;

  font-size: 17px;

  line-height: 1;

  font-weight: 400;

  color: #f5f4ed;
}

.commitment-card-content > span {
  display: block;

  max-width: 470px;

  font-size: 13px;

  line-height: 1.5;

  color: #8fa9a2;
}

/* =========================================================
   ARROW
========================================================= */

.commitment-card-arrow {
  width: 36px;
  height: 36px;

  display: flex;

  align-items: center;
  justify-content: center;

  border: 1px solid rgba(142, 225, 189, 0.25);

  border-radius: 50%;

  font-size: 14px;

  color: #82d5b2;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

/* =========================================================
   HOVER
========================================================= */

.commitment-card:hover {
  padding-left: 25px;

  background: linear-gradient(90deg, rgba(142, 225, 189, 0.07), transparent);
}

.commitment-card:hover .commitment-card-arrow {
  border-color: #84cc60;

  background: #84cc60;

  color: #062d27;
}

/* =========================================================
   ACTIVE CARD
========================================================= */

.commitment-card.active {
  padding-left: 25px;

  background: linear-gradient(
    90deg,
    rgba(142, 225, 189, 0.11),
    rgba(142, 225, 189, 0.025)
  );

  border-left: 2px solid #84cc60;
}

.commitment-card.active .commitment-card-number {
  color: #84cc60;
}

.commitment-card.active .commitment-card-content strong {
  color: #84cc60;
}

.commitment-card.active .commitment-card-arrow {
  border-color: #84cc60;

  background: #84cc60;

  color: #062d27;
}

/* =========================================================
   FEATURED CARD
========================================================= */

.commitment-card-featured {
  margin-top: 12px;

  border: 1px solid rgba(230, 180, 67, 0.3);

  background: linear-gradient(
    100deg,
    rgba(230, 180, 67, 0.07),
    rgba(142, 225, 189, 0.03)
  );
}

.commitment-card-featured.active {
  border-left: 2px solid #e6b443;
}

/* =========================================================
   BOTTOM
========================================================= */

.commitment-bottom {
  display: grid;

  grid-template-columns: 50px minmax(0, 1fr) auto;

  align-items: center;

  gap: 20px;

  margin-top: 70px;

  padding: 28px 25px;

  border-top: 1px solid rgba(142, 225, 189, 0.18);

  border-bottom: 1px solid rgba(142, 225, 189, 0.18);

  background: rgba(255, 255, 255, 0.025);
}

/* =========================================================
   BOTTOM MARK
========================================================= */

.commitment-bottom-mark {
  width: 42px;
  height: 42px;

  display: flex;

  align-items: center;
  justify-content: center;

  border: 1px solid #84cc60;

  border-radius: 50%;
}

.commitment-bottom-mark span {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #8ee1bd;
}

/* =========================================================
   BOTTOM TEXT
========================================================= */

.commitment-bottom-text > span {
  display: block;

  margin-bottom: 5px;

  font-size: 10px;

  font-weight: 500;

  letter-spacing: 2px;

  color: #84cc60;
}

.commitment-bottom-text h3 {
  margin: 0;

  font-size: 24px;

  line-height: 1.1;

  letter-spacing: -0.5px;

  color: #f5f4ed;
}

.commitment-bottom-text em {
  color: #84cc60;

  font-style: normal;
}

/* =========================================================
   YEAR
========================================================= */

.commitment-bottom-number {
  display: flex;

  flex-direction: column;

  align-items: flex-end;

  font-size: 8px;

  font-weight: 600;

  letter-spacing: 2px;

  color: #84cc60;
}

.commitment-bottom-number strong {
  margin-top: 3px;

  font-size: 22px;

  letter-spacing: 0;

  color: #84cc60;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {
  .commitment-section {
    padding: 80px 0;
  }

  .commitment-heading-wrap {
    grid-template-columns: 1fr;

    gap: 25px;
  }

  .commitment-layout {
    grid-template-columns: 1fr;

    gap: 45px;
  }

  .commitment-image {
    height: 500px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {
  .commitment-section {
    padding: 60px 0;
  }

  .commitment-section .container {
    max-width: calc(100% - 30px);
  }

  .commitment-bg-text {
    display: none;
  }

  .commitment-title {
    font-size: 44px;

    letter-spacing: -2px;
  }

  .commitment-header {
    margin-bottom: 45px;
  }

  .commitment-image {
    height: 400px;

    border-radius: 10px;
  }

  .commitment-image-bottom h3 {
    font-size: 26px;
  }

  .commitment-card {
    grid-template-columns: 32px minmax(0, 1fr) 35px;

    gap: 8px;

    min-height: 95px;

    padding: 17px 10px;
  }

  .commitment-card:hover,
  .commitment-card.active {
    padding-left: 15px;
  }

  .commitment-card-content strong {
    font-size: 17px;
  }

  .commitment-card-content > span {
    font-size: 12px;
  }

  .commitment-bottom {
    grid-template-columns: 42px 1fr;

    padding: 20px 15px;
  }

  .commitment-bottom-number {
    display: none;
  }

  .commitment-bottom-text h3 {
    font-size: 18px;
  }
}

/* =====================================================
   WHY TICI SECTION
===================================================== */

.why-tici-section {
  position: relative;
  overflow: hidden;

  padding: 120px 0;

  background: #f6f1e6;

  color: #082e29;
}

/* =====================================================
   CONTAINER
===================================================== */

.why-tici-wrap {
  width: min(1120px, calc(100% - 40px));

  margin: 0 auto;

  display: grid;

  grid-template-columns: 0.9fr 1.1fr;

  align-items: center;

  gap: 90px;
}

/* =====================================================
   LEFT VISUAL
===================================================== */

.why-tici-visual {
  position: relative;
}

/* =====================================================
   IMAGE
===================================================== */

.why-tici-image {
  position: relative;

  width: 100%;

  aspect-ratio: 0.82 / 1;

  overflow: hidden;

  border-radius: 14px;

  background: #d9dfd7;
}

.why-tici-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
}

/* =====================================================
   IMAGE OVERLAY
===================================================== */

.why-tici-image-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(
    to bottom,
    rgba(5, 40, 34, 0.05),
    rgba(5, 40, 34, 0.65)
  );
}

/* =====================================================
   BIG QUOTE
===================================================== */

.why-tici-quote {
  position: absolute;

  top: 35px;
  left: 35px;

  font-size: 110px;

  line-height: 0.7;

  color: #84cc60;

  opacity: 0.9;
}

/* =====================================================
   IMAGE LABEL
===================================================== */

.why-tici-image-label {
  position: absolute;

  left: 28px;
  right: 28px;
  bottom: 28px;

  display: flex;

  flex-direction: column;

  gap: 7px;
}

.why-tici-image-label span {
  font-size: 8px;

  font-weight: 800;

  letter-spacing: 2px;

  color: #84cc60;
}

.why-tici-image-label strong {
  font-size: 10px;

  font-weight: 600;

  letter-spacing: 1.5px;

  color: #ffffff;
}

/* =====================================================
   RIGHT CONTENT
===================================================== */

.why-tici-content {
  max-width: 650px;
}

/* =====================================================
   EYEBROW
===================================================== */

.why-tici-eyebrow {
  display: flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 20px;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 3px;

  color: #00000078;
}

.why-tici-eyebrow span {
  width: 32px;

  height: 1px;

  background: #000;
}

/* =====================================================
   TITLE
===================================================== */

.why-tici-title {
  margin: 0;

  font-size: clamp(42px, 5vw, 50px);

  line-height: 1.1;

  letter-spacing: -3px;

  text-transform: uppercase;

  color: #082e29;
}

.why-tici-title em {
  color: #087565;

  font-style: normal;
}

/* =====================================================
   DIVIDER
===================================================== */

.why-tici-divider {
  width: 55px;

  height: 2px;

  margin: 30px 0 25px;

  background: #000;
}

/* =====================================================
   DESCRIPTION
===================================================== */

.why-tici-description {
  max-width: 600px;

  margin: 0;

  font-size: 19px;

  line-height: 1.65;

  font-style: italic;

  color: #17473e;
}

/* =====================================================
   FOOTER STATS
===================================================== */

.why-tici-footer {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  margin-top: 45px;

  border-top: 1px solid #d2d7cf;

  border-bottom: 1px solid #d2d7cf;
}

/* =====================================================
   STAT
===================================================== */

.why-tici-stat {
  display: flex;

  align-items: center;

  gap: 13px;

  min-height: 64px;

  padding: 12px 15px;

  border-right: 1px solid #d2d7cf;
}

.why-tici-stat:last-child {
  border-right: 0;
}

.why-tici-stat strong {
  font-size: 10px;

  font-weight: 800;

  color: #000;
}

.why-tici-stat span {
  font-size: 8px;

  font-weight: 600;

  line-height: 1.45;

  letter-spacing: 1.3px;

  color: #000;
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {
  .why-tici-section {
    padding: 90px 0;
  }

  .why-tici-wrap {
    grid-template-columns: 1fr;

    gap: 50px;

    max-width: 750px;
  }

  .why-tici-image {
    aspect-ratio: 16 / 9;
  }

  .why-tici-content {
    max-width: 100%;
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {
  .why-tici-section {
    padding: 65px 0;
  }

  .why-tici-wrap {
    width: calc(100% - 30px);

    gap: 40px;
  }

  .why-tici-title {
    font-size: 40px;

    letter-spacing: -1.8px;
  }

  .why-tici-description {
    font-size: 16px;
  }

  .why-tici-image {
    aspect-ratio: 1 / 1;
  }

  .why-tici-quote {
    top: 25px;
    left: 25px;

    font-size: 80px;
  }

  .why-tici-footer {
    grid-template-columns: 1fr;
  }

  .why-tici-stat {
    border-right: 0;

    border-bottom: 1px solid #d2d7cf;
  }

  .why-tici-stat:last-child {
    border-bottom: 0;
  }
}

/* =====================================================
   OUR PURPOSE — EDITORIAL DARK SECTION
===================================================== */

.tour-purpose-section {
  position: relative;

  min-height: 720px;

  display: flex;

  align-items: center;

  overflow: hidden;

  padding: 120px 0 80px;

  background: #062d27;

  color: #f5f2e9;
}

/* =====================================================
   HUGE BACKGROUND TYPOGRAPHY
===================================================== */

.tour-purpose-bg-text {
  position: absolute;

  top: 30px;
  left: -40px;

  z-index: 0;

  font-size: clamp(180px, 24vw, 420px);

  line-height: 0.75;

  font-weight: 900;

  letter-spacing: -0.08em;

  text-transform: uppercase;

  white-space: nowrap;

  color: rgba(11, 65, 57, 0.38);

  pointer-events: none;

  user-select: none;
}

/* =====================================================
   MAIN CONTAINER
===================================================== */

.tour-purpose-container {
  position: relative;

  z-index: 2;

  width: min(1180px, calc(100% - 50px));

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    minmax(0, 1.1fr)
    minmax(380px, 0.9fr);

  gap: 100px;

  align-items: center;
}

/* =====================================================
   LEFT STATEMENT
===================================================== */

.tour-purpose-statement {
  position: relative;

  padding-left: 20px;
}

.tour-purpose-quote {
  position: absolute;

  top: -65px;
  left: 0;

  font-size: 110px;

  line-height: 1;

  color: #84cc60;

  opacity: 0.9;
}

.tour-purpose-statement h2 {
  max-width: 700px;

  margin: 0;

  font-size: clamp(55px, 7vw, 70px);

  line-height: 1.1;

  letter-spacing: -5px;

  text-transform: uppercase;

  color: #f5f2e9;
}

/* =====================================================
   RIGHT CONTENT
===================================================== */

.tour-purpose-content {
  max-width: 520px;

  padding-top: 20px;
}

.tour-purpose-label {
  display: flex;

  align-items: center;

  gap: 14px;

  margin-bottom: 25px;

  font-size: 10px;

  font-weight: 600;

  letter-spacing: 3px;

  color: #ffffffa6;
}

.tour-purpose-label::before {
  content: "";

  width: 35px;

  height: 1px;

  background: #ffffffa6;
}

/* =====================================================
   RIGHT HEADING
===================================================== */

.tour-purpose-content h3 {
  margin: 0 0 28px;

  font-size: clamp(30px, 3vw, 48px);

  line-height: 1.05;

  font-weight: 400;

  font-style: italic;

  color: #f5f2e9;
}

.tour-purpose-content h3 span {
  color: #84cc60;
}

/* =====================================================
   PARAGRAPHS
===================================================== */

.tour-purpose-content p {
  max-width: 500px;

  margin: 0 0 20px;

  font-size: 17px;

  line-height: 1.7;

  font-style: italic;

  color: #91aaa2;
}

/* =====================================================
   META ROW
===================================================== */

.tour-purpose-meta {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  margin-top: 40px;

  border-top: 1px solid rgba(142, 225, 189, 0.2);

  border-bottom: 1px solid rgba(142, 225, 189, 0.2);
}

.tour-purpose-meta div {
  display: flex;

  flex-direction: column;

  gap: 8px;

  padding: 18px 12px;

  border-right: 1px solid rgba(142, 225, 189, 0.2);
}

.tour-purpose-meta div:last-child {
  border-right: 0;
}

.tour-purpose-meta strong {
  font-size: 11px;

  color: #84cc60;
}

.tour-purpose-meta span {
  font-size: 8px;

  font-weight: 500;

  letter-spacing: 1.5px;

  color: #8fa9a2;
}

/* =====================================================
   BOTTOM BAR
===================================================== */

.tour-purpose-bottom {
  position: absolute;

  z-index: 3;

  left: 50%;

  bottom: 30px;

  transform: translateX(-50%);

  width: min(1180px, calc(100% - 50px));

  display: grid;

  grid-template-columns: auto 1fr auto;

  align-items: center;

  gap: 20px;

  padding-top: 18px;

  border-top: 1px solid rgba(142, 225, 189, 0.15);
}

.tour-purpose-bottom span {
  font-size: 8px;

  font-weight: 800;

  letter-spacing: 2px;

  color: #e5b343;
}

.tour-purpose-bottom div {
  height: 1px;

  background: rgba(142, 225, 189, 0.15);
}

.tour-purpose-bottom strong {
  font-size: 8px;

  letter-spacing: 1.5px;

  color: #718d84;

  text-align: right;
}

/* =====================================================
   LARGE DESKTOP
===================================================== */

@media (min-width: 1600px) {
  .tour-purpose-bg-text {
    left: -70px;
  }

  .tour-purpose-statement h2 {
    font-size: 110px;
  }
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {
  .tour-purpose-section {
    min-height: auto;

    padding: 100px 0 120px;
  }

  .tour-purpose-bg-text {
    top: 70px;

    font-size: 180px;
  }

  .tour-purpose-container {
    grid-template-columns: 1fr;

    gap: 70px;
  }

  .tour-purpose-content {
    max-width: 650px;
  }

  .tour-purpose-statement h2 {
    font-size: clamp(55px, 10vw, 90px);
  }

  .tour-purpose-bottom {
    bottom: 25px;
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {
  .tour-purpose-section {
    padding: 90px 0 110px;
  }

  .tour-purpose-container {
    width: calc(100% - 30px);

    gap: 55px;
  }

  .tour-purpose-bg-text {
    top: 80px;
    left: -20px;

    font-size: 110px;

    opacity: 0.6;
  }

  .tour-purpose-statement {
    padding-left: 10px;
  }

  .tour-purpose-quote {
    top: -35px;

    font-size: 65px;
  }

  .tour-purpose-statement h2 {
    font-size: 48px;

    line-height: 0.9;

    letter-spacing: -2px;
  }

  .tour-purpose-content h3 {
    font-size: 32px;
  }

  .tour-purpose-content p {
    font-size: 15px;
  }

  .tour-purpose-meta {
    grid-template-columns: repeat(2, 1fr);
  }

  .tour-purpose-meta div:nth-child(2) {
    border-right: 0;
  }

  .tour-purpose-bottom {
    position: relative;

    left: auto;
    bottom: auto;

    transform: none;

    width: calc(100% - 30px);

    margin: 60px auto 0;

    grid-template-columns: 1fr;

    gap: 10px;
  }

  .tour-purpose-bottom strong {
    text-align: left;
  }
}

.why-intro .tag-line {
  font-weight: 700;
  color: #000000;
}

/* =====================================================
   CINEMATIC END HERO
===================================================== */

.tour-endhero-section {
  position: relative;
  min-height: 850px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #020c0a;
  color: #f5f3ea;
}

/* =====================================================
   BACKGROUND IMAGE
===================================================== */

.tour-endhero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.tour-endhero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* =====================================================
   IMAGE OVERLAY
===================================================== */

.tour-endhero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  background: linear-gradient(
    180deg,
    rgba(0, 18, 15, 0.72) 0%,
    rgba(0, 12, 10, 0.48) 40%,
    rgba(0, 15, 12, 0.74) 100%
  );
}

.tour-endhero-glow {
  position: absolute;
  inset: 0;
  z-index: 2;

  background: radial-gradient(
    circle at 50% 45%,
    rgba(13, 68, 57, 0.08),
    rgba(0, 0, 0, 0.38) 80%
  );
}

/* =====================================================
   HUGE BACKGROUND WORD
===================================================== */

.tour-endhero-bgword {
  position: absolute;

  z-index: 2;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  font-size: clamp(170px, 22vw, 390px);

  line-height: 0.75;

  font-weight: 900;

  letter-spacing: -0.07em;

  color: rgba(255, 255, 255, 0.025);

  white-space: nowrap;

  pointer-events: none;
}

/* =====================================================
   CONTAINER
===================================================== */

.tour-endhero-container {
  position: relative;
  z-index: 4;

  width: min(1250px, calc(100% - 50px));

  margin: 0 auto;

  padding: 110px 0 130px;
}

.tour-endhero-content {
  max-width: 1100px;

  margin: 0 auto;

  text-align: center;
}

/* =====================================================
   TOP LABEL
===================================================== */

.tour-endhero-label {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 15px;

  margin-bottom: 30px;

  font-size: 10px;

  font-weight: 600;

  letter-spacing: 3px;

  color: #fff;
}

.tour-endhero-label span {
  width: 35px;
  height: 1px;

  background: #84cc60;
}

/* =====================================================
   TITLE
===================================================== */

.tour-endhero-title {
  margin: 0 auto;

  max-width: 1050px;

  font-size: clamp(55px, 5vw, 105px);

  line-height: 1;

  letter-spacing: -4px;

  text-transform: uppercase;

  color: #f5f3ea;
}

.tour-endhero-title span {
  display: block;

  text-transform: none;

  color: #84cc60;
}

/* =====================================================
   DESCRIPTION
===================================================== */

.tour-endhero-description {
  max-width: 700px;

  margin: 30px auto 0;

  font-size: 17px;

  line-height: 1.6;

  font-style: italic;

  color: rgba(238, 244, 240, 0.7);
}

/* =====================================================
   STATS
===================================================== */

.tour-endhero-stats {
  width: min(780px, 100%);

  margin: 45px auto 0;

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  border-top: 1px solid rgba(255, 255, 255, 0.16);

  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.tour-endhero-stat {
  position: relative;

  padding: 20px 15px;
}

.tour-endhero-stat:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.tour-endhero-stat strong {
  display: block;

  margin-bottom: 6px;

  font-size: 21px;

  font-weight: 700;

  color: #f5f3ea;
}

.tour-endhero-stat span {
  font-size: 10px;

  font-weight: 600;

  letter-spacing: 2px;

  color: #84cc60;
}

/* =====================================================
   TAGS
===================================================== */

.tour-endhero-tags {
  display: flex;

  justify-content: center;

  flex-wrap: wrap;

  gap: 8px;

  margin-top: 27px;
}

.tour-endhero-tags span {
  padding: 7px 14px;

  border: 1px solid rgba(142, 225, 189, 0.24);

  border-radius: 50px;

  background: rgba(5, 39, 33, 0.32);

  backdrop-filter: blur(8px);

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 1px;

  color: #fff;
}

/* =====================================================
   VEHICLE / RIDE LINE
===================================================== */

.tour-endhero-ride {
  display: flex;

  justify-content: center;
  align-items: center;

  flex-wrap: wrap;

  gap: 12px;

  margin-top: 25px;

  font-size: 9px;

  letter-spacing: 1.2px;

  color: rgba(255, 255, 255, 0.55);
}

.tour-endhero-ride i {
  width: 4px;
  height: 4px;

  border-radius: 50%;

  background: #84cc60;
}

/* =====================================================
   BUTTONS
===================================================== */

.tour-endhero-actions {
  display: flex;

  align-items: center;
  justify-content: center;

  flex-wrap: wrap;

  gap: 12px;

  margin-top: 35px;
}

.tour-endhero-btn {
  min-height: 55px;

  display: inline-flex;

  align-items: center;

  gap: 25px;

  padding: 5px 6px 5px 24px;

  border: 1px solid transparent;

  text-decoration: none;

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 1px;

  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease;
}

.tour-endhero-btn strong {
  width: 43px;
  height: 43px;

  display: flex;

  align-items: center;
  justify-content: center;

  font-size: 15px;

  transition: transform 0.3s ease;
}

/* PRIMARY */

.tour-endhero-btn-primary {
  background: #8bd260;

  color: #06140f;
}

.tour-endhero-btn-primary strong {
  background: #071f18;

  color: #ffffff;
}

.tour-endhero-btn-primary:hover {
  background: #9ce176;
}

.tour-endhero-btn-primary:hover strong {
  transform: rotate(45deg);
}

/* SECONDARY */

.tour-endhero-btn-secondary {
  border-color: rgba(255, 255, 255, 0.4);

  background: rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(10px);

  color: #ffffff;
}

.tour-endhero-btn-secondary strong {
  background: #ffffff;

  color: #06140f;
}

.tour-endhero-btn-secondary:hover {
  background: #ffffff;

  color: #06140f;
}

.tour-endhero-btn-secondary:hover strong {
  background: #e5b343;
}

/* =====================================================
   BOTTOM LABEL
===================================================== */

.tour-endhero-bottom {
  position: absolute;

  z-index: 5;

  left: 50%;
  bottom: 28px;

  transform: translateX(-50%);

  width: min(1250px, calc(100% - 50px));

  display: grid;

  grid-template-columns: auto 1fr auto;

  align-items: center;

  gap: 18px;

  padding-top: 18px;

  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.tour-endhero-bottom span,
.tour-endhero-bottom strong {
  font-size: 8px;

  font-weight: 800;

  letter-spacing: 2px;
}

.tour-endhero-bottom span {
  color: #8ee1bd;
}

.tour-endhero-bottom strong {
  color: rgba(255, 255, 255, 0.45);
}

.tour-endhero-bottom div {
  height: 1px;

  background: rgba(255, 255, 255, 0.12);
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {
  .tour-endhero-section {
    min-height: 760px;
  }

  .tour-endhero-title {
    font-size: clamp(50px, 9vw, 80px);
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {
  .tour-endhero-section {
    min-height: auto;
  }

  .tour-endhero-container {
    width: calc(100% - 30px);

    padding: 90px 0 120px;
  }

  .tour-endhero-title {
    font-size: 46px;

    letter-spacing: -2px;
  }

  .tour-endhero-description {
    font-size: 15px;
  }

  .tour-endhero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .tour-endhero-stat:nth-child(2) {
    border-right: 0;
  }

  .tour-endhero-stat:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .tour-endhero-actions {
    flex-direction: column;
  }

  .tour-endhero-btn {
    width: 100%;

    justify-content: space-between;
  }

  .tour-endhero-bottom {
    width: calc(100% - 30px);

    grid-template-columns: 1fr;

    gap: 8px;
  }

  .tour-endhero-bottom div {
    display: none;
  }
}

.ftr-logo {
  margin-bottom: 20px;
}

/* =====================================================================
   GSAP SCROLL-REVEAL — PRE-HIDE (prevents flash of unanimated content)
   =====================================================================
   These elements are animated in via gsap.from()/fromTo() in
   assets/js/common.js. Without this, there is a brief window between
   first paint and script execution where they can flash fully visible
   at their natural position before JS hides and animates them.

   Scoped under html.js (added by an inline script in <head> before
   any CSS/paint happens) so that if JavaScript is unavailable or GSAP
   fails to load, common.js removes the "js" class and every element
   below falls back to fully visible — content is never permanently
   hidden.
===================================================================== */

html.js .hero-anim,
html.js .map-pin,
html.js .expedition-section .exp-reveal,
html.js .why-exists-section .why-section-number,
html.js .why-exists-section .why-location,
html.js .why-tag-wrap,
html.js .why-lede,
html.js .why-exists-section .why-card,
html.js .roadshow-section .roadshow-reveal,
html.js .route-kicker,
html.js .route-title span,
html.js .route-intro,
html.js .route-hero,
html.js .route-distance,
html.js .route-stop,
html.js .route-footer,
html.js .sponsor-top,
html.js .sponsor-kicker,
html.js .sponsor-title,
html.js .sponsor-lede,
html.js .sponsor-card,
html.js .sponsor-cta,
html.js .sponsor-bottom,
html.js .brand-benefits-kicker,
html.js .brand-benefits-title,
html.js .brand-benefit-card,
html.js .brand-benefits-bottom,
html.js .sponsorship-kicker,
html.js .sponsorship-title,
html.js .sponsorship-intro,
html.js .sponsorship-card,
html.js .inkind-partners,
html.js .inkind-list span,
html.js .sponsorship-bottom,
html.js .sponsor-receive-kicker,
html.js .sponsor-receive-title,
html.js .receive-card,
html.js .content-story-kicker,
html.js .content-story-title,
html.js .content-story-intro,
html.js .content-story-card,
html.js .content-story-bottom,
html.js .section-intro,
html.js .tag-cloud span,
html.js .commit-wrap > div:first-child,
html.js .commit-media,
html.js .commit-list li,
html.js .quote-mark,
html.js .whytici > div:not(.quote-mark),
html.js .join-card,
html.js .final-cta .meta-line,
html.js .final-cta h2,
html.js .final-cta .sub,
html.js .final-cta .vehicles,
html.js .final-cta .btn-row {
  opacity: 0;
}

/* media */
@media (max-width: 578px) {
  .brand {
    max-width: 80px;
  }

  .nav-links {
    gap: 15px;
    border: none;
  }

  .nav-link {
    font-size: 16px;
  }

  .btn-nav.btn {
    display: none;
  }

  .burger.active span:nth-child(3),
  .burger.active span:nth-child(1) {
    background-color: #84cc60;
  }

  .hero {
    min-height: unset;
    padding: 180px 12px 100px;
  }

  .tag-line {
    font-size: 10px;
  }

  .stat-chip {
    font-size: 10px;
    font-weight: 500;
  }

  .hero-sub {
    font-size: 14px;
    font-weight: 500;
  }

  .btn-row {
    gap: 10px;
  }

  .map-card {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .overlay {
    background: linear-gradient(
      180deg,
      rgb(11 19 17 / 62%) 0%,
      rgb(0 0 0 / 51%) 100%
    );
  }

  h2 {
    font-size: 37px;
    letter-spacing: 0px;
  }

  .why-top {
    margin-bottom: 26px;
  }

  .wrap {
    padding: 0 12px;
  }

  .exp-card-title {
    font-size: 17px;
  }

  .exp-card-desc {
    font-size: 14px;
  }

  .card-overlay {
    background: linear-gradient(
      180deg,
      rgb(8 33 29 / 0%) 0%,
      rgb(8 33 29 / 27%) 100%
    );
  }

  .expedition-callout p {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 300;
  }

  .expedition-callout {
    padding: 22px 17px;
  }

  .tour-endhero-container {
    width: 100%;
  }

  .tour-endhero-container,
  .tour-purpose-section,
  .why-tici-section,
  .nature-network-section,
  .content-story-section,
  .sponsor-receive-section,
  .sponsorship-section,
  .brand-benefits-section,
  .sponsor-section,
  .route-section,
  .roadshow-section,
  .why-exists-section {
    padding: 4.5rem 12px;
  }

  .tour-footer-title,
  .tour-endhero-title,
  .tour-purpose-statement h2,
  .why-tici-title,
  .commitment-title,
  .nature-network-title,
  .content-story-title,
  .sponsor-receive-title,
  .sponsorship-title,
  .brand-benefits-title,
  .sponsor-title,
  .route-title,
  .roadshow-title,
  .why-title {
    font-size: 37px;
    line-height: 1.2;
  }

  .tour-purpose-statement {
    padding: 0;
  }

  .tag-line {
    margin: 0;
  }

  .receive-bottom-icon,
  .brand-benefits-bottom-line,
  .sponsor-intro-line,
  .roadshow-intro-line,
  .roadshow-count {
    display: none;
  }

  .commitment-bottom,
  .sponsor-intro-bottom,
  .roadshow-intro {
    grid-template-columns: unset;
    margin-top: 10px;
  }

   .commitment-bottom {
    background-color: transparent;
    border: none;
    padding: 0;
    margin-top: 25px;
   }

   .commitment-bottom-text h3 {
    line-height: 1.5;
   }

  .nature-network-description,
  .roadshow-intro p {
    font-size: 14px;
  }

  .nature-network-intro,
  .content-story-header,
  .sponsor-intro,
  .route-head,
  .roadshow-header {
    margin-bottom: 25px;
  }

  .why-grid {
    gap: 12px;
  }

  .route-stop-number {
    width: 30px;
    height: 30px;
  }

  .route-stop-left,
  .route-stop-right {
    padding-left: 37px;
  }

  .route-line {
    left: 15px;
  }

  .route-stop-meta span {
    font-weight: 600;
    color: #000;
  }

  .route-stop-content {
    padding: 15px;
  }

  .route-stop-content p {
    font-size: 13px;
    color: #1f1f1f;
  }

  .route-stop-footer {
    margin-top: 20px;
    padding-top: 12px;
    border-top: 1px solid #b4c5b7;
    font-size: 8px;
    font-weight: 700;
    color: #1c1e1d;
  }

  .route-journey {
    padding-bottom: 0;
  }
  .brand-benefit-card,
  .brand-benefit-card:nth-child(2n),
  .brand-benefit-card:nth-child(3n) {
    border-top: 1px solid rgba(150, 207, 190, 0.28);
  }

  .sponsorship-intro {
    margin-top: 12px;
  }

  .sponsorship-bottom h3 {
    font-size: 26px;
  }

  .sponsorship-bottom > a {
    padding: 0;
    border: none;
    gap: 5px;
    font-size: 10px;
    margin-top: 20px;
  }

  .sponsorship-bottom > a i {
    width: auto;
    height: auto;
    border-radius: 0%;
    background: unset;
    line-height: 1;
    color: #84cc60;
    font-size: 15px;
  }

  .sponsor-receive-bg {
    top: 6%;
    font-size: clamp(7rem, 23vw, 25rem);
  }

  .content-story-bottom-content p,
  .receive-bottom p {
    font-size: 14px;
  }

  .commitment-bottom-mark,
  .commitment-caption,
  .network-bottom-count,
  .network-bottom-line,
  .content-story-bottom-arrow,
  .content-story-bottom-icon {
    display: none;
  }

  .tour-purpose-container,
      .nature-network-wrap {
        width: 100%;
    }

    .nature-network-description {
      margin-top: 10px;
    }

    .tag-number {
      color: #000;
    top: 12px;
    right: 15px;
    font-size: 9px;
    font-weight: 700;
    }

        .commitment-image-bottom h3 {
        font-size: 20px;
    }

        .commitment-image {
        height: 370px;
        }

        .why-tici-wrap {
          width: 100%;
        }

        .tour-purpose-bg-text {
        font-size: 104px;
            color: rgb(11 65 57 / 96%);
    }

        .tour-purpose-container {
        gap: 20px;
    }

    .tour-purpose-content h3 {
        font-size: 24px;
        line-height: 1.5;
        margin: 0 0 8px;
    }

    .tour-purpose-content p {
        font-size: 14px;
        line-height: 1.5;
        margin: 0 0 10px;
    }

    .tour-endhero-actions .btn {
      width: 100%;
    }

    .tour-footer-intro {
      margin-top: 10px;
      font-size: 14px;
    }
}
