@font-face {
  font-family: "GS Bricolage";
  src: url("assets/fonts/bricolage-grotesque-latin.woff2") format("woff2");
  font-weight: 300 800;
  font-display: swap;
}

@font-face {
  font-family: "GS Fraunces";
  src: url("assets/fonts/fraunces-latin.woff2") format("woff2");
  font-weight: 300 900;
  font-display: swap;
}

:root {
  --ink: #11140f;
  --ink-2: #1d231d;
  --paper: #f3efe4;
  --paper-2: #e8dfcf;
  --mist: #c9d4c4;
  --leaf: #637b55;
  --ember: #bb5b39;
  --blue: #6a8998;
  --gold: #c2a45c;
  --line-dark: rgba(243, 239, 228, 0.18);
  --line-light: rgba(17, 20, 15, 0.16);
  --shadow: 0 24px 80px rgba(17, 20, 15, 0.2);
  --font-body: "GS Bricolage", Arial, sans-serif;
  --font-display: "GS Fraunces", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: 0;
  text-rendering: geometricPrecision;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

::selection {
  background: var(--ember);
  color: var(--paper);
}

.scroll-line {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 22px 34px;
  color: var(--paper);
  transition: background 240ms ease, color 240ms ease, border-color 240ms ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled,
.site-header.is-open,
.plain-header-page .site-header {
  background: rgba(17, 20, 15, 0.92);
  border-bottom-color: var(--line-dark);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-mark {
  display: none !important;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 650;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  gap: 28px;
  font-size: 0.86rem;
}

.site-nav a,
.footer-meta a,
.text-link {
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  transition: background-size 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.footer-meta a:hover,
.text-link:hover {
  background-size: 100% 1px;
}

.nav-toggle {
  display: none;
  justify-self: end;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 4px;
  padding: 9px 12px;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(17, 20, 15, 0.8), rgba(17, 20, 15, 0.24) 56%, rgba(17, 20, 15, 0.64)),
    linear-gradient(0deg, rgba(17, 20, 15, 0.78), rgba(17, 20, 15, 0.08) 58%);
}

.hero-inner {
  position: relative;
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
  padding: 150px 0 84px;
}

.kicker,
.section-label,
.role {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.shine-kicker {
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding-right: 6px;
  color: #e4c772;
  text-transform: none;
  text-shadow: 0 0 18px rgba(194, 164, 92, 0.28);
}

.shine-kicker::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -35%;
  width: 28%;
  transform: skewX(-22deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.68), transparent);
  animation: shine-sweep 4.8s ease-in-out infinite;
}

@keyframes shine-sweep {
  0%,
  52% {
    left: -35%;
  }
  78%,
  100% {
    left: 112%;
  }
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 5.8rem;
  line-height: 0.9;
  font-weight: 760;
}

.hero-copy {
  max-width: 650px;
  margin: 28px 0 0;
  font-family: var(--font-display);
  font-size: 1.72rem;
  line-height: 1.18;
  color: rgba(243, 239, 228, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid currentColor;
  border-radius: 4px;
  padding: 12px 18px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.button.ghost {
  color: var(--paper);
}

.hero-note {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  color: rgba(243, 239, 228, 0.82);
}

.hero-note span {
  padding: 18px 34px;
  border-right: 1px solid var(--line-dark);
}

.hero-note span:last-child {
  border-right: 0;
}

.band {
  padding: 110px 34px;
}

.band.dark {
  background: var(--ink);
  color: var(--paper);
}

.band.muted {
  background: var(--paper-2);
}

.section-grid,
.workshop-layout,
.contact-layout {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 78px;
  align-items: start;
}

h2,
h3,
p {
  overflow-wrap: anywhere;
}

h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 3.1rem;
  line-height: 1;
  font-weight: 720;
}

h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.08;
  font-weight: 660;
}

.statement {
  font-size: 1.3rem;
}

.statement p:first-child {
  margin-top: 0;
}

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

.image-led {
  padding-top: 88px;
  padding-bottom: 88px;
}

.image-led-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.82fr 0.95fr 0.68fr;
  gap: 26px;
  align-items: end;
}

.image-led figure {
  margin: 0;
}

.image-led img,
.journey-card img,
.destination-strip img,
.destination-strip video,
.mentor img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.image-tall {
  aspect-ratio: 0.72;
}

.image-wide {
  aspect-ratio: 0.7;
  transform: translateY(46px);
}

.image-led-copy {
  align-self: center;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  padding: 42px 0;
}

.image-led-copy p:last-child {
  color: rgba(243, 239, 228, 0.76);
}

.method-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.method-list article {
  min-height: 210px;
  padding: 26px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.method-list span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--ember);
  font-size: 0.86rem;
  font-weight: 700;
}

.method-list p,
.workshop-modules p,
.journey-card p,
.mentor p,
.contact-copy p,
.site-footer p {
  color: rgba(17, 20, 15, 0.72);
}

.section-heading {
  width: min(840px, 100%);
  margin: 0 auto 50px;
  text-align: center;
}

.section-heading p:last-child {
  margin: 18px auto 0;
  max-width: 690px;
  color: rgba(17, 20, 15, 0.72);
}

.featured-journeys {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.journey-card {
  background: var(--paper);
  border: 1px solid var(--line-light);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.journey-image-link {
  position: relative;
  display: grid;
  min-height: 430px;
  align-items: end;
  overflow: hidden;
  color: var(--paper);
  text-decoration: none;
  isolation: isolate;
}

.journey-image-link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(17, 20, 15, 0.88), rgba(17, 20, 15, 0.12) 66%);
}

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

.journey-image-link span {
  display: grid;
  gap: 10px;
  padding: 28px;
}

.journey-image-link strong {
  max-width: 520px;
  font-family: var(--font-display);
  font-size: 2.45rem;
  line-height: 0.95;
}

.journey-image-link small {
  color: rgba(243, 239, 228, 0.82);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
}

.journey-card > p,
.journey-card > .card-button {
  margin-left: 24px;
  margin-right: 24px;
}

.journey-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  margin-bottom: 18px;
  color: var(--ember);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
}

.journey-card p {
  min-height: 92px;
  margin-top: 24px;
}

.journey-card .card-button {
  display: inline-block;
  margin-bottom: 26px;
}

.all-tours-cta {
  margin-top: 34px;
  text-align: center;
}

.destination-strip {
  width: min(1180px, 100%);
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.destination-strip figure {
  position: relative;
  min-height: 210px;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: var(--ink);
}

.destination-strip figcaption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  color: var(--paper);
  font-weight: 700;
  text-shadow: 0 1px 20px rgba(0, 0, 0, 0.55);
}

.workshop-layout {
  align-items: center;
}

.workshop-layout > div:first-child p:last-child {
  margin-top: 22px;
  color: rgba(17, 20, 15, 0.72);
}

.workshop-modules {
  display: grid;
  gap: 14px;
}

.workshop-modules article {
  border: 1px solid var(--line-light);
  border-radius: 6px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.24);
}

.proof {
  background-image: url("assets/media/about-landscape.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  isolation: isolate;
}

.proof::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(17, 20, 15, 0.76);
}

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

.proof h2 {
  max-width: 760px;
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 52px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.proof-list li {
  min-height: 210px;
  padding: 28px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.proof-list strong {
  display: block;
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: 2.3rem;
  line-height: 1;
}

.proof-list span {
  color: rgba(243, 239, 228, 0.76);
}

.about-story {
  background: var(--paper);
}

.about-mosaic {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 48px;
  align-items: start;
}

.about-mosaic figure {
  position: sticky;
  top: 100px;
  margin: 0;
}

.about-mosaic img {
  width: 100%;
  aspect-ratio: 0.78;
  object-fit: cover;
  border-radius: 6px;
}

.about-panel {
  display: grid;
  gap: 30px;
}

.journey-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.journey-timeline article {
  min-height: 190px;
  padding: 22px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.24);
  transition: transform 220ms ease, background 220ms ease;
}

.journey-timeline article:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.44);
}

.journey-timeline span {
  display: block;
  margin-bottom: 28px;
  color: var(--ember);
  font-weight: 700;
}

.story-vision {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.story-vision article {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line-light);
  border-radius: 6px;
  background: var(--paper-2);
}

.story-vision p,
.about-panel > p {
  color: rgba(17, 20, 15, 0.72);
}

.mentor-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.mentor {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 24px;
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line-light);
  border-radius: 6px;
}

.mentor img {
  aspect-ratio: 1;
}

.mentor .role {
  margin-bottom: 8px;
  color: var(--ember);
}

.mentor h3 {
  margin-bottom: 12px;
}

.contact {
  background: var(--ink-2);
  color: var(--paper);
}

.contact-layout {
  align-items: stretch;
}

.contact-copy {
  min-height: 610px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 38px;
  border-radius: 6px;
  background:
    linear-gradient(0deg, rgba(17, 20, 15, 0.88), rgba(17, 20, 15, 0.12)),
    url("assets/media/contact-group-photo.jpg");
  background-size: cover;
  background-position: center;
}

.contact-copy p {
  color: rgba(243, 239, 228, 0.82);
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-links a {
  color: var(--paper);
  text-decoration: none;
}

.enquiry-form {
  display: grid;
  gap: 17px;
  padding: 34px;
  border: 1px solid var(--line-dark);
  border-radius: 6px;
}

.enquiry-form label {
  display: grid;
  gap: 8px;
}

.enquiry-form span {
  color: rgba(243, 239, 228, 0.78);
  font-size: 0.88rem;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(243, 239, 228, 0.24);
  border-radius: 4px;
  background: rgba(243, 239, 228, 0.08);
  color: var(--paper);
  padding: 13px 14px;
  outline: none;
}

.enquiry-form select {
  color-scheme: dark;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-color: var(--gold);
}

.enquiry-form textarea {
  resize: vertical;
}

.enquiry-form .button {
  width: fit-content;
}

.light-check span {
  color: rgba(243, 239, 228, 0.78);
}

.form-note {
  min-height: 1.4em;
  margin: 0;
  color: rgba(243, 239, 228, 0.7);
  font-size: 0.9rem;
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
  padding: 46px 34px 118px;
  background: var(--ink);
  color: var(--paper);
  border-top: 1px solid var(--line-dark);
}

.site-footer img {
  width: 220px;
  height: auto;
  margin-bottom: 10px;
}

.site-footer p {
  max-width: 390px;
  margin: 0;
  color: rgba(243, 239, 228, 0.68);
}

.footer-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: rgba(243, 239, 228, 0.72);
  font-size: 0.94rem;
}

.footer-meta::before {
  content: "";
  width: 42px;
  height: 1px;
  background: rgba(243, 239, 228, 0.24);
}

.footer-brand-block {
  display: grid;
  gap: 2px;
  justify-items: center;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 32px;
  min-height: 32px;
  justify-content: center;
}

.site-footer .instagram-logo {
  width: 24px;
  height: 24px;
  object-fit: contain;
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.tour-hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.tour-hero-media,
.tour-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.tour-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-hero-shade {
  background:
    linear-gradient(90deg, rgba(17, 20, 15, 0.84), rgba(17, 20, 15, 0.25) 58%, rgba(17, 20, 15, 0.55)),
    linear-gradient(0deg, rgba(17, 20, 15, 0.82), rgba(17, 20, 15, 0.02) 62%);
}

.tour-hero-inner {
  position: relative;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 150px 0 78px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 58px;
  color: rgba(243, 239, 228, 0.78);
  font-size: 0.9rem;
  text-decoration: none;
}

.back-link:hover {
  color: var(--paper);
}

.tour-hero h1 {
  max-width: 840px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 5.4rem;
  line-height: 0.9;
  font-weight: 760;
}

.tour-hero .kicker {
  margin-bottom: 10px;
}

.tour-hero .hero-copy {
  margin-top: 26px;
}

.hampi-page .tour-hero-inner {
  display: flex;
  min-height: 88svh;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 118px 0 78px;
}

.hampi-page .tour-hero .back-link {
  position: absolute;
  top: 118px;
  left: 0;
  margin: 0;
}

.hampi-page .tour-hero .kicker {
  margin: 0 0 8px;
}

.hampi-page .tour-hero h1 {
  margin: 0;
}

.tour-facts {
  background: var(--ink);
  color: var(--paper);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.tour-facts dl {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 0;
}

.tour-facts div {
  min-height: 132px;
  padding: 26px;
  border-left: 1px solid var(--line-dark);
}

.tour-facts div:last-child {
  border-right: 1px solid var(--line-dark);
}

.tour-facts dt {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.tour-facts dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.32rem;
  line-height: 1.1;
}

.tour-gallery {
  overflow: hidden;
}

.gallery-rail {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.72fr 0.54fr 0.86fr;
  gap: 22px;
  align-items: center;
}

.gallery-rail figure {
  margin: 0;
}

.gallery-large {
  aspect-ratio: 0.72;
}

.gallery-stack {
  display: grid;
  gap: 22px;
}

.gallery-stack img {
  aspect-ratio: 0.96;
}

.gallery-rail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.gallery-copy {
  padding-left: 30px;
}

.gallery-copy p:last-child,
.section-heading.light p:last-child {
  color: rgba(243, 239, 228, 0.76);
}

.section-heading.light {
  color: var(--paper);
}

.tour-session-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.tour-session-grid article {
  min-height: 310px;
  padding: 25px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.22);
}

.tour-session-grid span,
.flow-grid p {
  display: inline-block;
  margin: 0 0 34px;
  color: var(--ember);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.tour-session-grid p,
.split-list li,
.detail-layout p,
.detail-cards p,
.flow-grid span {
  color: rgba(17, 20, 15, 0.72);
}

.split-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.split-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-light);
}

.split-list li {
  padding: 17px 0;
  border-bottom: 1px solid var(--line-light);
}

.flow-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.flow-grid article {
  min-height: 285px;
  padding: 28px;
  border: 1px solid var(--line-dark);
  border-radius: 6px;
}

.flow-grid p {
  color: var(--gold);
}

.flow-grid span {
  display: block;
  margin-top: 18px;
  color: rgba(243, 239, 228, 0.72);
}

.tour-strip {
  margin-top: 0;
}

.tour-strip figure {
  min-height: 360px;
}

.upcoming-grid {
  width: min(1180px, 100%);
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.upcoming-grid a {
  position: relative;
  min-height: 170px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 16px;
  color: var(--paper);
  text-decoration: none;
  border-radius: 6px;
  isolation: isolate;
}

.upcoming-grid a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--ink);
}

.upcoming-grid img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

.upcoming-grid a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(17, 20, 15, 0.82), rgba(17, 20, 15, 0.08) 64%);
}

.upcoming-grid a:hover img {
  transform: scale(1.05);
}

.upcoming-grid span {
  font-size: 0.95rem;
  font-weight: 700;
}

.detail-layout {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: start;
}

.detail-layout h2 {
  margin-bottom: 24px;
}

.detail-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.detail-cards article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line-light);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.28);
}

.travel-support-note {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
}

.travel-support-note h3 {
  margin-bottom: 14px;
  font-size: 1.7rem;
}

.travel-support-note p + p {
  margin-top: 14px;
}

.hampi-contact {
  background:
    linear-gradient(0deg, rgba(17, 20, 15, 0.9), rgba(17, 20, 15, 0.14)),
    url("assets/media/hampi-gallery-04.jpg");
  background-size: cover;
  background-position: center;
}

.dark-link {
  color: rgba(17, 20, 15, 0.64);
}

.dark-link:hover {
  color: var(--ink);
}

.button.dark-button {
  color: var(--ink);
}

.contact-simple {
  align-items: stretch;
}

.contact-panel {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  color: rgba(243, 239, 228, 0.78);
}

.tour-cta {
  background: var(--paper-2);
}

.tour-cta-inner {
  width: min(900px, 100%);
  margin: 0 auto;
  text-align: center;
}

.tour-cta-inner p:not(.section-label) {
  max-width: 680px;
  margin: 22px auto 0;
  color: rgba(17, 20, 15, 0.72);
}

.tour-cta-inner .hero-actions {
  justify-content: center;
}

.kashmir-page {
  --ink: #101923;
  --ink-2: #152432;
  --paper: #f1eee5;
  --paper-2: #dfe6df;
  --mist: #b9c9cf;
  --leaf: #4c6f65;
  --ember: #9c6f5b;
  --blue: #496f86;
  --gold: #c4a75c;
}

.kashmir-hero .tour-hero-shade {
  background:
    linear-gradient(90deg, rgba(9, 19, 30, 0.9), rgba(16, 25, 35, 0.34) 58%, rgba(9, 19, 30, 0.72)),
    linear-gradient(0deg, rgba(9, 19, 30, 0.88), rgba(9, 19, 30, 0.08) 62%);
}

.kashmir-film {
  background: var(--ink-2);
  color: var(--paper);
}

.kashmir-film-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: center;
}

.kashmir-film-grid p:last-child {
  color: rgba(241, 238, 229, 0.74);
}

.kashmir-film-grid video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow);
}

.registration-proof {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr);
  gap: 52px;
  align-items: center;
  background: var(--ink);
  color: var(--paper);
}

.registration-proof-image {
  margin: 0;
  justify-self: end;
  width: min(420px, 100%);
}

.registration-proof-image img {
  width: 100%;
  aspect-ratio: 0.78;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--line-dark);
}

.registration-proof-copy {
  max-width: 680px;
}

.registration-proof-copy p:not(.section-label) {
  color: rgba(241, 238, 229, 0.74);
}

.registration-proof-simple .registration-proof-copy {
  display: grid;
  justify-items: start;
  gap: 16px;
}

.registration-proof-simple .hero-actions {
  margin-top: 0;
}

.enrol-now-button {
  min-width: 190px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-page,
.payment-page {
  padding-top: 84px;
  background: var(--paper);
}

.page-shell {
  padding-top: 84px;
  background: var(--paper);
}

.page-hero {
  width: min(1180px, calc(100% - 68px));
  margin: 0 auto;
  padding: 88px 0 62px;
}

.page-hero h1 {
  max-width: 960px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 4.4rem;
  line-height: 0.96;
  font-weight: 760;
}

.page-hero p {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(17, 20, 15, 0.72);
  font-size: 1.18rem;
}

.testimonials {
  background: var(--ink);
  color: var(--paper);
}

.testimonial-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.testimonial-grid article {
  min-height: 380px;
  padding: 28px;
  border: 1px solid var(--line-dark);
  border-radius: 6px;
}

.testimonial-grid img {
  width: 76px;
  height: 76px;
  margin-bottom: 20px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-grid p {
  color: rgba(243, 239, 228, 0.72);
}

.mentor-social {
  display: inline-flex;
  margin-top: 12px;
}

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

.legal-copy h2 {
  margin-top: 36px;
  font-size: 2rem;
}

.form-hero,
.payment-hero {
  width: min(1180px, calc(100% - 68px));
  margin: 0 auto;
  padding: 76px 0 46px;
}

.form-hero {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: end;
}

.form-hero h1,
.payment-hero h1 {
  max-width: 840px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.96;
  font-weight: 760;
}

.form-hero p:last-child,
.payment-hero p:last-child {
  max-width: 680px;
  color: rgba(17, 20, 15, 0.72);
  font-size: 1.16rem;
}

.form-summary {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-light);
}

.form-summary span {
  padding: 17px 0;
  border-bottom: 1px solid var(--line-light);
  color: rgba(17, 20, 15, 0.72);
}

.enrolment-shell {
  width: min(1180px, calc(100% - 68px));
  margin: 0 auto 110px;
  padding: 38px;
  border: 1px solid var(--line-light);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.32);
}

.registration-form {
  display: grid;
  gap: 21px;
}

.form-heading {
  margin: 0 0 4px;
  font-size: 1rem;
  color: rgba(17, 20, 15, 0.76);
}

.registration-form label {
  display: grid;
  gap: 8px;
}

.registration-form label > span,
.registration-form .check-row span {
  color: rgba(17, 20, 15, 0.75);
  font-size: 0.86rem;
}

.registration-form input,
.registration-form select,
.registration-form textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(17, 20, 15, 0.45);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.42);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

.registration-form textarea {
  min-height: 150px;
  resize: vertical;
}

.registration-form input:focus,
.registration-form select:focus,
.registration-form textarea:focus {
  border-color: var(--ember);
  box-shadow: 0 0 0 2px rgba(187, 91, 57, 0.14);
}

.phone-row {
  display: grid;
  grid-template-columns: 96px 1fr;
}

.phone-row select {
  border-right: 0;
}

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

.check-row {
  display: flex !important;
  grid-template-columns: none;
  align-items: center;
  gap: 12px !important;
}

.check-row input {
  width: 17px;
  height: 17px;
  min-height: 0;
  padding: 0;
  accent-color: var(--blue);
}

.form-submit {
  width: 100%;
  margin-top: 2px;
  background: #617ca9;
  border-color: #617ca9;
  color: #fff;
}

.server-note {
  margin: 0;
  color: rgba(17, 20, 15, 0.58);
  font-size: 0.9rem;
}

.payment-hero {
  text-align: center;
}

.payment-hero h1 {
  margin-left: auto;
  margin-right: auto;
}

.payment-hero p:last-child {
  margin: 22px auto 0;
}

.payment-layout {
  width: min(1180px, calc(100% - 68px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.76fr 1.05fr 0.72fr;
  gap: 18px;
  align-items: stretch;
}

.payment-focus,
.payment-methods {
  width: min(1180px, calc(100% - 68px));
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.payment-focus {
  grid-template-columns: 0.85fr 1.15fr;
  align-items: stretch;
  margin-bottom: 18px;
}

.payment-methods {
  grid-template-columns: 1.2fr 0.8fr;
}

.payment-total-card,
.payment-guidance {
  border: 1px solid var(--line-light);
  border-radius: 6px;
  padding: 34px;
}

.payment-total-card {
  display: grid;
  align-content: center;
  gap: 12px;
  background: var(--ink);
  color: var(--paper);
}

.payment-total-card strong {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.94;
}

.payment-total-card span {
  color: rgba(243, 239, 228, 0.72);
}

.payment-guidance {
  background: rgba(255, 255, 255, 0.32);
}

.payment-guidance h2 {
  margin-bottom: 22px;
}

.payment-guidance ol {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 22px;
  color: rgba(17, 20, 15, 0.72);
}

.payment-card,
.qr-card,
.payment-note {
  border: 1px solid var(--line-light);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.32);
  padding: 30px;
}

.bank-card {
  display: grid;
  align-content: start;
}

.step-label {
  margin: 0 0 22px;
  color: var(--ember);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.payment-card h2,
.qr-card h2,
.payment-note h2 {
  font-size: 2.2rem;
}

.amount-box {
  margin-top: 26px;
  display: grid;
  gap: 10px;
  padding: 28px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 6px;
}

.amount-box strong {
  font-family: var(--font-display);
  font-size: 2.45rem;
  line-height: 1;
}

.amount-box small,
.amount-box span {
  color: rgba(243, 239, 228, 0.72);
}

.bank-details {
  margin: 24px 0 0;
  border-top: 1px solid var(--line-light);
}

.bank-details div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-light);
}

.bank-details dt {
  color: rgba(17, 20, 15, 0.58);
}

.bank-details dd {
  margin: 0;
  font-weight: 700;
}

.qr-card img {
  width: min(100%, 390px);
  margin: 24px auto 0;
  border-radius: 6px;
}

.payment-note {
  width: min(920px, calc(100% - 68px));
  margin: 22px auto 110px;
  text-align: center;
}

.payment-note p {
  color: rgba(17, 20, 15, 0.72);
}

.payment-next-steps {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin: 20px auto 0;
  padding-left: 26px;
  text-align: left;
  color: rgba(17, 20, 15, 0.72);
}

.payment-next-steps a {
  color: var(--ink);
}

.whatsapp-chat {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  color: #222;
}

.whatsapp-bubble {
  display: none;
  min-width: 72px;
  height: 72px;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  padding: 7px 18px 7px 7px;
  background: linear-gradient(135deg, #27d447, #12b934);
  color: #fff;
  box-shadow:
    0 0 0 0 rgba(37, 211, 52, 0.42),
    0 18px 45px rgba(17, 20, 15, 0.28),
    0 0 34px rgba(37, 211, 52, 0.44);
  cursor: pointer;
  animation: whatsapp-glow 2.8s ease-in-out infinite;
}

.whatsapp-bubble span {
  max-width: 86px;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.05;
  text-align: left;
  text-transform: uppercase;
}

.whatsapp-bubble img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(17, 20, 15, 0.18));
}

.whatsapp-chat.is-minimized .whatsapp-bubble {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.whatsapp-bubble:hover {
  transform: translateY(-2px) scale(1.02);
}

@keyframes whatsapp-glow {
  0%,
  100% {
    box-shadow:
      0 0 0 0 rgba(37, 211, 52, 0.36),
      0 18px 45px rgba(17, 20, 15, 0.28),
      0 0 28px rgba(37, 211, 52, 0.36);
  }
  55% {
    box-shadow:
      0 0 0 13px rgba(37, 211, 52, 0),
      0 22px 55px rgba(17, 20, 15, 0.3),
      0 0 48px rgba(37, 211, 52, 0.68);
  }
}

.whatsapp-chat.is-minimized .whatsapp-panel {
  display: none;
}

.whatsapp-panel {
  width: min(360px, calc(100vw - 32px));
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(17, 20, 15, 0.28);
}

.whatsapp-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  background: #25d334;
  color: #fff;
}

.whatsapp-head img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.whatsapp-head strong {
  flex: 1;
  font-size: 1.1rem;
}

.whatsapp-close {
  width: 34px;
  height: 34px;
  border: 0;
  color: #fff;
  background: transparent;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.whatsapp-body {
  padding: 18px;
  background:
    radial-gradient(circle at 20% 30%, rgba(37, 211, 52, 0.08), transparent 25%),
    #f7f7f2;
}

.whatsapp-message {
  margin: 0 0 14px;
  padding: 14px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(17, 20, 15, 0.08);
}

.whatsapp-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.whatsapp-chips a {
  padding: 7px 10px;
  border: 1px solid rgba(37, 211, 52, 0.45);
  border-radius: 4px;
  color: #1d231d;
  background: #fff;
  text-decoration: none;
  font-size: 0.9rem;
}

.whatsapp-start {
  display: flex;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 13px;
  border-radius: 8px;
  background: #25d334;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.return-top {
  position: fixed;
  right: 22px;
  bottom: 94px;
  z-index: 59;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(243, 239, 228, 0.48);
  border-radius: 50%;
  background: rgba(17, 20, 15, 0.88);
  color: var(--paper);
  box-shadow: 0 16px 36px rgba(17, 20, 15, 0.22);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.return-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.return-top:hover {
  background: var(--ink);
}

@media (max-width: 980px) {
  .site-header {
    padding: 18px 22px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 75px 18px auto 18px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    background: rgba(17, 20, 15, 0.96);
    border: 1px solid var(--line-dark);
    border-radius: 6px;
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 15px 12px;
    border-bottom: 1px solid var(--line-dark);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero h1 {
    font-size: 4.35rem;
  }

  .hero-copy {
    font-size: 1.45rem;
  }

  .section-grid,
  .workshop-layout,
  .contact-layout,
  .image-led-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .image-wide {
    transform: none;
  }

  .image-tall,
  .image-wide {
    aspect-ratio: 1.2;
  }

  h2 {
    font-size: 2.55rem;
  }

  .proof-list,
  .featured-journeys,
  .mentor-grid,
  .tour-session-grid,
  .flow-grid,
  .detail-cards,
  .testimonial-grid,
  .payment-focus,
  .payment-methods,
  .about-mosaic,
  .kashmir-film-grid,
  .registration-proof {
    grid-template-columns: 1fr;
  }

  .about-mosaic figure {
    position: static;
  }

  .story-vision,
  .journey-timeline {
    grid-template-columns: 1fr;
  }

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

  .registration-proof-image {
    justify-self: start;
  }

  .destination-strip {
    grid-template-columns: 1fr;
  }

  .tour-hero h1 {
    font-size: 4.2rem;
  }

  .hampi-page .tour-hero-inner {
    min-height: 88svh;
    padding: 100px 0 58px;
  }

  .hampi-page .tour-hero .back-link {
    top: 100px;
  }

  .tour-facts dl,
  .gallery-rail,
  .split-list,
  .detail-layout,
  .form-hero,
  .payment-layout {
    grid-template-columns: 1fr;
  }

  .tour-facts div,
  .tour-facts div:last-child {
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .gallery-copy {
    padding-left: 0;
  }

  .gallery-large {
    aspect-ratio: 1.1;
  }

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

  .form-hero,
  .payment-hero,
  .page-hero,
  .enrolment-shell,
  .payment-layout,
  .payment-focus,
  .payment-methods,
  .payment-note {
    width: min(100% - 44px, 760px);
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .site-header {
    gap: 16px;
    padding: 15px 16px;
  }

  .brand-name {
    font-size: 1.1rem;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-inner {
    width: calc(100% - 32px);
    padding: 126px 0 58px;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .tour-hero h1 {
    font-size: 3.1rem;
  }

  .page-hero h1 {
    font-size: 2.9rem;
  }

  .journey-image-link {
    min-height: 330px;
  }

  .journey-image-link strong {
    font-size: 2rem;
  }

  .tour-hero-inner {
    width: calc(100% - 32px);
    padding: 118px 0 56px;
  }

  .hero-copy {
    font-size: 1.25rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .hero-note span {
    padding: 13px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .hero-note span:last-child {
    border-bottom: 0;
  }

  .band {
    padding: 78px 16px;
  }

  h2 {
    font-size: 2.15rem;
  }

  h3 {
    font-size: 1.34rem;
  }

  .statement {
    font-size: 1.1rem;
  }

  .method-list {
    grid-template-columns: 1fr;
  }

  .journey-card p {
    min-height: 0;
  }

  .mentor {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    overflow: hidden;
    background: var(--paper);
  }

  .mentor img {
    width: 100%;
    height: auto;
    aspect-ratio: 1.05;
    border-radius: 6px 6px 0 0;
    object-fit: cover;
  }

  .mentor > div {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 22px;
    background: var(--paper);
    border-top: 1px solid var(--line-light);
  }

  .mentor h3,
  .mentor p,
  .mentor .role,
  .mentor .text-link {
    position: relative;
    z-index: 2;
  }

  .mentor p {
    color: rgba(17, 20, 15, 0.78);
  }

  .contact-copy {
    min-height: 500px;
    padding: 24px;
  }

  .enquiry-form {
    padding: 22px;
  }

  .site-footer {
    padding: 34px 16px 118px;
  }

  .tour-facts div {
    min-height: 108px;
    padding: 22px 16px;
  }

  .tour-session-grid article,
  .flow-grid article,
  .detail-cards article {
    min-height: 0;
  }

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

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

  .whatsapp-chat {
    right: 16px;
    bottom: 16px;
  }

  .whatsapp-bubble {
    min-width: 64px;
    height: 64px;
    padding: 6px;
  }

  .whatsapp-bubble img {
    width: 52px;
    height: 52px;
  }

  .whatsapp-bubble span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .return-top {
    right: 16px;
    bottom: 88px;
  }

  .tour-strip figure {
    min-height: 260px;
  }

  .form-page,
  .payment-page {
    padding-top: 70px;
  }

  .form-hero,
  .payment-hero {
    width: calc(100% - 32px);
    padding: 58px 0 30px;
  }

  .form-hero h1,
  .payment-hero h1 {
    font-size: 2.65rem;
  }

  .enrolment-shell,
  .payment-layout,
  .payment-focus,
  .payment-methods,
  .payment-note {
    width: calc(100% - 32px);
  }

  .enrolment-shell,
  .payment-card,
  .payment-total-card,
  .payment-guidance,
  .qr-card,
  .payment-note {
    padding: 22px;
  }

  .payment-total-card strong {
    font-size: 2.75rem;
  }

  .form-two,
  .phone-row,
  .bank-details div {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .phone-row select {
    border-right: 1px solid rgba(17, 20, 15, 0.45);
  }

  .payment-card h2,
  .qr-card h2,
  .payment-note h2 {
    font-size: 1.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
  }

  .hero-media {
    display: none;
  }

  .hero {
    background: linear-gradient(rgba(17, 20, 15, 0.68), rgba(17, 20, 15, 0.82)), url("assets/media/hero-poster.jpg");
    background-size: cover;
    background-position: center;
  }
}
