/* FWJ root landing page — fresh visual system */
/* Base layout formerly embedded in index.html. Kept first to preserve the cascade. */
:root {
  --olive: #5d7021;
  --ink: #10110e;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 13px;
  color: var(--ink);
}
button,
input,
select,
textarea {
  font-family: inherit;
}
.header {
  height: 94px;
  border-top: 4px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px clamp(20px, 4vw, 62px);
  gap: 25px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}
.mark {
  width: 62px;
  height: 62px;
  border: 2px solid #778049;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 31px;
}
.brand b {
  display: block;
  font-size: 28px;
  letter-spacing: 3px;
  line-height: 0.85;
}
.brand small {
  display: block;
  margin-top: 6px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2.2px;
  line-height: 1.25;
}
nav {
  display: flex;
  gap: clamp(18px, 3.1vw, 48px);
}
nav a {
  color: inherit;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  position: relative;
  padding: 12px 0;
}
nav a:first-child {
  color: var(--olive);
}
nav a:first-child:after {
  content: "";
  height: 2px;
  width: 42px;
  background: var(--olive);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.actions {
  display: flex;
  align-items: center;
  gap: 22px;
}
.book {
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, #40560f, #74852f);
  border-radius: 5px;
  padding: 16px 21px;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}
.hamburger {
  width: 28px;
  height: 20px;
  display: grid;
  align-content: space-between;
}
.hamburger i {
  height: 2px;
  background: var(--ink);
  display: block;
}
.hero {
  min-height: 430px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-left: clamp(90px, 11vw, 150px);
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0 0 0 43%;
  background: url("../New%20folder/images/leopard-hero.jpg") center/cover no-repeat;
  z-index: -2;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0 40% 0 31%;
  background: linear-gradient(
    90deg,
    #fff 0%,
    rgba(255, 255, 255, 0.88) 32%,
    transparent 100%
  );
  z-index: -1;
}
.copy {
  max-width: 560px;
}
.eyebrow {
  color: #5d642f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.1px;
  margin: 0 0 9px;
}
h1 {
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.08;
  letter-spacing: -1px;
  margin: 0;
  font-weight: 900;
}
h1 span {
  color: #5d642f;
}
main.hero .copy h1 {
  font-family: Anton, Montserrat, sans-serif;
  font-weight: 400;
  letter-spacing: 0.3px;
}
.copy p:not(.eyebrow) {
  max-width: 330px;
  color: #53534f;
  font-size: 14px;
  line-height: 1.8;
}
.buttons {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}
.buttons button,
.buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  font-size: 11px;
  font-weight: 800;
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
}
.primary {
  border: 0;
  color: #fff;
  background: var(--olive);
}
.secondary {
  border: 2px solid #ddd;
  background: #fff;
  color: var(--ink);
}
.social {
  position: absolute;
  left: 32px;
  top: 96px;
  display: grid;
  gap: 21px;
  font-size: 21px;
  text-align: center;
}
.social:after {
  content: "";
  width: 1px;
  height: 113px;
  background: #222;
  margin: 3px auto;
}
.pages {
  position: absolute;
  right: 30px;
  top: 90px;
  display: grid;
  gap: 12px;
  color: #4d5129;
  font-size: 12px;
  font-weight: 800;
}
.pages:after {
  content: "";
  height: 30px;
  width: 1px;
  background: #222;
  margin: auto;
  grid-row: 2;
}
@media (max-width: 850px) {
  nav {
    display: none;
  }
  .hero {
    padding: 48px 30px;
    align-items: flex-start;
  }
  .hero:after {
    inset: 0;
    opacity: 0.35;
  }
  .hero:before {
    inset: 0;
    background: linear-gradient(90deg, #fff 10%, rgba(255, 255, 255, 0.7));
  }
  .social,
  .pages {
    display: none;
  }
}
@media (max-width: 500px) {
  .header {
    height: 70px;
    padding: 6px 18px;
  }
  .mark {
    width: 43px;
    height: 43px;
    font-size: 23px;
  }
  .brand b {
    font-size: 20px;
  }
  .brand small {
    font-size: 7px;
  }
  .book {
    display: none;
  }
  .hero {
    min-height: 550px;
    padding: 45px 20px;
  }
  h1 {
    font-size: 42px;
  }
  .buttons button {
    padding: 0 12px;
    font-size: 9px;
  }
}

:root {
  --fwj-ink: #10110e;
  --fwj-olive: #5d7021;
  --fwj-olive-dark: #40540f;
  --fwj-paper: #fffefb;
}

body {
  background: var(--fwj-paper);
}
.header {
  background: rgba(255, 254, 251, 0.96);
}
.mark {
  color: var(--fwj-ink);
  background: #fff;
  box-shadow: inset 0 0 0 4px #f3f1e8;
}
.book,
.primary {
  background: linear-gradient(135deg, var(--fwj-olive-dark), var(--fwj-olive));
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.book:hover,
.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 17px rgba(56, 75, 14, 0.26);
}
.secondary {
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}
.secondary:hover {
  background: #f4f5ec;
  border-color: var(--fwj-olive);
}
nav a.is-active {
  color: var(--fwj-olive);
}
.hamburger {
  cursor: pointer;
  border: 0;
  background: transparent;
  padding: 0;
}

.hero {
  isolation: isolate;
}
.copy {
  width: 550px;
  max-width: calc(100vw - 150px);
}
.copy .eyebrow {
  margin: 0 0 12px;
  color: #555d25;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.8px;
  line-height: 1;
}
.copy h1 {
  margin: 0;
  color: #050505;
  font-size: clamp(48px, 4.65vw, 68px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.7px;
  white-space: nowrap;
}
.copy h1 span {
  color: #5a601d;
}
.copy .hero-description {
  margin: 17px 0 0;
  color: #4d4c49;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.9;
}
.buttons {
  margin-top: 26px;
  gap: 19px;
}
.buttons button,
.buttons a {
  min-width: 221px;
  min-height: 49px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 19px 0 21px;
  font-size: 11px;
  letter-spacing: 0;
}
.buttons .secondary {
  min-width: 221px;
  border-color: #d2d2d2;
  color: #252525;
}
.buttons strong {
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}
.social {
  left: 32px;
  top: 94px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 28px;
  color: #10110e;
}
.social::after {
  display: none;
}
.social a {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: inherit;
}
.social a svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.social a .dot {
  fill: currentColor;
  stroke: none;
}
.social .facebook {
  fill: currentColor;
  stroke: none;
  width: 23px;
  height: 23px;
}
.social a svg .play {
  fill: #fff;
  stroke: none;
}
.social a svg path:first-child {
  fill: currentColor;
  stroke: none;
}
.social-line {
  width: 2px;
  height: 113px;
  margin-top: 4px;
  background: #5d5d5b;
}
.scroll-copy {
  color: #70706c;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.12;
  text-align: center;
  letter-spacing: 0.15px;
  margin-top: 1px;
}
.mouse {
  width: 19px;
  height: 27px;
  margin-top: -1px;
  fill: none;
  stroke: #1e1f1c;
  stroke-width: 1.7;
  stroke-linecap: round;
}
/* Shared hero social/scroll-down sidebar, used on every hero banner. */
.hero-social {
  position: absolute;
  left: 34px;
  top: 100px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 28px;
  color: #10110e;
}
.hero-social a {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: inherit;
}
.hero-social a svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-social a svg .dot {
  fill: currentColor;
  stroke: none;
}
.hero-social .facebook {
  fill: currentColor;
  stroke: none;
  width: 23px;
  height: 23px;
}
.hero-social a svg path:first-child {
  fill: currentColor;
  stroke: none;
}
.hero-social a svg .play {
  fill: #fff;
  stroke: none;
}
.hero-social i {
  display: block;
  width: 2px;
  height: 100px;
  margin-top: 2px;
  background: #5d5d5b;
}
.hero-social small {
  display: block;
  margin-top: 1px;
  color: #70706c;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.15px;
  text-align: center;
}
.hero-social .mouse {
  width: 19px;
  height: 27px;
  margin-top: -1px;
  fill: none;
  stroke: #1e1f1c;
  stroke-width: 1.7;
  stroke-linecap: round;
}
@media (max-width: 900px) {
  .hero-social {
    display: none;
  }
}
.pages {
  right: 28px;
  top: 85px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  color: #4f5528;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}
.pages::after {
  display: none;
}
.pages .page-line {
  width: 2px;
  height: 31px;
  background: #222;
  margin: 1px 0 2px;
}
.pages .slide-arrows {
  margin-top: 63px;
  color: #fff;
  font-size: 26px;
  font-weight: 400;
  line-height: 0.9;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

/* Services strip below the banner */
.services {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 38px 17px;
  background: #fff;
}
.service-card {
  min-height: 132px;
  padding: 0 27px;
  text-align: center;
  position: relative;
}
.service-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  width: 1px;
  height: 112px;
  background: #e4e4dd;
}
.service-card svg {
  width: 42px;
  height: 42px;
  margin: 0 auto 4px;
  fill: none;
  stroke: #5c612b;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card svg .solid {
  fill: #5c612b;
  stroke: none;
}
.service-card h2 {
  margin: 0 0 7px;
  color: #222;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}
.service-card p {
  margin: 0;
  color: #555550;
  font-size: 10px;
  font-weight: 500;
  line-height: 2.05;
}

@media (max-width: 850px) {
  .services {
    grid-template-columns: repeat(3, 1fr);
    padding: 26px 20px;
    row-gap: 25px;
  }
  .service-card:nth-child(3)::after {
    display: none;
  }
}
@media (max-width: 500px) {
  .services {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .service-card {
    min-height: auto;
    padding: 0 0 22px;
  }
  .service-card:not(:last-child)::after {
    display: block;
    top: auto;
    bottom: 0;
    left: 20%;
    right: 20%;
    width: auto;
    height: 1px;
  }
}

/* Upcoming tours */
.tours-section {
  max-width: 1330px;
  margin: 0 auto;
  padding: 22px 30px 27px;
  border-top: 1px solid #e6e6df;
}
.tours-section > h2 {
  margin: 0 0 11px;
  color: #262626;
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
}
.tours-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(430px, 1fr);
  gap: 45px;
  align-items: start;
}
.featured-tour {
  position: relative;
  height: 339px;
  overflow: hidden;
  border-radius: 6px;
  color: #fff;
  background: #15150f;
}
.featured-tour > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: none;
}
.featured-tour::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.86) 0%,
    rgba(0, 0, 0, 0.55) 43%,
    rgba(0, 0, 0, 0.16) 100%
  );
}
.featured-content {
  position: relative;
  z-index: 1;
  padding: 20px 51px;
}
.tour-badge {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 4px;
  padding: 3px 7px;
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
}
.featured-content h3 {
  margin: 9px 0 8px;
  font-size: 27px;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0.1px;
}
.featured-content > p {
  margin: 0;
  font-size: 12px;
  line-height: 1.8;
  font-weight: 500;
}
.tour-meta {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 17px 0;
  font-size: 9px;
  font-weight: 800;
  white-space: nowrap;
}
.tour-meta i {
  height: 16px;
  width: 1px;
  background: rgba(255, 255, 255, 0.65);
}
.tour-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 213px;
  height: 45px;
  padding: 0 18px 0 21px;
  border: 0;
  border-radius: 4px;
  background: linear-gradient(135deg, #41570d, #71892c);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}
.tour-button b {
  font-size: 24px;
  font-weight: 400;
}
.tour-timeline {
  position: relative;
  display: grid;
  gap: 19px;
  padding-top: 0;
}
.tour-timeline::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 27px;
  bottom: 26px;
  width: 1px;
  background: #cbcec2;
}
.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 59px minmax(0, 1fr);
  align-items: center;
  min-height: 62px;
}
.timeline-icon {
  grid-row: 1 / span 2;
  z-index: 1;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #606c29;
  color: #fff;
}
.timeline-icon svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.timeline-item > div {
  position: relative;
  display: block;
  align-self: center;
  width: 100%;
  height: 62px;
  min-width: 0;
}
.timeline-item strong {
  position: absolute;
  top: 50%;
  left: 0;
  width: 80px;
  transform: translateY(-50%);
  color: #232323;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  text-align: center;
}
.timeline-item h3 {
  position: absolute;
  top: 7px;
  left: 90px;
  right: 0;
  margin: 0;
  color: #555552;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
}
.timeline-item p {
  position: absolute;
  top: 29px;
  left: 90px;
  right: 0;
  margin: 0;
  color: #555552;
  font-size: 9px;
  font-weight: 600;
  white-space: nowrap;
}
.timeline-item em {
  float: right;
  font-style: normal;
}
.all-tours {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 27px;
  margin-top: -4px;
  color: #292929;
  text-decoration: none;
  font-size: 11px;
  font-weight: 900;
}
.all-tours b {
  font-size: 24px;
  font-weight: 400;
}

@media (max-width: 850px) {
  .tours-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .tour-timeline {
    max-width: 550px;
  }
  .all-tours {
    margin-top: 20px;
  }
}
@media (max-width: 500px) {
  .tours-section {
    padding: 22px 20px;
  }
  .featured-tour {
    height: 385px;
  }
  .featured-content {
    padding: 20px;
  }
  .featured-content h3 {
    font-size: 27px;
  }
  .tour-meta {
    flex-wrap: wrap;
    white-space: normal;
    margin: 14px 0;
  }
  .tour-meta i {
    display: none;
  }
  .tours-layout {
    grid-template-columns: 1fr;
  }
  .timeline-item h3,
  .timeline-item p {
    left: 70px;
    white-space: normal;
  }
  .timeline-item p {
    font-size: 8px;
  }
  .timeline-item em {
    float: none;
    display: block;
  }
}

/* Instagram panel */
.instagram-section {
  max-width: 1330px;
  margin: 0 auto 32px;
  padding: 17px 24px 18px;
  text-align: center;
  border: 1px solid #e2dfd3;
  border-radius: 9px;
  background: #fffdfa;
  box-shadow: 0 4px 13px rgba(35, 31, 20, 0.09);
}
.instagram-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
}
.instagram-top h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #4d5722;
  font-size: 13px;
  font-weight: 900;
}
.instagram-top h2 svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: #232323;
  stroke-width: 1.8;
}
.instagram-top h2 .ig-dot {
  fill: #232323;
  stroke: none;
}
.instagram-top > div {
  display: flex;
  align-items: center;
  gap: 27px;
}
.instagram-top strong {
  color: #282828;
  font-size: 11px;
  font-weight: 800;
}
.instagram-top button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 166px;
  height: 43px;
  padding: 0 15px 0 18px;
  border: 0;
  border-radius: 4px;
  background: linear-gradient(135deg, #44570f, #758c30);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}
.instagram-top button b {
  font-size: 23px;
  font-weight: 400;
}
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: 208px;
  gap: 14px;
  overflow: hidden;
}
.instagram-grid img {
  width: 100%;
  height: 208px;
  min-width: 0;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 5px;
}
.instagram-section > p {
  position: relative;
  z-index: 1;
  margin: 17px 0 9px;
  color: #74736e;
  font-size: 10px;
  font-weight: 500;
  clear: both;
}
.instagram-rule {
  display: block;
  width: 43px;
  height: 2px;
  margin: 0 auto;
  background: #9c9e77;
}
@media (max-width: 850px) {
  .instagram-section {
    margin: 0 20px 28px;
  }
  .instagram-top {
    align-items: flex-start;
    flex-direction: column;
  }
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 190px;
  }
  .instagram-grid img {
    height: 190px;
  }
}
@media (max-width: 500px) {
  .instagram-top > div {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }
  .instagram-top strong {
    font-size: 9px;
  }
  .instagram-top button {
    width: 125px;
    height: 38px;
    font-size: 9px;
  }
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 145px;
    gap: 9px;
  }
  .instagram-grid img {
    height: 145px;
  }
}

/* About the photographer */
.categories-section {
  grid-template-columns: 235px 1fr;
  gap: 15px;
  padding-top: 30px;
}
.categories-intro {
  padding: 0 28px 0 10px;
}
.categories-intro h2 {
  font-family: "Anton", Montserrat, Arial, sans-serif;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 0.4px;
  line-height: 1.05;
}
.categories-intro > span {
  font-size: 13px;
  line-height: 1.85;
}
.categories-intro a {
  margin-top: 32px;
  font-size: 12px;
}
.category-list {
  column-gap: 0;
}
.category-list article {
  padding: 0 20px;
  overflow: hidden;
}
.category-list .category-image {
  width: 158px;
  height: 158px;
  display: block;
  margin: 0 auto 14px;
  border-radius: 50%;
  overflow: hidden;
}
.category-list .category-image img {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0;
  border-radius: 0;
  object-fit: cover;
}
.category-list article:nth-child(1) .category-image img,
.category-list article:nth-child(2) .category-image img {
  transform: scale(1.16);
}
.category-list article:nth-child(n + 3) .category-image img {
  transform: scale(1.55);
  transform-origin: left center;
}
.category-list h3 {
  color: #222;
  font-family: "Anton", Montserrat, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.2px;
}
.category-list span {
  color: #4b4b46;
  font-size: 11px;
  font-weight: 700;
}
.category-list i {
  margin-top: 16px;
}
@media (max-width: 850px) {
  .categories-section {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .categories-intro {
    border-right: 0;
    padding-right: 0;
  }
  .category-list .category-image {
    width: 126px;
    height: 126px;
  }
}
@media (max-width: 500px) {
  .category-list .category-image {
    width: 105px;
    height: 105px;
  }
}
.categories-section {
  max-width: 1330px;
  margin: 0 auto 35px;
  padding: 20px 0;
  border-top: 1px solid #e2e2dc;
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 10px;
}
.categories-intro {
  padding: 0 22px 0 10px;
  border-right: 1px solid #e2e2dc;
}
.categories-intro > p {
  margin: 0 0 5px;
  color: #666f2e;
  font-size: 10px;
  font-weight: 900;
}
.categories-intro h2 {
  margin: 0 0 11px;
  color: #222;
  font-size: 23px;
  font-weight: 900;
}
.categories-intro > span {
  display: block;
  color: #60605a;
  font-size: 10px;
  line-height: 1.8;
}
.categories-intro a {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 23px;
  color: #5e672c;
  font-size: 10px;
  font-weight: 900;
  text-decoration: none;
}
.categories-intro b {
  color: #4b4b45;
  font-size: 21px;
  font-weight: 400;
}
.category-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 24px;
}
.category-list article {
  position: relative;
  text-align: center;
  padding: 0 15px;
}
.category-list article:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 0;
  width: 1px;
  background: #e2e2dc;
}
.category-list img {
  width: 126px;
  height: 126px;
  display: block;
  margin: 0 auto 10px;
  object-fit: cover;
  border-radius: 50%;
}
.category-list h3 {
  margin: 0 0 4px;
  color: #292929;
  font-size: 12px;
  font-weight: 900;
}
.category-list span {
  color: #6b6b65;
  font-size: 9px;
  font-weight: 600;
}
.category-list i {
  display: block;
  width: 35px;
  height: 2px;
  margin: 13px auto 0;
  background: #8a9260;
}
@media (max-width: 850px) {
  .categories-section {
    margin: 0 20px 30px;
    grid-template-columns: 1fr;
  }
  .category-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px 0;
  }
  .category-list article:nth-child(3)::after {
    display: none;
  }
}
@media (max-width: 500px) {
  .category-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .category-list article:nth-child(3)::after {
    display: block;
  }
  .category-list img {
    width: 105px;
    height: 105px;
  }
}
.about-section {
  max-width: 1330px;
  margin: 0 auto 35px;
  display: grid;
  grid-template-columns: 1.05fr 0.78fr 1fr;
  align-items: stretch;
  gap: 39px;
  padding: 0 4px;
}
.about-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 7px;
}
.about-copy {
  min-height: 280px;
  border-right: 1px solid #e3e3de;
  padding: 15px 35px 0 0;
}
.about-copy > p {
  margin: 0 0 5px;
  color: #636c2c;
  font-size: 11px;
  font-weight: 900;
}
.about-copy h2 {
  margin: 0 0 14px;
  color: #171717;
  font-size: 24px;
  font-weight: 900;
}
.about-copy > span {
  display: block;
  color: #5d5c58;
  font-size: 11px;
  line-height: 2;
}
.about-copy strong {
  display: block;
  margin-top: 14px;
  color: #6c7133;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 22px;
  font-weight: 400;
  transform: rotate(-4deg);
}
.about-copy small {
  display: block;
  margin-top: 5px;
  color: #555551;
  font-size: 10px;
  font-weight: 600;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-self: stretch;
}
.about-stats article {
  min-height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.about-stats article:nth-child(odd) {
  border-right: 1px solid #e3e3de;
}
.about-stats article:nth-child(-n + 2) {
  border-bottom: 1px solid #e3e3de;
}
.about-stats svg {
  width: 37px;
  height: 37px;
  margin-bottom: 7px;
  fill: none;
  stroke: #242424;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.about-stats b {
  color: #606b2c;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.2;
}
.about-stats span {
  margin-top: 3px;
  color: #555551;
  font-size: 9px;
  font-weight: 800;
}
@media (max-width: 850px) {
  .about-section {
    grid-template-columns: 1fr 1fr;
    margin: 0 20px 30px;
    gap: 25px;
  }
  .about-photo {
    height: 350px;
  }
  .about-copy {
    border: 0;
    padding-right: 0;
  }
  .about-stats {
    grid-column: 1/-1;
  }
}
@media (max-width: 500px) {
  .about-section {
    grid-template-columns: 1fr;
  }
  .about-photo {
    height: 300px;
  }
  .about-copy {
    min-height: 0;
  }
  .about-stats {
    grid-column: auto;
  }
  .about-stats article {
    min-height: 120px;
  }
}

/* Category desktop refinements */
.categories-section {
  grid-template-columns: 235px 1fr;
  gap: 15px;
  padding-top: 30px;
}
.categories-intro {
  padding: 0 28px 0 10px;
}
.categories-intro h2 {
  font-family: "Anton", Montserrat, Arial, sans-serif;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 0.4px;
  line-height: 1.05;
}
.categories-intro > span {
  font-size: 13px;
  line-height: 1.85;
}
.categories-intro a {
  margin-top: 32px;
  font-size: 12px;
}
.category-list {
  column-gap: 0;
}
.category-list article {
  padding: 0 20px;
  overflow: hidden;
}
.category-list .category-image {
  width: 158px;
  height: 158px;
  display: block;
  margin: 0 auto 14px;
  border-radius: 50%;
  overflow: hidden;
}
.category-list .category-image img {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0;
  border-radius: 0;
  object-fit: cover;
}
.category-list article:nth-child(1) .category-image img,
.category-list article:nth-child(2) .category-image img {
  transform: scale(1.16);
}
.category-list article:nth-child(n + 3) .category-image img {
  transform: scale(1.55);
  transform-origin: left center;
}
.category-list h3 {
  color: #252525;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.35px;
}
.category-list span {
  color: #4b4b46;
  font-size: 11px;
  font-weight: 700;
}
.category-list i {
  margin-top: 16px;
}
@media (max-width: 850px) {
  .categories-section {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .categories-intro {
    border-right: 0;
    padding-right: 0;
  }
  .category-list .category-image {
    width: 126px;
    height: 126px;
  }
}
@media (max-width: 500px) {
  .category-list .category-image {
    width: 105px;
    height: 105px;
  }
}

/* Selected portfolio */
.portfolio-section {
  max-width: 1330px;
  margin: 0 auto 36px;
}
.portfolio-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.portfolio-heading h2 {
  margin: 0;
  color: #5b642a;
  font-size: 11px;
  font-weight: 900;
}
.portfolio-heading a {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #292929;
  text-decoration: none;
  font-size: 11px;
  font-weight: 900;
}
.portfolio-heading b {
  font-size: 23px;
  font-weight: 400;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.33fr 0.72fr;
  gap: 17px;
  height: 429px;
  overflow: hidden;
}
.portfolio-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  min-height: 0;
  border-radius: 5px;
  color: #fff;
  background: #171512;
}
.portfolio-card > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.portfolio-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0) 55%);
}
.portfolio-card > div {
  position: absolute;
  z-index: 1;
  left: 20px;
  right: 12px;
  bottom: 17px;
}
.portfolio-card span {
  display: inline-block;
  padding: 3px 6px;
  border-radius: 2px;
  background: #667529;
  color: #fff;
  font-size: 8px;
  font-weight: 900;
}
.portfolio-card h3 {
  margin: 6px 0 0;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.1;
}
.portfolio-centre {
  display: grid;
  grid-template-rows: minmax(0, 1.18fr) minmax(0, 0.91fr);
  gap: 15px;
  min-width: 0;
  min-height: 0;
}
.portfolio-small-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 15px;
  min-width: 0;
  min-height: 0;
}
.portfolio-small-grid .portfolio-card > div {
  left: 15px;
  bottom: 13px;
}
.portfolio-small-grid .portfolio-card h3 {
  font-size: 13px;
}
.portfolio-small-grid .portfolio-card span {
  font-size: 7px;
}
.portfolio-section {
  padding-bottom: 80px;
}
.about-section {
  position: relative;
  align-items: stretch;
}
.about-photo {
  height: 380px;
  border: 0;
  border-radius: 7px;
}
.about-copy,
.about-stats {
  height: 380px;
  border-top: 0;
}
.about-copy {
  min-height: 0;
  padding-top: 42px;
}
.about-stats {
  padding-top: 0;
}
.about-stats article {
  min-height: 0;
}
.about-copy {
  position: relative;
  border-top: 0;
  border-right: 0;
}
.about-copy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(228.205% + 39px);
  height: 1px;
  background: #e3e3de;
}
.about-copy::after {
  content: "";
  position: absolute;
  top: 48px;
  right: 0;
  bottom: 0;
  width: 1px;
  background: #e3e3de;
}
.about-stats {
  border-top: 0;
}
.about-stats {
  position: relative;
}
.about-stats::after {
  content: "";
  position: absolute;
  top: 48px;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: #e3e3de;
}
.about-stats article:nth-child(odd) {
  border-right: 0;
}
.about-stats article:nth-child(-n + 2) {
  border-bottom: 1px solid #e3e3de;
}
@media (max-width: 850px) {
  .about-copy,
  .about-stats {
    height: auto;
    border-top: 0;
    padding-top: 0;
  }
  .about-copy::before,
  .about-copy::after,
  .about-stats::after {
    display: none;
  }
  .about-photo {
    height: 350px;
    border: 0;
    border-radius: 7px;
  }
  .about-copy {
    min-height: 0;
  }
  .about-stats article {
    min-height: 140px;
  }
}
@media (max-width: 850px) {
  .portfolio-section {
    margin: 0 20px 30px;
  }
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
    height: auto;
  }
  .portfolio-card.portrait {
    height: 390px;
  }
  .portfolio-centre {
    grid-column: 1/-1;
    grid-row: 1;
    height: 380px;
  }
  .portfolio-grid > .portrait:last-child {
    grid-column: 2;
  }
}
@media (max-width: 500px) {
  .portfolio-heading {
    align-items: flex-start;
    gap: 15px;
  }
  .portfolio-heading a {
    font-size: 9px;
    gap: 8px;
    text-align: right;
  }
  .portfolio-grid {
    display: flex;
    flex-direction: column;
  }
  .portfolio-card.portrait,
  .portfolio-centre {
    height: 350px;
  }
  .portfolio-centre {
    display: contents;
  }
  .portfolio-centre .feature {
    height: 260px;
  }
  .portfolio-small-grid {
    height: 210px;
  }
  .portfolio-card h3 {
    font-size: 15px;
  }
}
.workshops-section {
  width: 100%;
  padding: 54px 0 52px;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.78)),
    url("../images/about-photographer.jpg") center/cover no-repeat;
}
.workshops-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 420px);
  gap: 28px;
  align-items: stretch;
}
.workshops-copy {
  max-width: 440px;
}
.workshops-copy .eyebrow {
  margin: 0 0 14px;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.workshops-copy h2 {
  margin: 0;
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.6px;
  color: #fff;
}
.workshops-copy h2 span {
  color: #5a601d;
}
.workshops-copy p {
  margin: 16px 0 0;
  max-width: 420px;
  color: #e8e7d8;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.01em;
}
.workshops-button {
  margin-top: 24px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 8px;
  background: transparent;
  color: #fff;
  padding: 12px 20px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.workshops-testimonial {
  display: flex;
  justify-content: flex-end;
}
.testimonial-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  min-height: 360px;
  padding: 70px 32px 26px;
  border-radius: 26px;
  background: #fff;
  color: #111;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.14);
}
.quote-mark {
  position: absolute;
  top: 26px;
  left: 20px;
  font-size: 48px;
  line-height: 0.85;
  color: rgba(93, 112, 33, 0.4);
  font-weight: 800;
}
.testimonial-card p {
  margin: 0 0 20px;
  color: #111;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.9;
  padding-left: 16px;
  letter-spacing: 0.01em;
  border-left: 3px solid #8b8f56;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
  width: 100%;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
}
.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #7f7c58, #4b4f23);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}
.reviewer strong {
  display: block;
  margin-bottom: 4px;
  color: #111;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.reviewer small {
  display: block;
  color: #6f6f6f;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.testimonial-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  width: 100%;
}
.testimonial-count {
  color: #333;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.testimonial-arrows {
  display: flex;
  gap: 10px;
  margin-left: auto;
}
.testimonial-arrows button {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid #8d8b62;
  background: transparent;
  color: #212121;
  cursor: pointer;
  font-size: 15px;
  font-weight: 900;
  display: grid;
  place-items: center;
}
@media (max-width: 850px) {
  .workshops-grid {
    grid-template-columns: 1fr;
    padding: 0 16px;
    gap: 22px;
  }
  .workshops-section {
    padding: 80px 0 76px;
  }
  .testimonial-card {
    min-height: 320px;
    padding: 30px 26px 24px;
  }
  .testimonial-meta {
    flex-direction: column;
    align-items: flex-start;
  }
  .testimonial-nav {
    width: 100%;
    justify-content: space-between;
  }
}
@media (max-width: 500px) {
  .workshops-section {
    padding: 68px 0 64px;
  }
  .workshops-copy h2 {
    font-size: 30px;
  }
  .workshops-button {
    width: 100%;
    justify-content: center;
  }
  .testimonial-card {
    min-height: 260px;
    padding: 24px 18px 18px;
  }
  .testimonial-arrows button {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}
.hero:after {
  inset: 0;
  background-image: url("../images/hero-leopard.png");
  background-position: center right;
}
.hero:before {
  inset: 0;
  background: linear-gradient(
    90deg,
    #fffefb 0%,
    rgba(255, 254, 251, 0.98) 24%,
    rgba(255, 254, 251, 0.72) 39%,
    rgba(255, 254, 251, 0) 58%
  );
  z-index: -1;
}

.stories-section {
  max-width: 1330px;
  margin: 0 auto 40px;
  padding: 30px 28px 10px;
}
.stories-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}
.stories-header p {
  margin: 0;
  color: #5d5a35;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
}
.stories-header a {
  color: #292929;
  text-decoration: none;
  font-size: 11px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.stories-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.story-card {
  border-radius: 16px;
  overflow: hidden;
  background: #181816;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.15);
  position: relative;
}
.story-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}
.story-copy {
  padding: 18px 18px 20px;
}
.story-copy span {
  display: inline-block;
  margin-bottom: 10px;
  color: #bcc292;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.story-copy h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 17px;
  line-height: 1.1;
  font-weight: 900;
}
.story-copy p {
  margin: 0 0 10px;
  color: #c8c7bd;
  font-size: 12px;
  line-height: 1.7;
}
.story-copy small {
  color: #8b8b80;
  font-size: 10px;
  letter-spacing: 0.02em;
}
@media (max-width: 980px) {
  .stories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 620px) {
  .stories-section {
    padding: 26px 18px 10px;
  }
  .stories-grid {
    grid-template-columns: 1fr;
  }
  .story-card img {
    height: 200px;
  }
}

/* Inquiry / lead-gen section */
.inquiry-section {
  max-width: 1330px;
  margin: 0 auto 48px;
  padding: 0 28px;
}
.inquiry-card {
  background: #f3f1e8;
  border-radius: 24px;
  padding: 22px 36px 22px;
}
.inquiry-white-block {
  background: #fff;
  border-radius: 16px;
  padding: 16px 16px 0;
}
.inquiry-top {
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 16px;
}
.inquiry-copy .eyebrow {
  margin: 0 0 8px;
  color: #5d7021;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
}
.inquiry-copy h2 {
  margin: 0;
  color: #10110e;
  font-family: "Anton", Montserrat, Arial, sans-serif;
  font-size: clamp(52px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.inquiry-description {
  margin: 10px 0 0;
  color: #55564f;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  max-width: 380px;
}
.inquiry-image {
  position: relative;
  margin: 14px 14px 14px 0;
  padding: 14px 14px 14px 15px;
}
.inquiry-image::before,
.inquiry-image::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  border: 2px solid var(--fwj-olive);
  z-index: 1;
}
.inquiry-image::before {
  top: 0;
  left: 0;
  border-right: 0;
  border-bottom: 0;
}
.inquiry-image::after {
  bottom: 0;
  right: 0;
  border-left: 0;
  border-top: 0;
}
.inquiry-image-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}
.inquiry-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.inquiry-form {
  padding: 0;
}
.inquiry-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.inquiry-row-bottom {
  grid-template-columns: 1fr 1.6fr auto;
  margin-top: 14px;
  align-items: stretch;
}
.inquiry-field {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #e4e4dd;
  border-radius: 10px;
  padding: 0 14px;
  height: 52px;
  background: #fff;
}
.inquiry-field .icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #8a8a80;
}
.inquiry-field .icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.inquiry-field input,
.inquiry-field select {
  border: 0;
  outline: 0;
  background: transparent;
  width: 100%;
  height: 100%;
  font-size: 13px;
  color: #10110e;
  font-family: inherit;
}
.inquiry-field input::placeholder {
  color: #9b9b90;
}
.inquiry-select select {
  appearance: none;
  color: #9b9b90;
}
.inquiry-select select:invalid {
  color: #9b9b90;
}
.inquiry-message {
  flex: 1;
}
.inquiry-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 190px;
  height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--fwj-olive-dark), var(--fwj-olive));
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.inquiry-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 17px rgba(56, 75, 14, 0.26);
}
.inquiry-submit b {
  font-weight: 400;
  font-size: 15px;
}

.inquiry-contact-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 24px;
  padding: 22px 0 22px;
  border-top: 1px solid #e4e2d6;
  flex-wrap: wrap;
}
.inquiry-contact-bar p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #3d3d38;
  font-size: 13px;
  font-weight: 500;
}
.inquiry-contact-bar .icon {
  display: grid;
  place-items: center;
  color: #5d7021;
}
.inquiry-contact-bar .icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.inquiry-contact-divider {
  width: 1px;
  height: 16px;
  background: #d8d6c8;
}

@media (max-width: 620px) {
  .inquiry-contact-bar {
    flex-direction: column;
    gap: 12px;
  }
  .inquiry-contact-divider {
    display: none;
  }
}

@media (max-width: 980px) {
  .inquiry-top {
    grid-template-columns: 1fr;
  }
  .inquiry-row,
  .inquiry-row-bottom {
    grid-template-columns: 1fr;
  }
  .inquiry-submit {
    width: 100%;
  }
}
@media (max-width: 620px) {
  .inquiry-section {
    padding: 0 18px;
  }
  .inquiry-card {
    padding: 24px 18px;
  }
}

.site-footer {
  background: #fff;
  padding: 48px 24px 40px;
}
.footer-grid {
  max-width: 1330px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) repeat(5, minmax(180px, 1fr));
  gap: 28px;
  align-items: start;
}
.footer-brand {
  display: grid;
  gap: 18px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.footer-logo .mark {
  width: 50px;
  height: 50px;
  border: 2px solid #8c8d61;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 22px;
  color: #5f6c2c;
}
.footer-logo b {
  display: block;
  font-size: 20px;
  letter-spacing: 2px;
  font-weight: 900;
}
.footer-logo small {
  display: block;
  font-size: 8px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.site-footer p {
  margin: 0;
  color: #5e5b47;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.9;
  max-width: 320px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #d8d4c5;
  border-radius: 50%;
  background: #fff;
  color: #4f4c39;
  font-size: 14px;
  text-decoration: none;
  font-weight: 900;
}
.footer-social svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.footer-social svg .dot {
  fill: currentColor;
  stroke: none;
}
.footer-column h3 {
  margin: 0 0 16px;
  color: #5e5b45;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}
.footer-column a {
  display: block;
  margin-bottom: 12px;
  color: #3f3c31;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.9;
}
.footer-column a:hover {
  color: #5d7021;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: #4f4b3d;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.9;
}
.footer-contact .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: #5d7021;
  flex-shrink: 0;
}
.footer-contact .icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.footer-follow a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #3f3c31;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.9;
}
.footer-follow .icon {
  width: 20px;
  height: 20px;
}
@media (max-width: 1040px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(200px, 1fr));
  }
}
@media (max-width: 720px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-logo {
    margin-bottom: 10px;
  }
}

/* Button focus states keep keyboard use visible without changing the layout. */
button:focus-visible,
a:focus-visible {
  outline: 3px solid #a7b76e;
  outline-offset: 3px;
}

/* Typography and spacing pass: aligns the page with the supplied editorial reference. */
body {
  font-size: 16px;
}
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 254, 251, 0.98);
  box-shadow: 0 2px 12px rgba(16, 17, 14, 0.08);
}

/* Contact page */
.contact-hero {
  min-height: clamp(300px, 25vw, 510px);
  padding-left: clamp(90px, 11vw, 150px);
  background: #f4efe5;
}
.contact-hero::before {
  display: none;
}
.contact-hero::after {
  background: url("../images/contact-banner-background.png") center / cover
    no-repeat;
}
.contact-hero .copy {
  max-width: 560px;
}
.contact-hero h1 {
  white-space: normal;
}
.contact-hero .hero-description {
  max-width: 400px;
}
.contact-hero__button {
  min-width: 205px;
  min-height: 49px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 19px 0 21px;
  border-radius: 5px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}
.contact-hero .eyebrow,
.contact-details .eyebrow {
  color: #9faf56;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
}
.contact-hero h1,
.contact-details h2 {
  margin: 12px 0 22px;
  font-family: "Anton", Montserrat, Arial, sans-serif;
  font-size: clamp(48px, 5.2vw, 78px);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: 0.5px;
}
.contact-hero h1 span,
.contact-details h2 span {
  color: #b7c66c;
}
.contact-hero__copy > p:not(.eyebrow) {
  max-width: 470px;
  color: #e1e3d8;
  font-size: 14px;
  line-height: 1.8;
}
.contact-hero .button {
  display: inline-block;
  margin-top: 18px;
}
.contact-content {
  max-width: 1080px;
  margin: 0 auto;
  padding: 78px 28px 88px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(45px, 7vw, 90px);
}
.contact-details {
  padding: 0 clamp(24px, 4vw, 55px) 0 0;
  border-right: 1px solid #e0e0d9;
}
.contact-details > p:not(.eyebrow) {
  max-width: 410px;
  color: #5b5c53;
  font-size: 14px;
  line-height: 1.8;
}
.contact-details h2 {
  color: #171812;
  font-size: clamp(42px, 4vw, 62px);
}
.contact-detail {
  padding: 13px 0;
  display: flex;
  align-items: center;
  gap: 20px;
}
.contact-detail .contact-detail__icon {
  width: 35px;
  color: #65722c;
  font-size: 27px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
}
.contact-detail a,
.contact-detail strong {
  color: #26271f;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.contact-social {
  margin-top: 18px;
}
.contact-social > span {
  color: #66732e;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
}
.contact-social div {
  display: flex;
  gap: 18px;
  margin-top: 12px;
}
.contact-social a {
  color: #1a1b17;
  font-size: 22px;
  font-weight: 800;
  text-decoration: none;
}
.contact-form {
  padding: 24px 28px 22px;
  background: #fff;
  border: 1px solid #e0e0d9;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(20, 22, 12, 0.07);
  display: grid;
  gap: 16px;
  align-content: start;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact-form label {
  display: grid;
  gap: 8px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #e5e5df;
  border-radius: 7px;
  padding: 14px;
  background: #fff;
  color: #25261f;
  font:
    500 13px Montserrat,
    Arial,
    sans-serif;
  outline-color: #748034;
}
.contact-form textarea {
  min-height: 142px;
  resize: vertical;
}
.visually-hidden {
  font-size: 0;
}
.contact-form .inquiry-submit {
  justify-self: start;
  border: 0;
  cursor: pointer;
}
.contact-help {
  /* Let the four support options span the full contact-page viewport. */
  width: 100%;
  max-width: none;
  margin: 0 auto 86px;
  padding: 0 clamp(28px, 6.35vw, 130px);
  box-sizing: border-box;
}
.contact-help__title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}
.contact-help__title i {
  height: 1px;
  background: #dcdcd4;
}
.contact-help__title h2 {
  margin: 0;
  color: #62702b;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.5px;
}
.contact-help__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 28px;
}
.contact-help__grid article {
  min-height: 145px;
  padding: 6px 28px 0;
  text-align: center;
}
.contact-help__grid article:not(:last-child) {
  border-right: 1px solid #e1e1da;
}
.contact-help__icon {
  display: block;
  width: 50px;
  height: 50px;
  margin: 0 auto;
  color: #62702b;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-help__grid h3 {
  margin: 12px 0 10px;
  color: #30312c;
  font-size: 11px;
  font-weight: 800;
}
.contact-help__grid p {
  margin: 0;
  color: #5f605a;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.75;
}
.adventure-callout {
  min-height: 318px;
  max-width: 1100px;
  margin: 0 auto 82px;
  padding: 0 clamp(35px, 6vw, 75px);
  display: flex;
  align-items: center;
  border: 1px solid #e0ded4;
  border-radius: 12px;
  background: url("../images/adventure-callout-background.png") center / cover
    no-repeat;
  box-shadow: 0 3px 12px rgba(20, 22, 12, 0.07);
}
.adventure-callout__copy > span {
  display: block;
  height: 38px;
  color: #62702b;
  font:
    900 55px/1 Georgia,
    serif;
}
.adventure-callout h2 {
  margin: 4px 0 0;
  color: #171814;
  font-family: "Anton", Montserrat, Arial, sans-serif;
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: 0.5px;
}
.adventure-callout h2 em {
  color: #63702b;
  font-style: normal;
}
.adventure-callout__link {
  display: inline-flex;
  gap: 22px;
  margin-top: 18px;
  color: #56661f;
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
}
.adventure-callout__link b {
  font-size: 16px;
  line-height: 0.7;
}
.visit-section {
  min-height: 330px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  margin-bottom: 70px;
  background: #edf0e8;
}
.visit-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.48) brightness(1.1) contrast(0.86);
}
.visit-card {
  position: absolute;
  z-index: 2;
  top: 25px;
  left: max(28px, calc((100% - 1080px) / 2));
  width: 278px;
  padding: 30px;
  background: rgba(255, 255, 253, 0.96);
  border-radius: 0 0 10px 10px;
  box-shadow: 0 3px 14px rgba(20, 22, 12, 0.14);
}
.visit-card .eyebrow {
  margin-bottom: 9px;
}
.visit-card h2 {
  margin: 0 0 14px;
  font-family: "Anton", Montserrat, Arial, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}
.visit-card strong {
  color: #41433b;
  font-size: 13px;
}
.visit-card > p:not(.eyebrow) {
  margin: 10px 0 16px;
  color: #565750;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.8;
}
.visit-card__button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 18px;
  border-radius: 5px;
  background: linear-gradient(135deg, #40560f, #74852f);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}
.visit-card__button b {
  font-size: 19px;
  font-weight: 400;
}
.visit-marker {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  margin-left: 14%;
  color: #31322e;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  text-shadow: 0 1px 2px #fff;
}
.visit-marker span {
  display: block;
  width: 46px;
  height: 46px;
  margin-bottom: 8px;
  position: relative;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: #5d7021;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.22);
}
.visit-marker span::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  top: 11px;
  left: 11px;
  border-radius: 50%;
  background: #fff;
}
.workshops-hero {
  min-height: 430px;
  padding-left: clamp(80px, 11vw, 150px);
  background: #fff;
}
.workshops-hero::before {
  display: none;
}
.workshops-hero::after {
  background: url("../images/workshops-hero-background.png") center / cover
    no-repeat;
}
.workshops-hero .copy {
  max-width: 620px;
}
.workshops-hero h1 {
  white-space: normal;
}
.workshops-hero .hero-description {
  max-width: 530px;
}
.workshops-points {
  position: absolute;
  z-index: 2;
  right: clamp(30px, 6vw, 105px);
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  gap: 32px;
  width: 230px;
  color: #fff;
}
.workshops-points article {
  display: grid;
  gap: 6px;
  padding-left: 56px;
  position: relative;
}
.workshops-points article::before {
  content: "";
  position: absolute;
  left: 0;
  top: -3px;
  width: 43px;
  height: 43px;
  background: rgba(112, 129, 25, 0.72);
  border-radius: 50%;
}
.workshops-points article svg {
  position: absolute;
  z-index: 1;
  left: 10px;
  top: 7px;
  width: 23px;
  height: 23px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.workshops-points b {
  font-size: 14px;
}
.workshops-points span {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.7;
}
.workshop-details {
  padding: 80px 25px;
  text-align: center;
}
.workshop-details h2 {
  margin: 10px 0;
  font-family: "Anton", Montserrat, Arial, sans-serif;
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.05;
}
.workshop-details h2 span {
  color: #64712b;
}
.workshop-details > p:not(.eyebrow) {
  max-width: 540px;
  margin: 0 auto;
  color: #5a5c53;
  font-size: 14px;
  line-height: 1.8;
}
.workshop-catalogue {
  padding: 62px 30px 70px;
  background: #fff;
  text-align: center;
}
.workshop-catalogue__heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 25px;
  max-width: 470px;
  margin: 0 auto;
}
.workshop-catalogue__heading i {
  height: 1px;
  background: #b1ad94;
}
.workshop-catalogue h2 {
  margin: 0;
  font-family: "Anton", Montserrat, Arial, sans-serif;
  font-size: 32px;
  font-weight: 400;
}
.workshop-catalogue > p {
  margin: 10px 0 28px;
  color: #555750;
  font-size: 13px;
}
.workshop-catalogue__row {
  display: flex;
  align-items: center;
  gap: 34px;
  max-width: 1460px;
  margin: 0 auto;
}
.workshop-catalogue__row > button {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  border: 2px solid #667432;
  border-radius: 50%;
  background: #fff;
  color: #52601e;
  font-size: 32px;
  cursor: pointer;
}
.workshop-catalogue__cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(190px, 1fr));
  gap: 16px;
  flex: 1;
}
.workshop-catalogue__cards article {
  position: relative;
  overflow: hidden;
  border: 1px solid #e3e2dc;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(20, 22, 12, 0.06);
}
.workshop-catalogue__cards img {
  display: block;
  width: 100%;
  height: 162px;
  object-fit: cover;
}
.workshop-card__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: -27px auto 13px;
  position: relative;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #61711e;
  color: #fff;
  font-size: 28px;
}
.workshop-catalogue__cards h3 {
  margin: 0 12px 9px;
  color: #33342f;
  font-size: 12px;
  font-weight: 900;
}
.workshop-catalogue__cards p {
  min-height: 53px;
  margin: 0 16px 14px;
  color: #5c5e56;
  font-size: 11px;
  line-height: 1.7;
}
.workshop-catalogue__cards footer {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 0 18px;
  padding: 14px 0;
  border-top: 1px solid #e6e5df;
  color: #565750;
  font-size: 10px;
  white-space: nowrap;
}
.workshop-catalogue__cards footer b {
  color: #34352f;
}
.why-workshops {
  padding: 42px 30px 52px;
  background: #faf9f4;
  text-align: center;
}
.why-workshops > h2 {
  margin: 0;
  font-family: "Anton", Montserrat, Arial, sans-serif;
  font-size: 34px;
  font-weight: 400;
}
.why-workshops > i {
  display: block;
  width: 78px;
  height: 3px;
  margin: 14px auto 22px;
  background: #66742c;
}
.why-workshops__layout {
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 335px 1fr;
  align-items: center;
  gap: 32px;
}
.why-workshops__points {
  display: grid;
  gap: 48px;
  text-align: left;
}
.why-workshops__points article {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 20px;
}
.why-workshops__points article > span {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border: 2px solid #e0dfd6;
  border-radius: 50%;
  color: #617027;
}
.why-workshops__points svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.why-workshops h3 {
  margin: 0 0 9px;
  color: #607027;
  font-size: 17px;
  font-weight: 900;
}
.why-workshops p {
  max-width: 340px;
  margin: 0;
  color: #4f514b;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.7;
}
.why-workshops__image {
  position: relative;
  width: 310px;
  height: 310px;
  margin: 0 auto;
  border-radius: 45% 55% 50% 50%;
  background:
    linear-gradient(rgba(103, 118, 43, 0.25), rgba(103, 118, 43, 0.25)),
    url("../images/contact.png") 18% center/cover;
  box-shadow: inset 0 0 0 16px rgba(255, 255, 255, 0.42);
}
.why-workshops__birds {
  position: absolute;
  width: 135px;
  height: 68px;
  top: -22px;
  right: -55px;
  fill: none;
  stroke: #31332d;
  stroke-width: 2.2;
  stroke-linecap: round;
}
.workshop-catalogue h2 span,
.why-workshops > h2 span {
  color: #62702b;
}
.workshop-reviews {
  background: #e3eed5;
}
.workshop-reviews {
  padding: 32px clamp(25px, 4vw, 85px) 48px;
  background:
    radial-gradient(
      circle at 84% 8%,
      rgba(123, 137, 56, 0.18),
      transparent 29%
    ),
    linear-gradient(115deg, #ecebdc, #f7f5ec 55%, #e4e8d3);
}
.workshop-reviews__heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin: 0 0 24px;
}
.workshop-reviews h2 {
  margin: 0;
  font-family: "Anton", Montserrat, Arial, sans-serif;
  font-size: 38px;
  font-weight: 400;
}
.workshop-reviews h2 span {
  color: #62702b;
}
.workshop-reviews__heading a {
  color: #31332f;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}
.workshop-reviews__heading strong {
  margin-left: 14px;
  color: #52601e;
  font-size: 29px;
  vertical-align: -2px;
}
.workshop-reviews__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.workshop-reviews__cards article {
  display: flex;
  min-height: 255px;
  flex-direction: column;
  padding: 27px 42px;
  border: 1px solid rgba(222, 221, 213, 0.94);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 9px rgba(28, 30, 20, 0.04);
}
.review-stars {
  color: #5f6e27;
  font-size: 22px;
  letter-spacing: 4px;
}
.workshop-reviews blockquote {
  margin: 18px 0 22px;
  color: #3e403a;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.48;
}
.workshop-reviews footer {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-top: auto;
}
.reviewer {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border: 2px solid #fff;
  border-radius: 50%;
  background-position: center;
  background-size: cover;
  box-shadow: 0 0 0 1px #d8d7d0;
}
.reviewer--rohit {
  background-image: url("../images/about-photographer.jpg");
}
.reviewer--neha {
  background-image: url("../images/contact.png");
  background-position: 30% center;
}
.reviewer--arjun {
  background-image: url("../images/pf-1-tiger.jpg");
  background-position: 30% center;
}
.workshop-reviews footer h3 {
  margin: 0 0 7px;
  color: #30322e;
  font-size: 15px;
  font-weight: 900;
}
.workshop-reviews footer p {
  margin: 0;
  color: #5d5e57;
  font-size: 13px;
}
@media (max-width: 760px) {
  .contact-hero {
    min-height: 400px;
    padding: 45px 20px;
  }
  .contact-hero::after {
    opacity: 1;
    background-position: center;
  }
  .contact-hero .copy {
    max-width: 100%;
  }
  .contact-hero .hero-description {
    max-width: 310px;
  }
  .contact-content {
    grid-template-columns: 1fr;
    padding: 60px 20px;
    gap: 42px;
  }
  .contact-details {
    padding: 0;
    border-right: 0;
  }
  .contact-form {
    padding: 22px;
  }
  .contact-form__row {
    grid-template-columns: 1fr;
  }
  .contact-help {
    margin-bottom: 60px;
    padding: 0 20px;
  }
  .contact-help__title {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }
  .contact-help__title i {
    display: none;
  }
  .contact-help__grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 28px;
  }
  .contact-help__grid article {
    min-height: 0;
    padding: 6px 16px;
  }
  .contact-help__grid article:nth-child(2) {
    border-right: 0;
  }
  .adventure-callout {
    min-height: 310px;
    margin: 0 20px 60px;
    padding: 0 30px;
    background-position: 64% center;
  }
  .adventure-callout h2 {
    font-size: 39px;
  }
  .adventure-callout__copy > span {
    font-size: 45px;
  }
  .visit-section {
    min-height: 540px;
  }
  .visit-card {
    top: 24px;
    left: 20px;
    right: 20px;
    width: auto;
  }
  .visit-marker {
    margin: 200px 0 0;
  }
}
@media (max-width: 850px) {
  .workshops-hero {
    min-height: 550px;
    padding: 52px 30px;
  }
  .workshops-hero::after {
    opacity: 0.36;
  }
  .workshops-points {
    display: none;
  }
  .workshops-hero .copy {
    max-width: 620px;
  }
  .workshops-hero .buttons {
    gap: 14px;
  }
  .workshops-button {
    width: auto;
    min-width: 210px;
    min-height: 52px;
    padding: 0 18px;
    font-size: 11px;
    border-radius: 8px;
  }
}
@media (max-width: 850px) {
  .workshop-catalogue {
    padding: 50px 20px;
  }
  .workshop-catalogue__row > button {
    display: none;
  }
  .workshop-catalogue__cards {
    display: flex;
    overflow-x: auto;
    padding-bottom: 10px;
  }
  .workshop-catalogue__cards article {
    min-width: 230px;
  }
}
@media (max-width: 850px) {
  .why-workshops {
    padding: 60px 20px;
  }
  .why-workshops__layout {
    grid-template-columns: 1fr;
  }
  .why-workshops__image {
    order: -1;
    width: 280px;
    height: 280px;
  }
  .why-workshops__points {
    gap: 28px;
  }
  .why-workshops__points article {
    grid-template-columns: 66px 1fr;
    gap: 16px;
  }
  .why-workshops__points article > span {
    width: 58px;
    height: 58px;
    font-size: 27px;
  }
  .why-workshops h3 {
    font-size: 16px;
  }
  .why-workshops p {
    font-size: 12px;
  }
}
@media (max-width: 850px) {
  .workshop-reviews {
    padding: 46px 20px 55px;
  }
  .workshop-reviews__heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 25px;
  }
  .workshop-reviews h2 {
    font-size: 32px;
  }
  .workshop-reviews__cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .workshop-reviews__cards article {
    min-height: 270px;
    padding: 29px;
  }
  .workshop-reviews blockquote {
    font-size: 16px;
  }
}
.workshop-reviews {
  background: #e6edd6;
}
.workshop-reserve {
  display: grid;
  grid-template-columns: minmax(460px, 1.38fr) 1fr;
  align-items: stretch;
  overflow: hidden;
  max-width: 1320px;
  min-height: 250px;
  margin: 54px auto 74px;
  border: 3px solid #e6e5df;
  border-radius: 30px;
  background:
    linear-gradient(
      90deg,
      rgba(18, 20, 16, 0.76),
      rgba(22, 24, 19, 0.96) 44%,
      #20221e 100%
    ),
    url("../images/workshops-hero-background.png") left center / cover;
  color: #fff;
  box-shadow: 0 4px 11px rgba(20, 21, 17, 0.1);
}
.workshop-reserve__intro {
  padding: 42px 38px 40px min(39vw, 545px);
}
.workshop-reserve__intro p {
  margin: 0 0 9px;
  color: #b8c452;
  font-size: 11px;
  font-weight: 900;
}
.workshop-reserve h2 {
  margin: 0 0 11px;
  font-family: "Anton", Montserrat, Arial, sans-serif;
  font-size: clamp(29px, 2.45vw, 43px);
  font-weight: 400;
  letter-spacing: 0.3px;
}
.workshop-reserve__intro > span {
  color: #efefeb;
  font-size: 14px;
  line-height: 1.55;
}
.workshop-reserve__intro a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 230px;
  margin-top: 23px;
  padding: 16px 20px;
  border-radius: 6px;
  background: #68792a;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}
.workshop-reserve__intro a strong {
  font-size: 25px;
  line-height: 0.45;
}
.workshop-reserve__benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  padding: 28px 20px;
}
.workshop-reserve__benefits article {
  min-height: 142px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  text-align: center;
}
.workshop-reserve__benefits article + article {
  border-left: 2px solid rgba(204, 207, 165, 0.2);
}
.workshop-reserve__benefits svg {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  fill: none;
  stroke: #c1ca5a;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.workshop-reserve__benefits p {
  margin: 0;
  color: #f1f1eb;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
}
@media (max-width: 1020px) {
  .workshop-reserve {
    grid-template-columns: 1fr;
    margin: 45px 25px 65px;
    background-position: left center;
  }
  .workshop-reserve__intro {
    padding-left: clamp(28px, 42vw, 410px);
  }
  .workshop-reserve__benefits {
    background: rgba(16, 18, 14, 0.86);
  }
}
@media (max-width: 650px) {
  .workshop-reserve {
    margin: 36px 20px 55px;
    border-radius: 19px;
  }
  .workshop-reserve__intro {
    padding: 34px 25px;
    background: rgba(13, 15, 11, 0.73);
  }
  .workshop-reserve h2 {
    font-size: 31px;
  }
  .workshop-reserve__benefits {
    grid-template-columns: 1fr;
    padding: 8px 25px 22px;
  }
  .workshop-reserve__benefits article {
    min-height: 104px;
    flex-direction: row;
    justify-content: flex-start;
    gap: 18px;
    padding: 14px 0;
    text-align: left;
  }
  .workshop-reserve__benefits article + article {
    border-top: 1px solid rgba(204, 207, 165, 0.2);
    border-left: 0;
  }
  .workshop-reserve__benefits svg {
    width: 39px;
    height: 39px;
    margin: 0;
  }
  .workshop-reserve__benefits p {
    font-size: 14px;
  }
}

/* Tour Details: keep the tour title and actions visible inside the mobile banner. */
@media (max-width: 760px) {
  .tour-details-page .tour-banner {
    display: block;
    min-height: 0;
    padding: 0;
    background:
      linear-gradient(90deg, rgba(8, 10, 6, 0.88), rgba(8, 10, 6, 0.46)),
      url("../images/bandhavgarh-tiger.jpg") 60% center / cover no-repeat;
  }
  .tour-details-page .tour-banner::before,
  .tour-details-page .tour-banner__image {
    display: none;
  }
  .tour-details-page .tour-banner__copy {
    display: block;
    max-width: none;
    padding: 34px 20px 30px !important;
    color: #fff;
  }
  .tour-details-page .tour-banner h1 {
    color: #fff;
    font-size: clamp(42px, 13vw, 54px);
  }
  .tour-details-page .tour-banner h1 em,
  .tour-details-page .tour-banner__facts {
    color: #d4df83;
  }
  .tour-details-page .tour-banner__facts {
    gap: 10px 0;
    margin: 18px 0;
  }
  .tour-details-page .tour-banner__facts span {
    color: #d4df83;
    font-size: 15px;
  }
  .tour-details-page .tour-banner__facts b,
  .tour-details-page .tour-banner__copy > p {
    color: #fff;
  }
  .tour-details-page .tour-banner__copy > p {
    max-width: 360px;
    font-size: 12px;
    line-height: 1.65;
  }
  .tour-details-page .tour-banner__actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 18px;
  }
  .tour-details-page .tour-banner__actions a {
    width: 100%;
    min-height: 48px;
  }
}
.brand .mark,
.footer-logo .mark {
  display: none;
}
.brand > span:last-child,
.footer-logo > span:last-child {
  display: block;
}
.header {
  height: 110px;
}
.brand-logo,
.footer-logo-image {
  width: 84px;
  height: 84px;
  display: block;
  flex: 0 0 auto;
  border: 2px solid #87905e;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 50%;
}
.footer-logo-image {
  width: 74px;
  height: 74px;
}
@media (max-width: 900px) {
  nav.is-open {
    top: 110px;
  }
}
@media (max-width: 620px) {
  .brand-logo {
    width: 52px;
    height: 52px;
  }
}
h1,
.categories-intro h2,
.about-copy h2,
.workshops-copy h2,
.featured-content h3,
.inquiry-copy h2 {
  font-family: "Anton", Montserrat, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.35px;
}
.copy h1 {
  font-size: clamp(56px, 5.2vw, 76px);
  line-height: 1.02;
  letter-spacing: 0.2px;
}
nav a {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.25px;
}
.copy .eyebrow,
.inquiry-copy .eyebrow,
.workshops-copy .eyebrow {
  font-size: 12px;
  letter-spacing: 1.1px;
}
.copy .hero-description {
  max-width: 390px;
  font-size: 15px;
  line-height: 1.75;
}
.buttons button,
.book,
.tour-button,
.workshops-button,
.inquiry-submit {
  font-size: 12px;
  letter-spacing: 0.25px;
}

.services {
  padding-top: 28px;
  padding-bottom: 25px;
}
.service-card {
  min-height: 142px;
}
.service-card h2 {
  font-size: 14px;
}
.service-card p {
  font-size: 11px;
  line-height: 1.8;
}

.tours-section {
  padding-top: 32px;
  padding-bottom: 34px;
}
.tours-section > h2,
.portfolio-heading h2,
.stories-header p {
  font-size: 13px;
  letter-spacing: 0.65px;
}
.featured-content h3 {
  font-size: 34px;
  line-height: 1.04;
}
.featured-content h3 {
  letter-spacing: 2.4px;
  line-height: 1.18;
}
.featured-content > p {
  font-size: 13px;
}
.featured-content > .tour-meta:not(.tour-meta-icons) {
  display: none;
}
.tour-meta-icons {
  position: absolute;
  z-index: 2;
  top: 195px;
  left: 51px;
  gap: 14px;
  margin: 0;
  color: #fff;
  font-size: 11px;
}
.featured-content .tour-button {
  margin-top: 66px;
}
.tour-meta-icons span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.tour-meta-icons svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (max-width: 500px) {
  .tour-meta-icons {
    top: 250px;
    left: 20px;
    right: 20px;
    flex-wrap: wrap;
  }
  .featured-content .tour-button {
    margin-top: 92px;
  }
}
.timeline-item h3 {
  font-size: 13px;
}
.timeline-item p {
  font-size: 10px;
}

.instagram-section {
  margin-bottom: 44px;
  padding: 22px 28px 24px;
}
.instagram-top h2 {
  font-size: 15px;
  letter-spacing: 0.25px;
}
.instagram-top strong {
  font-size: 12px;
}
.instagram-section > p {
  font-size: 12px;
}

.categories-section {
  margin-bottom: 48px;
}
.categories-intro > p {
  font-size: 11px;
  letter-spacing: 0.55px;
}
.categories-intro h2 {
  font-size: 38px;
  margin-bottom: 16px;
}
.categories-intro > span {
  color: #52524d;
  font-size: 14px;
  line-height: 1.8;
}
.categories-intro a {
  font-size: 12px;
  letter-spacing: 0.25px;
}
.category-list h3 {
  font-size: 17px;
  letter-spacing: 0.5px;
}
.category-list span {
  color: #454540;
  font-size: 11px;
  font-weight: 700;
}

.about-section {
  margin-bottom: 50px;
}
.about-section {
  gap: 12px;
}
.about-copy h2 {
  font-size: 34px;
  line-height: 1.05;
  margin-bottom: 18px;
}
.about-copy {
  padding-left: 32px;
}
@media (max-width: 850px) {
  .about-copy {
    padding-left: 0;
  }
}
.about-copy > span {
  color: #4e4d49;
  font-size: 13px;
  line-height: 1.85;
}
.about-copy strong {
  font-size: 26px;
}
.about-copy small {
  font-size: 11px;
}
.about-stats b {
  font-size: 34px;
}
.about-stats span {
  color: #454540;
  font-size: 10px;
  letter-spacing: 0.3px;
}
.about-stats article {
  align-items: center;
  justify-content: center;
  text-align: center;
}
.about-stats article > * {
  align-self: center;
  text-align: center;
}

.portfolio-section {
  margin-bottom: 48px;
}
.portfolio-card h3 {
  font-family: "Anton", Montserrat, Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.25px;
}
.portfolio-small-grid .portfolio-card h3 {
  font-size: 15px;
}
.story-copy h3 {
  font-family: "Anton", Montserrat, Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.25px;
}
.story-copy p {
  font-size: 13px;
}
.story-copy small {
  font-size: 11px;
}

.workshops-section {
  padding-top: 68px;
  padding-bottom: 66px;
}
.workshops-copy h2 {
  font-size: clamp(42px, 4vw, 60px);
}
.workshops-copy p {
  font-size: 14px;
  line-height: 1.8;
}
.testimonial-card p {
  font-size: 15px;
}
.testimonial-card {
  transition:
    opacity 0.16s ease,
    transform 0.16s ease,
    box-shadow 0.25s ease;
}
.testimonial-card.is-changing {
  opacity: 0.45;
  transform: translateY(5px);
}

.inquiry-contact-bar {
  gap: 46px;
  margin-top: 28px;
  padding: 26px 18px;
}
.inquiry-contact-bar p {
  gap: 14px;
  color: #35362f;
  font-size: 14px;
  font-weight: 700;
}
.inquiry-contact-bar .icon {
  color: #617426;
}
.inquiry-contact-bar .icon svg {
  width: 21px;
  height: 21px;
  stroke-width: 2;
}
.inquiry-contact-divider {
  width: 1px;
  height: 28px;
  background: #d4d2c4;
}

/* Compact footer matching the supplied reference. */
.site-footer {
  position: relative;
  overflow: hidden;
  padding: 30px 24px 0;
  border-top: 1px solid #e7e5dd;
}
.footer-grid {
  grid-template-columns: 1.35fr repeat(3, 0.78fr) 1.3fr 0.95fr;
  gap: 26px;
  position: relative;
  z-index: 1;
}
.footer-brand {
  gap: 10px;
}
.footer-logo .mark {
  width: 52px;
  height: 52px;
}
.footer-logo b {
  font-size: 21px;
}
.site-footer p {
  max-width: 225px;
  color: #555249;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.65;
}
.footer-social {
  gap: 12px;
}
.footer-social a {
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
}
.footer-social svg {
  width: 18px;
  height: 18px;
}
.footer-column h3 {
  margin-bottom: 10px;
  color: #38372f;
  font-size: 11px;
  letter-spacing: 0.45px;
}
.footer-column a,
.footer-contact p,
.footer-follow a {
  margin-bottom: 5px;
  color: #4b4942;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.45;
}
.footer-contact p {
  gap: 8px;
}
.footer-contact .icon,
.footer-follow .icon {
  width: 16px;
  height: 16px;
}
.footer-contact .icon svg,
.footer-follow .icon svg {
  width: 16px;
  height: 16px;
}
.footer-bottom {
  position: relative;
  z-index: 1;
  max-width: 1330px;
  margin: 14px auto 0;
  padding: 9px 0;
  border-top: 1px solid #e8e5dc;
  display: flex;
  justify-content: center;
  gap: 90px;
  color: #858278;
  font-size: 9px;
  font-weight: 600;
}
.footer-bottom div {
  display: flex;
  gap: 36px;
}
.footer-bottom a {
  color: inherit;
  text-decoration: none;
}
@media (max-width: 1040px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(200px, 1fr));
  }
}
@media (max-width: 720px) {
  .site-footer {
    padding: 36px 24px 18px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .footer-bottom div {
    gap: 20px;
  }
}

/* Motion and interaction effects */
.header {
  transition:
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}
.header.is-scrolled {
  box-shadow: 0 8px 24px rgba(16, 17, 14, 0.12);
}
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 110;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #40540f, #9da854);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.08s linear;
}
.has-reveals .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.65s ease,
    transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.has-reveals .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.service-card,
.timeline-item,
.category-list article,
.story-card,
.portfolio-card,
.testimonial-card,
.inquiry-card {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.service-card:hover,
.timeline-item:hover,
.category-list article:hover {
  transform: translateY(-5px);
}
.story-card:hover,
.testimonial-card:hover,
.inquiry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(16, 17, 14, 0.14);
}
.portfolio-card img,
.instagram-card img,
.featured-tour > img {
  transition:
    transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.45s ease;
}
.portfolio-card:hover img {
  transform: scale(1.06);
}
.portfolio-card.feature > img {
  transform: scale(1.26);
}
.portfolio-card.feature:hover > img {
  transform: scale(1.32);
}
.instagram-card:hover img {
  filter: brightness(1.08) saturate(1.08);
}
.featured-tour:hover > img {
  transform: scale(1.04);
}
.book,
.primary,
.tour-button,
.workshops-button,
.inquiry-submit,
.instagram-top button {
  position: relative;
  overflow: hidden;
}
.book::after,
.primary::after,
.tour-button::after,
.workshops-button::after,
.inquiry-submit::after,
.instagram-top button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 24%,
    rgba(255, 255, 255, 0.28) 50%,
    transparent 76%
  );
  transform: translateX(-130%);
  transition: transform 0.55s ease;
  pointer-events: none;
}
.book:hover::after,
.primary:hover::after,
.tour-button:hover::after,
.workshops-button:hover::after,
.inquiry-submit:hover::after,
.instagram-top button:hover::after {
  transform: translateX(130%);
}
.portfolio-card::before,
.story-card::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15),
    transparent 42%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.portfolio-card:hover::before,
.story-card:hover::before {
  opacity: 1;
}
.has-reveals .reveal.is-visible .service-card,
.has-reveals .reveal.is-visible .timeline-item,
.has-reveals .reveal.is-visible .category-list article,
.has-reveals .reveal.is-visible .story-card {
  animation: card-in 0.5s both;
}
.has-reveals .reveal.is-visible .service-card:nth-child(2),
.has-reveals .reveal.is-visible .timeline-item:nth-child(2),
.has-reveals .reveal.is-visible .category-list article:nth-child(2),
.has-reveals .reveal.is-visible .story-card:nth-child(2) {
  animation-delay: 0.08s;
}
.has-reveals .reveal.is-visible .service-card:nth-child(3),
.has-reveals .reveal.is-visible .timeline-item:nth-child(3),
.has-reveals .reveal.is-visible .category-list article:nth-child(3),
.has-reveals .reveal.is-visible .story-card:nth-child(3) {
  animation-delay: 0.16s;
}
.has-reveals .reveal.is-visible .service-card:nth-child(4),
.has-reveals .reveal.is-visible .timeline-item:nth-child(4),
.has-reveals .reveal.is-visible .category-list article:nth-child(4),
.has-reveals .reveal.is-visible .story-card:nth-child(4) {
  animation-delay: 0.24s;
}
.has-reveals .reveal.is-visible .service-card:nth-child(5),
.has-reveals .reveal.is-visible .category-list article:nth-child(5) {
  animation-delay: 0.32s;
}
@keyframes card-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.footer-column a,
.footer-follow a,
.all-tours,
.portfolio-heading a,
.stories-header a {
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}
.footer-column a:hover,
.footer-follow a:hover,
.all-tours:hover,
.portfolio-heading a:hover,
.stories-header a:hover {
  color: #5d7021;
  transform: translateX(3px);
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  .has-reveals .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Final responsive pass */
@media (max-width: 900px) {
  .header {
    padding-inline: 24px;
  }
  nav.is-open {
    top: 94px;
  }
  .hero {
    min-height: 500px;
    padding-left: 72px;
  }
  .copy {
    width: min(540px, calc(100vw - 110px));
  }
  .copy h1 {
    white-space: normal;
  }
  .services {
    grid-template-columns: repeat(3, 1fr);
  }
  .categories-section {
    margin-inline: 20px;
  }
  .about-section {
    margin-inline: 20px;
    gap: 24px;
  }
  .about-copy {
    padding-top: 24px;
  }
  .inquiry-contact-bar {
    gap: 22px;
  }
  .footer-grid {
    gap: 24px;
  }
}

@media (max-width: 620px) {
  .header {
    height: 72px;
    padding: 8px 18px;
    gap: 14px;
  }
  .header .mark {
    width: 46px;
    height: 46px;
    font-size: 24px;
  }
  .header .brand b {
    font-size: 21px;
  }
  .header .brand small {
    font-size: 7px;
  }
  nav.is-open {
    top: 72px;
    padding: 8px 20px 16px;
  }
  .hero {
    min-height: 560px;
    padding: 50px 22px;
  }
  .copy {
    width: 100%;
    max-width: 100%;
  }
  .copy h1 {
    font-size: clamp(46px, 14vw, 60px);
  }
  .copy .hero-description {
    max-width: 300px;
    font-size: 14px;
  }
  .buttons {
    flex-direction: column;
    gap: 10px;
  }
  .buttons button,
  .buttons .secondary {
    width: 100%;
    min-width: 0;
  }
  .services {
    grid-template-columns: 1fr;
  }
  .service-card {
    padding-bottom: 22px;
  }
  .tours-section,
  .stories-section,
  .inquiry-section {
    padding-inline: 18px;
  }
  .featured-tour {
    height: 410px;
  }
  .featured-content {
    padding: 22px;
  }
  .featured-content h3 {
    font-size: 30px;
  }
  .instagram-section {
    margin-inline: 18px;
    padding: 18px;
  }
  .instagram-top h2 {
    font-size: 13px;
    text-align: left;
  }
  .instagram-top > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
  .instagram-top button {
    width: 100%;
  }
  .categories-section {
    margin-inline: 18px;
    padding-top: 24px;
  }
  .categories-intro h2 {
    font-size: 34px;
  }
  .category-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 0;
  }
  .category-list article {
    padding-inline: 8px;
  }
  .category-list .category-image {
    width: 122px;
    height: 122px;
  }
  .about-section {
    grid-template-columns: 1fr;
    margin-inline: 18px;
    gap: 22px;
  }
  .about-photo {
    height: 310px;
  }
  .about-copy,
  .about-stats {
    height: auto;
  }
  .about-copy::before,
  .about-copy::after,
  .about-stats::after {
    display: none;
  }
  .about-stats {
    grid-column: auto;
  }
  .about-stats article {
    min-height: 145px;
  }
  .portfolio-section {
    margin-inline: 18px;
  }
  .workshops-grid {
    padding-inline: 18px;
  }
  .testimonial-card {
    border-radius: 18px;
  }
  .inquiry-card {
    padding: 22px 16px;
    border-radius: 18px;
  }
  .inquiry-copy h2 {
    font-size: 50px;
  }
  .inquiry-image img {
    height: 210px;
  }
  .inquiry-contact-bar {
    align-items: flex-start;
    gap: 14px;
    padding: 20px 4px;
  }
  .inquiry-contact-bar p {
    font-size: 12px;
  }
  .site-footer {
    padding-inline: 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .footer-bottom {
    font-size: 9px;
  }
}

/* Keep the hero clear on common large-phone widths. */
@media (max-width: 700px) {
  .hero {
    min-height: auto;
    padding: 46px 22px 34px;
  }
  .hero .social,
  .hero .pages {
    display: none;
  }
  .copy {
    width: 100%;
    max-width: 100%;
  }
  .copy h1 {
    font-size: clamp(46px, 11vw, 54px);
    line-height: 1.04;
    white-space: nowrap;
  }
  .copy .eyebrow {
    max-width: 330px;
    font-size: 11px;
    line-height: 1.25;
  }
  .copy .hero-description {
    max-width: 330px;
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.75;
  }
  .buttons {
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
  }
  .buttons button,
  .buttons .secondary {
    width: 100%;
    min-width: 0;
  }
  .tour-timeline {
    gap: 22px;
  }
  .timeline-item {
    grid-template-columns: 66px minmax(0, 1fr);
    min-height: 82px;
  }
  .timeline-item > div {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 12px;
    row-gap: 4px;
    align-items: center;
    height: auto;
  }
  .timeline-item strong {
    position: static;
    grid-row: 1 / span 2;
    width: auto;
    transform: none;
    font-size: 13px;
    text-align: left;
  }
  .timeline-item h3 {
    position: static;
    grid-column: 2;
    margin: 0;
    font-size: 15px;
    line-height: 1.15;
    white-space: normal;
  }
  .timeline-item p {
    position: static;
    grid-column: 2;
    margin: 0;
    font-size: 11px;
    line-height: 1.35;
    white-space: normal;
  }
  .timeline-item em {
    float: none;
    display: inline;
  }
}

.inquiry-email {
  min-width: 0;
}
.inquiry-email a {
  min-width: 0;
  color: inherit;
  overflow-wrap: anywhere;
  word-break: break-word;
  text-decoration: none;
}
@media (max-width: 620px) {
  .inquiry-email {
    align-items: flex-start;
  }
}

/* Shared About-page banner styles. */
.about-page .story-hero {
  min-height: 430px;
  position: relative;
  display: grid;
  grid-template-columns: 400px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  padding: 24px 150px 24px 12vw;
  overflow: hidden;
  background: #fffefb;
}
.about-page .hero-copy {
  position: relative;
  z-index: 2;
}
.about-page .eyebrow {
  margin: 0 0 8px;
  color: #617021;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
}
.about-page .hero-copy h1 {
  margin: 0;
  font-family: Anton, Montserrat, sans-serif;
  font-size: 70px;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.4px;
}
.about-page .hero-copy h1 span {
  color: #53621a;
}
.about-page .hero-copy > p:not(.eyebrow) {
  margin: 25px 0;
  max-width: 405px;
  font-size: 13px;
  line-height: 1.85;
}
.about-page .hero-copy .button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 13px 20px;
  border-radius: 4px;
  background: linear-gradient(135deg, #405309, #71851d);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}
.about-page .hero-copy .button b {
  font-size: 22px;
  font-weight: 400;
}
.about-page .hero-scenes {
  height: 380px;
  min-width: 600px;
  display: grid;
  grid-template-columns: 0.85fr 1.08fr 0.78fr;
  gap: 8px;
  transform: skewX(-10deg);
  overflow: hidden;
}
.about-page .hero-scenes figure {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
}
.about-page .hero-scenes figure:nth-child(1) {
  margin-left: -36px;
}
.about-page .hero-scenes figure:nth-child(2) {
  margin-top: -25px;
  margin-bottom: -25px;
}
.about-page .hero-scenes figure:nth-child(3) {
  margin-top: 25px;
  margin-bottom: 14px;
}
.about-page .hero-scenes img {
  width: 142%;
  height: 100%;
  object-fit: cover;
  transform: skewX(10deg) scale(1.14);
}
.about-page .hero-scenes figure:nth-child(1) img {
  object-position: 36% center;
}
.about-page .hero-social {
  position: absolute;
  left: 38px;
  top: 105px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 28px;
}
.about-page .hero-social a {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
}
.about-page .hero-social svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #111;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.about-page .hero-social svg .dot {
  fill: #111;
  stroke: 0;
}
.about-page .hero-social .facebook {
  fill: #111;
  stroke: 0;
  width: 22px;
  height: 22px;
}
.about-page .hero-social svg path:first-child {
  fill: #111;
  stroke: 0;
}
.about-page .hero-social svg .play {
  fill: #fff;
  stroke: 0;
}
.about-page .hero-social i {
  width: 1px;
  height: 75px;
  background: #64645e;
}
.about-page .hero-social small {
  color: #686861;
  font-size: 8px;
  font-weight: 800;
  text-align: center;
}
.about-page .hero-social .mouse {
  width: 19px;
  height: 27px;
  fill: none;
  stroke: #111;
  stroke-width: 1.7;
}
.about-page .hero-pages {
  position: absolute;
  right: 35px;
  top: 100px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: #55611d;
  font-size: 12px;
  font-weight: 900;
}
.about-page .hero-pages i {
  width: 1px;
  height: 38px;
  background: #151515;
}
.about-page .hero-pages button {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: #111;
  color: #fff;
  font-size: 17px;
}
.about-page main > section:not(.story-hero) {
  display: none;
}
.about-page footer {
  max-width: 1330px;
  margin: 0 auto;
  padding: 22px 28px;
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid #e8e5dc;
}
.about-page footer .footer-brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 30%;
}
.about-page footer b {
  display: block;
  margin-bottom: 8px;
  font-size: 10px;
}
.about-page footer a,
.about-page footer p {
  display: block;
  margin: 0 0 6px;
  font-size: 9px;
  line-height: 1.5;
  text-decoration: none;
}
@media (max-width: 900px) {
  .about-page .story-hero {
    min-height: 500px;
    padding-left: 72px;
    padding-right: 48px;
    grid-template-columns: 350px minmax(0, 1fr);
  }
  .about-page .hero-copy h1 {
    font-size: 60px;
  }
  .about-page .hero-scenes {
    min-width: 480px;
  }
}
@media (max-width: 650px) {
  .about-page .header {
    height: 72px;
  }
  .about-page .brand-logo {
    width: 52px;
    height: 52px;
  }
  .about-page .story-hero {
    display: block;
    min-height: 560px;
    padding: 45px 22px 32px;
  }
  .about-page .hero-social,
  .about-page .hero-pages {
    display: none;
  }
  .about-page .hero-copy h1 {
    font-size: 50px;
  }
  .about-page .hero-copy > p:not(.eyebrow) {
    font-size: 13px;
  }
  .about-page .hero-scenes {
    height: 220px;
    min-width: 0;
    margin-top: 25px;
  }
  .about-page .hero-scenes figure:nth-child(1) {
    margin-left: -15px;
  }
  .about-page footer {
    margin: 0 18px;
    grid-template-columns: 1fr 1fr;
  }
  .about-page footer .footer-brand {
    grid-column: 1/-1;
  }
}

@media (max-width: 850px) {
  .copy h1 {
    font-size: clamp(48px, 10vw, 64px);
  }
  .categories-intro h2,
  .about-copy h2 {
    font-size: 32px;
  }
  .featured-content h3 {
    font-size: 30px;
  }
}

/* Crop the Instagram source screenshots to their actual photo cards. */
.instagram-grid .instagram-card {
  min-width: 0;
  height: 100%;
  overflow: hidden;
  border-radius: 5px;
  background: #e9e7df;
}
.instagram-grid .instagram-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 0;
  transform-origin: center center;
}
.instagram-grid .instagram-card:nth-child(1) img {
  transform: scale(1.24) translateX(-8.5%);
}
.instagram-grid .instagram-card:nth-child(2) img {
  transform: scale(1.27) translateX(-10%);
}
.instagram-grid .instagram-card:nth-child(3) img {
  transform: scale(1.26) translateX(-10%);
}
.instagram-grid .instagram-card:nth-child(4) img {
  transform: scale(1.27) translateX(-10%);
}
.instagram-grid .instagram-card:nth-child(5) img {
  transform: scale(1.24) translateX(-9%);
}
.instagram-grid .instagram-card:nth-child(6) img {
  transform: scale(1.24) translateX(-9%);
}

@media (max-width: 850px) {
  .hero:after {
    opacity: 0.42;
    background-position: 65% center;
  }
  .hero:before {
    background: linear-gradient(
      90deg,
      #fffefb 5%,
      rgba(255, 254, 251, 0.82) 70%,
      rgba(255, 254, 251, 0.53)
    );
  }
  nav.is-open {
    display: grid;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    gap: 0;
    padding: 10px 24px 18px;
    background: #fffefb;
    border-bottom: 1px solid #e8e5d9;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.06);
    z-index: 5;
  }
  nav.is-open a {
    padding: 12px 0;
  }
  .copy {
    max-width: 100%;
  }
}

/* About journey section */
.about-page .about-journey {
  max-width: 1280px;
  margin: 18px auto;
  display: grid !important;
  grid-template-columns: 1.05fr 1.08fr 0.84fr;
  border: 1px solid #e5e3db;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}
.about-page .journey-story {
  padding: 42px 44px;
}
.about-page .journey-story h2 {
  margin: 0;
  font-family: Anton, Montserrat, sans-serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.08;
}
.about-page .journey-story h2 span {
  color: #526019;
}
.about-page .journey-story > p:not(.eyebrow) {
  margin: 28px 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.85;
}
.about-page .journey-photo {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
}
.about-page .journey-principles {
  padding: 18px 34px;
}
.about-page .journey-principles article {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid #e6e4dc;
}
.about-page .journey-principles article:last-child {
  border: 0;
}
.about-page .principle-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: #1e2119;
  font-size: 42px;
  line-height: 1;
}
.about-page .journey-principles h3 {
  margin: 0 0 8px;
  font-family: Anton, Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.4px;
}
.about-page .journey-principles p {
  margin: 0;
  font-size: 11px;
  line-height: 1.65;
}
@media (max-width: 900px) {
  .about-page .about-journey {
    margin-inline: 20px;
    grid-template-columns: 1fr 1fr;
  }
  .about-page .journey-principles {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .about-page .journey-principles article {
    grid-template-columns: 1fr;
    border: 0;
    padding: 12px;
  }
  .about-page .principle-icon {
    width: auto;
  }
}
@media (max-width: 650px) {
  .about-page .about-journey {
    margin: 18px;
    grid-template-columns: 1fr;
  }
  .about-page .journey-story {
    padding: 28px 24px;
  }
  .about-page .journey-story h2 {
    font-size: 30px;
  }
  .about-page .journey-photo {
    height: 280px;
    min-height: 0;
  }
  .about-page .journey-principles {
    display: block;
    padding: 16px 24px;
  }
  .about-page .journey-principles article {
    display: grid;
    grid-template-columns: 58px 1fr;
    border-bottom: 1px solid #e6e4dc;
    padding: 18px 0;
  }
  .about-page .principle-icon {
    width: 52px;
    height: 52px;
    font-size: 36px;
  }
}

.about-page .about-values {
  max-width: 1280px;
  margin: 26px auto;
  display: block !important;
}
.about-page .about-values > .eyebrow {
  margin-left: 18px;
}
.about-page .values-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 12px;
}
.about-page .values-list article {
  min-height: 185px;
  padding: 12px 28px;
  text-align: center;
  border-right: 1px solid #e5e3db;
}
.about-page .values-list article:last-child {
  border: 0;
}
.about-page .values-list span {
  display: block;
  margin-bottom: 12px;
  font-size: 42px;
  line-height: 1;
  color: #1e2119;
}
.about-page .values-list h3 {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 900;
}
.about-page .values-list p {
  margin: 0;
  color: #45453f;
  font-size: 10px;
  line-height: 1.65;
}
@media (max-width: 900px) {
  .about-page .about-values {
    margin-inline: 20px;
  }
  .about-page .values-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  .about-page .values-list article {
    border: 0;
    min-height: 0;
  }
}
@media (max-width: 650px) {
  .about-page .about-values {
    margin: 24px 18px;
  }
  .about-page .values-list {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .about-page .values-list article {
    padding: 12px 8px;
  }
  .about-page .values-list span {
    font-size: 34px;
  }
  .about-page .values-list h3 {
    font-size: 10px;
  }
  .about-page .values-list p {
    font-size: 9px;
  }
}
.about-page .values-list span {
  height: 48px;
  font-size: 0;
}
.about-page .values-list span svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: #1e2119;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Featured tours call-to-action shared layout. */
.about-page .tour-showcase {
  width: calc(100% - 56px);
  max-width: 1920px;
  margin: 30px auto;
  display: grid !important;
  grid-template-columns: minmax(520px, 1.18fr) minmax(0, 2.82fr);
  gap: 18px;
  align-items: center;
  padding: 12px 18px;
  border: 1px solid #e5e2da;
  border-radius: 16px;
  background: #f8f7f2;
}
.about-page .tour-showcase__cta {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 12px;
}
.about-page .tour-showcase__mail {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #303c09;
  color: #fff;
  font-size: 38px;
  line-height: 1;
}
.about-page .tour-showcase__cta p {
  margin: 2px 0 8px;
  color: #4e5c18;
  font-size: 10px;
  font-weight: 900;
}
.about-page .tour-showcase__cta h2 {
  margin: 0 0 20px;
  font-family: Anton, Montserrat, sans-serif;
  font-size: 27px;
  font-weight: 400;
  line-height: 1.08;
  white-space: nowrap;
}
.about-page .tour-showcase__cta .button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 340px;
  padding: 13px 18px;
  border-radius: 6px;
  background: linear-gradient(135deg, #2f3b05, #64751b);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
}
.about-page .tour-showcase__cta .button b {
  font-size: 22px;
  font-weight: 400;
}
.about-page .tour-showcase__cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.about-page .tour-showcase__cards article {
  position: relative;
  height: 258px;
  overflow: hidden;
  border: 1px solid #dedbd2;
  border-radius: 10px;
  background: #fff;
}
.about-page .tour-showcase__cards img {
  display: block;
  width: 100%;
  height: 155px;
  object-fit: cover;
}
.about-page .tour-showcase__cards article > span {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 8px;
  border-radius: 9px;
  background: #304009;
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.3px;
}
.about-page .tour-showcase__cards h3 {
  margin: 10px 12px 4px;
  font-family: Anton, Montserrat, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
}
.about-page .tour-showcase__cards p {
  margin: 0 12px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.65;
}
.about-page .tour-showcase__cards p b {
  font-size: 8px;
}
@media (max-width: 1150px) {
  .about-page .tour-showcase {
    grid-template-columns: 1fr;
  }
  .about-page .tour-showcase__cta {
    max-width: 580px;
  }
  .about-page .tour-showcase__cards article {
    height: 245px;
  }
  .about-page .tour-showcase__cards img {
    height: 145px;
  }
}
@media (max-width: 700px) {
  .about-page .tour-showcase {
    width: auto;
    margin: 24px 18px;
    grid-template-columns: 1fr;
    padding: 16px;
  }
  .about-page .tour-showcase__cta {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 14px;
    padding: 4px;
  }
  .about-page .tour-showcase__mail {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }
  .about-page .tour-showcase__cta h2 {
    font-size: 22px;
    white-space: normal;
  }
  .about-page .tour-showcase__cta .button {
    grid-column: 1/-1;
    max-width: none;
  }
  .about-page .tour-showcase__cards {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .about-page .tour-showcase__cards article {
    height: 210px;
  }
  .about-page .tour-showcase__cards img {
    height: 118px;
  }
  .about-page .tour-showcase__cards h3 {
    font-size: 14px;
  }
  .about-page .tour-showcase__cards p {
    font-size: 8px;
  }
}
.about-page .tour-showcase {
  grid-template-columns: minmax(460px, 0.92fr) minmax(0, 3.08fr);
}
.about-page .tour-showcase__cta {
  max-width: 470px;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 16px;
}
.about-page .tour-showcase__mail {
  width: 78px;
  height: 78px;
  font-size: 30px;
}
.about-page .tour-showcase__cta .button {
  width: 250px;
  max-width: 250px;
  padding: 10px 14px;
}
.about-page .tour-showcase {
  grid-template-columns: minmax(390px, 0.78fr) minmax(0, 3.22fr);
}
.about-page .tour-showcase__cta {
  max-width: 400px;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 13px;
}
.about-page .tour-showcase__mail {
  width: 64px;
  height: 64px;
  font-size: 26px;
}
.about-page .tour-showcase__cta h2 {
  font-size: 22px;
}
.about-page .tour-showcase__cta .button {
  width: 210px;
  max-width: 210px;
  font-size: 9px;
}
.about-page .tour-showcase__cta .button {
  min-height: 52px;
  padding-block: 14px;
}
.about-page .tour-showcase__cta .button {
  min-height: 62px;
}
.about-page .tour-showcase__cta {
  padding-top: 0;
}
.about-page .tour-showcase__cta {
  transform: translateY(-12px);
}
.about-page .tour-showcase__cta p {
  letter-spacing: 0.35px;
}
.about-page .tour-showcase__cta h2 {
  letter-spacing: 0.45px;
}
@media (min-width: 701px) {
  .about-page .tour-showcase__cta h2 {
    font-size: 28px;
  }
}
@media (min-width: 701px) {
  .about-page .tour-showcase__cta p {
    font-size: 12px;
  }
}
.about-page .about-values > .eyebrow {
  font-size: 16px;
}
.about-page .values-list h3 {
  font-size: 14px;
}
.about-page .values-list p {
  font-size: 12px;
}
@media (max-width: 650px) {
  .about-page .values-list h3 {
    font-size: 12px;
  }
  .about-page .values-list p {
    font-size: 10px;
  }
}
.about-page .journey-principles p {
  font-size: 13px;
}
@media (max-width: 650px) {
  .about-page .journey-principles p {
    font-size: 11px;
  }
}
.about-page .journey-principles .principle-icon svg {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: #1e2119;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Let the shared footer keep its index-page layout on every page. */
.site-footer.site-footer {
  max-width: none;
  margin: 0;
  padding: 30px 24px 0;
  display: block;
  border-top: 1px solid #e7e5dd;
  background: #fff;
}
.site-footer.site-footer .footer-grid {
  width: 100%;
  max-width: none;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 0.78fr)) minmax(
      0,
      1.3fr
    );
  gap: 26px;
  align-items: start;
}
.site-footer.site-footer .footer-brand {
  display: grid;
  gap: 10px;
}
.site-footer.site-footer .footer-logo-image {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 50%;
}
.site-footer.site-footer .footer-logo b {
  display: block;
  margin: 0;
  font-size: 21px;
}
.site-footer.site-footer p {
  display: block;
  margin: 0;
  max-width: 225px;
  color: #555249;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.65;
}
.site-footer.site-footer .footer-column {
  min-width: 0;
}
.site-footer.site-footer .footer-column h3 {
  margin: 0 0 10px;
  font-size: 11px;
}
.site-footer.site-footer .footer-column a {
  display: block;
  margin-bottom: 5px;
  font-size: 10px;
  line-height: 1.45;
}
.site-footer.site-footer .footer-contact p {
  display: flex;
  margin: 0 0 5px;
  font-size: 10px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}
.site-footer.site-footer .footer-follow {
  display: none;
}
.site-footer.site-footer .footer-bottom {
  max-width: none;
  margin: 14px 0 0;
  padding: 9px 0;
  display: flex;
  border-top: 1px solid #e8e5dc;
  justify-content: center;
  gap: 90px;
}
@media (max-width: 1040px) {
  .site-footer.site-footer .footer-grid {
    grid-template-columns: repeat(2, minmax(200px, 1fr));
  }
}
@media (max-width: 720px) {
  .site-footer.site-footer {
    padding: 36px 24px 18px;
  }
  .site-footer.site-footer .footer-grid {
    grid-template-columns: 1fr;
  }
  .site-footer.site-footer .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
.about-page .tour-showcase__cards h3 {
  margin: 14px 18px 7px;
  font-size: 21px;
  letter-spacing: 0.2px;
}
.about-page .tour-showcase__cards p {
  margin: 0 18px;
  font-size: 13px;
  line-height: 1.7;
}
.about-page .tour-showcase__cards p b {
  display: inline-flex;
  width: 16px;
  height: 16px;
  vertical-align: -3px;
  margin-right: 4px;
}
.about-page .tour-showcase__cards p b svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #171717;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (max-width: 700px) {
  .about-page .tour-showcase__cards h3 {
    margin: 10px 12px 4px;
    font-size: 16px;
  }
  .about-page .tour-showcase__cards p {
    margin: 0 12px;
    font-size: 10px;
  }
  .about-page .tour-showcase__cards p b,
  .about-page .tour-showcase__cards p b svg {
    width: 12px;
    height: 12px;
  }
}
.site-footer.site-footer .footer-logo {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  margin: 0;
}
.site-footer.site-footer .footer-logo .mark {
  display: none;
}
.site-footer.site-footer .footer-logo > span:last-child {
  display: block;
  white-space: nowrap;
}
.site-footer.site-footer .footer-logo-image {
  flex: 0 0 auto;
}
.site-footer.site-footer .footer-column h3 {
  font-size: 13px;
}
.site-footer.site-footer .footer-column a,
.site-footer.site-footer .footer-contact p,
.site-footer.site-footer .footer-follow a {
  font-size: 12px;
  line-height: 1.55;
}
.site-footer.site-footer .footer-brand > p {
  font-size: 14px;
  line-height: 1.7;
}
.site-footer.site-footer .footer-bottom {
  font-size: 11px;
}

/* Conservation impact block. */
.about-page .conservation-impact {
  position: relative;
  isolation: isolate;
  width: calc(100% - 56px);
  max-width: 1920px;
  margin: 30px auto;
  display: grid !important;
  grid-template-columns: 1.25fr 2.35fr;
  gap: 38px;
  align-items: center;
  min-height: 390px;
  padding: 46px 56px;
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(12, 18, 5, 0.96) 0%,
      rgba(17, 25, 7, 0.9) 54%,
      rgba(21, 31, 8, 0.38) 100%
    ),
    url("../images/ig-3-elephant.jpg") center/cover;
  color: #fff;
}
.about-page .conservation-impact__intro {
  position: relative;
  z-index: 1;
  max-width: 450px;
}
.about-page .conservation-impact__intro > p:first-child {
  margin: 0 0 24px;
  font-family: Anton, Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1px;
}
.about-page .conservation-impact__intro > p:first-child span {
  color: #a9c432;
}
.about-page .conservation-impact h2 {
  margin: 0 0 26px;
  font-size: 33px;
  line-height: 1.15;
}
.about-page .conservation-impact__intro > p:not(:first-child) {
  margin: 0 0 28px;
  max-width: 390px;
  font-size: 16px;
  line-height: 1.7;
}
.about-page .conservation-impact .button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 205px;
  padding: 14px 18px;
  border-radius: 6px;
  background: #fff8e9;
  color: #24271c;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}
.about-page .conservation-impact .button b {
  font-size: 24px;
  font-weight: 400;
}
.about-page .conservation-impact__stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.about-page .conservation-impact__stats article {
  min-height: 292px;
  padding: 26px 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(235, 241, 187, 0.25);
  border-radius: 10px;
  background: rgba(11, 17, 4, 0.68);
  backdrop-filter: blur(3px);
}
.about-page .impact-icon {
  display: block;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  background: #c9dc54;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}
.about-page .impact-icon--forest {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath fill='black' d='M31 6 17 30h9L11 50h16v10h8V50h17L38 30h9L31 6Zm-14 42 12-19 12 19H17Z'/%3E%3C/svg%3E");
}
.about-page .impact-icon--shield {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath fill='black' d='M32 4 9 13v16c0 15 9 25 23 31 14-6 23-16 23-31V13L32 4Zm0 7 16 6v12c0 10-5 18-16 24-11-6-16-14-16-24V17l16-6Z'/%3E%3C/svg%3E");
}
.about-page .impact-icon--leaf {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath fill='black' d='M54 6C29 8 14 22 14 42c0 7 4 12 10 15-2-18 9-30 25-39C36 30 28 42 27 59h7c1-7 4-14 8-20 9-12 8-25-8-33Z'/%3E%3C/svg%3E");
}
.about-page .impact-icon--people {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath fill='black' d='M20 30a10 10 0 1 0 0-20 10 10 0 0 0 0 20Zm24 0a10 10 0 1 0 0-20 10 10 0 0 0 0 20ZM8 57v-9c0-9 6-15 15-15s15 6 15 15v9H8Zm18 0v-8c0-7-2-12-6-15 8-2 17 4 17 15v8H26Zm9 0v-9c0-9 6-15 15-15s15 6 15 15v9H35Z'/%3E%3C/svg%3E");
}
.about-page .conservation-impact strong {
  margin-bottom: 14px;
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
}
.about-page .conservation-impact__stats h3 {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.35;
}
.about-page .conservation-impact__stats p {
  margin: auto 0 0;
  font-size: 11px;
  line-height: 1.55;
  color: #ecece4;
}
@media (max-width: 1150px) {
  .about-page .conservation-impact {
    grid-template-columns: 1fr;
    padding: 38px;
  }
  .about-page .conservation-impact__intro {
    max-width: 600px;
  }
  .about-page .conservation-impact__stats {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 700px) {
  .about-page .conservation-impact {
    width: auto;
    margin: 24px 18px;
    gap: 24px;
    min-height: 0;
    padding: 30px 22px;
    background:
      linear-gradient(rgba(12, 18, 5, 0.93), rgba(12, 18, 5, 0.88)),
      url("../images/ig-3-elephant.jpg") center/cover;
  }
  .about-page .conservation-impact__intro > p:first-child {
    font-size: 14px;
    margin-bottom: 14px;
  }
  .about-page .conservation-impact h2 {
    font-size: 28px;
    margin-bottom: 16px;
  }
  .about-page .conservation-impact__intro > p:not(:first-child) {
    font-size: 13px;
    margin-bottom: 20px;
  }
  .about-page .conservation-impact__stats {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .about-page .conservation-impact__stats article {
    min-height: 218px;
    padding: 18px 10px;
  }
  .about-page .impact-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 12px;
  }
  .about-page .conservation-impact strong {
    font-size: 31px;
  }
  .about-page .conservation-impact__stats h3 {
    font-size: 11px;
    margin-bottom: 8px;
  }
  .about-page .conservation-impact__stats p {
    font-size: 9px;
  }
}
.about-page .values-list article,
.about-page .conservation-impact__stats article,
.about-page .tour-showcase__cards article {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.about-page .values-list article:hover,
.about-page .conservation-impact__stats article:hover,
.about-page .tour-showcase__cards article:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 26px rgba(18, 22, 10, 0.16);
}
.about-page .story-hero .button,
.about-page .conservation-impact .button,
.about-page .tour-showcase .button {
  transition:
    transform 0.2s ease,
    filter 0.2s ease;
}
.about-page .story-hero .button:hover,
.about-page .conservation-impact .button:hover,
.about-page .tour-showcase .button:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

/* Gallery page — uses the shared site header and footer. */
.gallery-page .gallery-hero {
  position: relative;
  min-height: 510px;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(480px, 1.1fr);
  align-items: center;
  gap: 42px;
  padding: 74px max(7vw, 40px) 48px;
  background: #faf9f4;
}
.gallery-page .gallery-hero > div {
  max-width: 510px;
}
.gallery-page .gallery-hero p:first-child,
.gallery-page .gallery-heading > div > p {
  margin: 0 0 12px;
  color: #59691a;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
}
.gallery-page .gallery-hero h1 {
  margin: 0 0 22px;
  font-family: Anton, Montserrat, sans-serif;
  font-size: 76px;
  font-weight: 400;
  line-height: 0.94;
}
.gallery-page .gallery-hero h1 span {
  color: #586a18;
}
.gallery-page .gallery-hero div > p:not(:first-child) {
  margin: 0 0 27px;
  max-width: 440px;
  font-size: 14px;
  line-height: 1.8;
}
.gallery-page .gallery-hero .button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 230px;
  padding: 14px 18px;
  border-radius: 5px;
  background: linear-gradient(135deg, #314008, #677b20);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
}
.gallery-page .gallery-hero .button b {
  font-size: 22px;
  font-weight: 400;
}
.gallery-page .gallery-hero > img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  object-position: 70% center;
  border-radius: 18px;
  box-shadow: 18px 18px 0 #e9e6dc;
}
.gallery-page .gallery-collection {
  max-width: 1340px;
  margin: 0 auto;
  padding: 68px 24px;
}
.gallery-page .gallery-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 30px;
}
.gallery-page .gallery-heading h2 {
  margin: 0;
  font-family: Anton, Montserrat, sans-serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.02;
}
.gallery-page .gallery-heading > p {
  max-width: 410px;
  margin: 0;
  color: #625f55;
  font-size: 13px;
  line-height: 1.75;
}
.gallery-page .gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.gallery-page .gallery-filters button {
  border: 1px solid #d8d5ca;
  border-radius: 999px;
  background: #fff;
  padding: 9px 15px;
  color: #34352d;
  font-family: inherit;
  font-size: 10px;
  font-weight: 900;
  cursor: pointer;
}
.gallery-page .gallery-filters button.is-active,
.gallery-page .gallery-filters button:hover {
  border-color: #596b19;
  background: #596b19;
  color: #fff;
}
.gallery-page .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px;
  gap: 16px;
}
.gallery-page .gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #15170d;
}
.gallery-page .gallery-card--tall {
  grid-row: span 2;
}
.gallery-page .gallery-card--wide {
  grid-column: span 2;
}
.gallery-page .gallery-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-page .gallery-card::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.78));
  pointer-events: none;
}
.gallery-page .gallery-card:hover img {
  transform: scale(1.07);
}
.gallery-page .gallery-card div {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 16px;
  left: 18px;
  color: #fff;
}
.gallery-page .gallery-card span {
  display: inline-block;
  padding: 4px 7px;
  border-radius: 3px;
  background: #697d22;
  color: #fff;
  font-size: 8px;
  font-weight: 900;
}
.gallery-page .gallery-card h3 {
  margin: 8px 0 0;
  font-family: Anton, Montserrat, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}
@media (max-width: 850px) {
  .gallery-page .gallery-hero {
    grid-template-columns: 1fr;
    padding-top: 44px;
  }
  .gallery-page .gallery-hero > img {
    height: 300px;
  }
  .gallery-page .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-page .gallery-heading {
    align-items: start;
    flex-direction: column;
  }
}
@media (max-width: 560px) {
  .gallery-page .gallery-hero {
    gap: 28px;
    padding: 38px 22px;
  }
  .gallery-page .gallery-hero h1 {
    font-size: 58px;
  }
  .gallery-page .gallery-hero > img {
    height: 240px;
  }
  .gallery-page .gallery-collection {
    padding: 44px 18px;
  }
  .gallery-page .gallery-heading h2 {
    font-size: 34px;
  }
  .gallery-page .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 235px;
  }
  .gallery-page .gallery-card--tall,
  .gallery-page .gallery-card--wide {
    grid-column: auto;
    grid-row: auto;
  }
}
.gallery-page .gallery-hero {
  position: relative;
  isolation: isolate;
  min-height: 590px;
  display: flex;
  align-items: center;
  padding: 84px 14vw 56px clamp(90px, 11vw, 150px);
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      #fff 0%,
      rgba(255, 255, 255, 0.97) 31%,
      rgba(255, 255, 255, 0.2) 56%,
      rgba(255, 255, 255, 0) 70%
    ),
    url("../images/gallery-stag-banner.png") center/cover;
}
.gallery-page .gallery-hero__copy {
  position: relative;
  z-index: 1;
  max-width: 570px;
}
.gallery-page .gallery-hero__copy > p:first-child {
  margin: 0 0 12px;
  color: #59691a;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
}
.gallery-page .gallery-hero h1 {
  margin: 0 0 22px;
  font-family: Anton, Montserrat, sans-serif;
  font-size: clamp(48px, 4.65vw, 68px);
  font-weight: 400;
  line-height: 0.95;
}
.gallery-page .gallery-hero h1 span {
  color: #566519;
}
.gallery-page .gallery-hero__copy > p:not(:first-child) {
  max-width: 420px;
  margin: 0 0 30px;
  font-size: 14px;
  line-height: 1.8;
}
.gallery-page .gallery-hero__stats {
  display: flex;
  gap: 22px;
}
.gallery-page .gallery-hero__stats span {
  display: grid;
  grid-template-columns: 30px auto;
  column-gap: 5px;
  align-items: center;
  font-size: 27px;
  line-height: 1;
}
.gallery-page .gallery-hero__stats b {
  font-size: 17px;
}
.gallery-page .gallery-hero__stats small {
  grid-column: 2;
  font-size: 7px;
  font-weight: 900;
  white-space: nowrap;
}
.gallery-page .gallery-hero__pages {
  position: absolute;
  z-index: 2;
  right: 42px;
  top: 116px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 900;
}
.gallery-page .gallery-hero__pages i {
  width: 2px;
  height: 48px;
  background: #171717;
}
@media (max-width: 700px) {
  .gallery-page .gallery-hero {
    min-height: 620px;
    padding: 72px 24px 34px;
    background:
      linear-gradient(
        rgba(255, 255, 255, 0.92) 0%,
        rgba(255, 255, 255, 0.72) 55%,
        rgba(255, 255, 255, 0.15) 100%
      ),
      url("../images/gallery-stag-banner.png") 62% center/cover;
  }
  .gallery-page .gallery-hero h1 {
    font-size: 50px;
  }
  .gallery-page .gallery-hero__pages {
    display: none;
  }
  .gallery-page .gallery-hero__stats {
    gap: 10px;
    flex-wrap: wrap;
  }
  .gallery-page .gallery-hero__stats span {
    font-size: 21px;
  }
  .gallery-page .gallery-hero__stats b {
    font-size: 14px;
  }
}
.gallery-page .gallery-hero {
  min-height: 430px;
  padding-top: 58px;
  padding-bottom: 34px;
}
@media (max-width: 700px) {
  .gallery-page .gallery-hero {
    min-height: 560px;
    padding-top: 58px;
  }
}
.gallery-page .gallery-toolbar {
  max-width: 1920px;
  margin: 24px auto 0;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 28px;
  border: 1px solid #e2dfd6;
  border-radius: 16px;
  background: #faf9f4;
}
.gallery-page .gallery-toolbar__categories {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}
.gallery-page .gallery-toolbar button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 0;
  background: transparent;
  padding: 12px 10px;
  color: #2c2d28;
  font-family: inherit;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
  cursor: pointer;
}
.gallery-page .gallery-toolbar__categories button + button {
  border-left: 1px solid #e3e0d7;
  padding-left: 22px;
}
.gallery-page .gallery-toolbar button.is-active {
  border-radius: 6px;
  background: #3e4d0b;
  color: #fff;
}
.gallery-page .gallery-toolbar__sort {
  display: grid;
  gap: 3px;
  min-width: 126px;
  color: #34352d;
  font-size: 8px;
  font-weight: 900;
}
.gallery-page .gallery-toolbar__sort select {
  border: 1px solid #e0ddd3;
  border-radius: 7px;
  background: #fff;
  padding: 10px;
  color: #45443e;
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
}
.gallery-page .gallery-toolbar__views {
  display: flex;
  gap: 8px;
}
.gallery-page .gallery-toolbar__views button {
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid #ddd9cf;
  border-radius: 7px;
  font-size: 23px;
}
.gallery-page .gallery-toolbar__views button.is-active {
  background: #3e4d0b;
  color: #fff;
}
@media (max-width: 1100px) {
  .gallery-page .gallery-toolbar {
    margin-inline: 20px;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .gallery-page .gallery-toolbar__categories {
    order: 2;
    min-width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    row-gap: 8px;
  }
  .gallery-page .gallery-toolbar__categories button + button {
    padding-left: 14px;
  }
}
@media (max-width: 650px) {
  .gallery-page .gallery-toolbar {
    margin: 18px;
    gap: 10px;
    padding: 10px;
  }
  .gallery-page .gallery-toolbar__categories button {
    font-size: 9px;
  }
  .gallery-page .gallery-toolbar__sort {
    min-width: 112px;
  }
  .gallery-page .gallery-toolbar__views button {
    width: 40px;
    height: 40px;
  }
}
.gallery-page .gallery-toolbar__categories svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.gallery-page .gallery-mosaic {
  width: calc(100% - 80px);
  max-width: 1900px;
  margin: 16px auto 42px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 200px;
  gap: 10px;
}
.gallery-page .mosaic-card {
  position: relative;
  overflow: hidden;
  min-height: 0;
  border: 1px solid #eceae2;
  border-radius: 9px;
  background: #24241c;
}
.gallery-page .mosaic-card--tall {
  grid-row: span 2;
}
.gallery-page .mosaic-card--wide {
  grid-column: span 2;
}
.gallery-page .mosaic-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.gallery-page .mosaic-card::after {
  content: "";
  position: absolute;
  inset: 40% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.84));
}
.gallery-page .mosaic-card:hover img {
  transform: scale(1.08);
}
.gallery-page .mosaic-card div {
  position: absolute;
  z-index: 1;
  right: 14px;
  bottom: 14px;
  left: 14px;
  color: #fff;
}
.gallery-page .mosaic-card h3 {
  margin: 0 0 5px;
  font-family: Anton, Montserrat, sans-serif;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.2px;
  line-height: 1;
}
.gallery-page .mosaic-card p {
  margin: 0;
  font-size: 9px;
  font-weight: 700;
}
.gallery-page .mosaic-card--tall h3 {
  font-size: 21px;
}
@media (max-width: 1100px) {
  .gallery-page .gallery-mosaic {
    margin-inline: 20px;
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 650px) {
  .gallery-page .gallery-mosaic {
    margin: 12px 18px 30px;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
    gap: 7px;
  }
  .gallery-page .mosaic-card--wide {
    grid-column: span 2;
  }
  .gallery-page .mosaic-card h3 {
    font-size: 13px;
  }
  .gallery-page .mosaic-card p {
    font-size: 7px;
  }
}
.gallery-page .gallery-mosaic {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 290px;
}
.gallery-page .mosaic-card--wide {
  grid-column: span 2;
}
@media (max-width: 900px) {
  .gallery-page .gallery-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 230px;
  }
}
@media (max-width: 650px) {
  .gallery-page .gallery-mosaic {
    grid-auto-rows: 190px;
  }
}
.gallery-page .gallery-mosaic {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
}
.gallery-page .private-journeys {
  position: relative;
  isolation: isolate;
  width: calc(100% - 80px);
  max-width: 1900px;
  min-height: 470px;
  margin: 0 auto 54px;
  padding: 62px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid #dedbd1;
  border-radius: 18px;
  background:
    linear-gradient(
      90deg,
      rgba(8, 12, 8, 0.96) 0%,
      rgba(10, 14, 8, 0.82) 34%,
      rgba(10, 14, 8, 0.12) 70%
    ),
    url("../images/pf-2-elephants.jpg") center/cover;
  color: #fff;
}
.gallery-page .private-journeys__copy {
  position: relative;
  z-index: 1;
  max-width: 470px;
}
.gallery-page .private-journeys__copy > p:first-child {
  margin: 0 0 24px;
  color: #d7cf8d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.2px;
}
.gallery-page .private-journeys h2 {
  margin: 0 0 24px;
  font-family: Anton, Montserrat, sans-serif;
  font-size: 58px;
  font-weight: 400;
  line-height: 0.98;
}
.gallery-page .private-journeys__copy > p:not(:first-child) {
  margin: 0 0 30px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.8;
}
.gallery-page .private-journeys .button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 245px;
  padding: 14px 18px;
  border-radius: 6px;
  background: linear-gradient(135deg, #3d4a08, #65741c);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
}
.gallery-page .private-journeys .button b {
  font-size: 22px;
  font-weight: 400;
}
.gallery-page .private-journeys__regions {
  position: absolute;
  z-index: 1;
  right: 30px;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 19px 28px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  background: rgba(10, 12, 8, 0.5);
  backdrop-filter: blur(4px);
}
.gallery-page .private-journeys__regions span {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.6px;
}
.gallery-page .private-journeys__regions b {
  margin-left: 32px;
  color: #d9d8c8;
}
.gallery-page .private-journeys__regions i {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.35);
}
@media (max-width: 900px) {
  .gallery-page .private-journeys {
    width: auto;
    min-height: 0;
    margin: 0 18px 36px;
    padding: 36px 26px;
    flex-direction: column;
    align-items: flex-start;
    background:
      linear-gradient(90deg, rgba(8, 12, 8, 0.95), rgba(8, 12, 8, 0.35)),
      url("../images/pf-2-elephants.jpg") center/cover;
  }
  .gallery-page .private-journeys h2 {
    font-size: 44px;
  }
  .gallery-page .private-journeys__regions {
    position: static;
    width: 100%;
    margin-top: 28px;
    gap: 12px;
    padding: 14px;
  }
  .gallery-page .private-journeys__regions span {
    font-size: 10px;
  }
  .gallery-page .private-journeys__regions b {
    margin-left: 8px;
  }
}
.gallery-page .tour-showcase {
  width: calc(100% - 80px);
  max-width: 1900px;
  margin: 0 auto 54px;
  display: grid;
  grid-template-columns: minmax(390px, 0.78fr) minmax(0, 3.22fr);
  gap: 18px;
  align-items: center;
  padding: 12px 18px;
  border: 1px solid #e5e2da;
  border-radius: 16px;
  background: #f8f7f2;
}
.gallery-page .tour-showcase__cta {
  max-width: 400px;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
  padding: 0;
}
.gallery-page .tour-showcase__mail {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #303c09;
  color: #fff;
  font-size: 26px;
  line-height: 1;
}
.gallery-page .tour-showcase__cta p {
  margin: 0 0 8px;
  color: #4e5c18;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.35px;
}
.gallery-page .tour-showcase__cta h2 {
  margin: 0 0 18px;
  font-family: Anton, Montserrat, sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.45px;
}
.gallery-page .tour-showcase__cta .button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 210px;
  min-height: 62px;
  padding: 14px;
  border-radius: 6px;
  background: linear-gradient(135deg, #2f3b05, #64751b);
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  text-decoration: none;
}
.gallery-page .tour-showcase__cta .button b {
  font-size: 22px;
  font-weight: 400;
}
.gallery-page .tour-showcase__cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.gallery-page .tour-showcase__cards > a {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.gallery-page .tour-showcase__cards article {
  position: relative;
  height: 258px;
  overflow: hidden;
  border: 1px solid #dedbd2;
  border-radius: 10px;
  background: #fff;
}
.gallery-page .tour-showcase__cards img {
  display: block;
  width: 100%;
  height: 155px;
  object-fit: cover;
}
.gallery-page .tour-showcase__cards article > span {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 8px;
  border-radius: 9px;
  background: #304009;
  color: #fff;
  font-size: 8px;
  font-weight: 800;
}
.gallery-page .tour-showcase__cards h3 {
  margin: 14px 18px 7px;
  font-family: Anton, Montserrat, sans-serif;
  font-size: 21px;
  font-weight: 400;
  line-height: 1;
}
.gallery-page .tour-showcase__cards p {
  margin: 0 18px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}
.gallery-page .tour-showcase__cards p b {
  font-size: 8px;
}
@media (max-width: 1100px) {
  .gallery-page .tour-showcase {
    grid-template-columns: 1fr;
  }
  .gallery-page .tour-showcase__cards {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 700px) {
  .gallery-page .tour-showcase {
    width: auto;
    margin: 0 18px 36px;
    grid-template-columns: 1fr;
    padding: 16px;
  }
  .gallery-page .tour-showcase__cta {
    grid-template-columns: 78px minmax(0, 1fr);
  }
  .gallery-page .tour-showcase__mail {
    width: 70px;
    height: 70px;
  }
  .gallery-page .tour-showcase__cta h2 {
    font-size: 22px;
  }
  .gallery-page .tour-showcase__cards {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .gallery-page .tour-showcase__cards article {
    height: 210px;
  }
  .gallery-page .tour-showcase__cards img {
    height: 118px;
  }
  .gallery-page .tour-showcase__cards h3 {
    margin: 10px 12px 4px;
    font-size: 16px;
  }
  .gallery-page .tour-showcase__cards p {
    margin: 0 12px;
    font-size: 10px;
  }
}
.gallery-page .tour-showcase__cards p b {
  display: inline-flex;
  width: 16px;
  height: 16px;
  vertical-align: -3px;
  margin-right: 4px;
}
.gallery-page .tour-showcase__cards p b svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #171717;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Compact the private journeys callout. */
.gallery-page .private-journeys {
  min-height: 260px;
  padding-top: 41px;
  padding-bottom: 41px;
}
.gallery-page .private-journeys__copy > p:first-child {
  margin-bottom: 12px;
}
.gallery-page .private-journeys h2 {
  margin-bottom: 12px;
  font-size: 48px;
}
.gallery-page .private-journeys__copy > p:not(:first-child) {
  margin-bottom: 14px;
  line-height: 1.55;
}
@media (max-width: 800px) {
  .gallery-page .private-journeys {
    min-height: 300px;
    padding-top: 43px;
    padding-bottom: 43px;
  }
  .gallery-page .private-journeys h2 {
    font-size: 40px;
  }
}

/* Homepage-style motion for the private journeys feature. */
.gallery-page .private-journeys {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.gallery-page .private-journeys:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(16, 17, 14, 0.18);
}
.gallery-page .private-journeys .button {
  position: relative;
  overflow: hidden;
}
.gallery-page .private-journeys .button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 24%,
    rgba(255, 255, 255, 0.28) 50%,
    transparent 76%
  );
  transform: translateX(-130%);
  transition: transform 0.55s ease;
  pointer-events: none;
}
.gallery-page .private-journeys .button:hover::after {
  transform: translateX(130%);
}

/* Close-up camera artwork for the workshop reservation banner. */
.workshop-reserve {
  background:
    linear-gradient(
      90deg,
      rgba(8, 10, 8, 0.12),
      rgba(20, 22, 18, 0.88) 39%,
      #20221e 100%
    ),
    url("../images/workshop-reserve-camera.png") left center / 44% 100% no-repeat,
    #20221e;
}
.workshop-perks {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 1520px;
  margin: -24px auto 54px;
  overflow: hidden;
  border: 1px solid #e0dfd8;
  border-radius: 20px;
  background: #fbfbf8;
  box-shadow: 0 2px 7px rgba(20, 22, 16, 0.04);
}
.workshop-perks article {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 16px;
  min-height: 146px;
  padding: 22px 26px;
}
.workshop-perks article + article {
  border-left: 1px solid #e2e1dc;
}
.workshop-perks svg {
  width: 53px;
  height: 53px;
  fill: none;
  stroke: #617126;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.workshop-perks h3 {
  margin: 0 0 9px;
  color: #343530;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}
.workshop-perks p {
  margin: 0;
  color: #575952;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.75;
}
@media (max-width: 1100px) {
  .workshop-perks {
    grid-template-columns: repeat(3, 1fr);
    margin: 0 25px 45px;
  }
  .workshop-perks article:nth-child(4) {
    border-left: 0;
  }
  .workshop-perks article:nth-child(n + 4) {
    border-top: 1px solid #e2e1dc;
  }
}
@media (max-width: 650px) {
  .workshop-perks {
    grid-template-columns: 1fr;
    margin: 0 20px 38px;
  }
  .workshop-perks article {
    min-height: 112px;
    padding: 17px 22px;
  }
  .workshop-perks article + article {
    border-top: 1px solid #e2e1dc;
    border-left: 0;
  }
  .workshop-perks svg {
    width: 44px;
    height: 44px;
  }
  .workshop-perks h3 {
    font-size: 12px;
  }
}

/* Restore the reservation panel's mobile layout after desktop overrides. */
@media (max-width: 1020px) {
  .workshop-reserve {
    grid-template-columns: 1fr;
    width: auto;
    min-height: 0;
    margin: 34px 20px 52px;
  }
  .workshop-reserve__intro,
  .workshop-reserve__benefits {
    grid-column: 1;
  }
}

@media (max-width: 650px) {
  .workshop-reserve {
    margin: 28px 14px 42px;
    border-width: 1px;
  }
  .workshop-reserve__intro {
    padding: 28px 20px;
  }
  .workshop-reserve h2 {
    font-size: clamp(29px, 9vw, 38px);
  }
  .workshop-reserve__intro > span {
    display: block;
    font-size: 13px;
  }
  .workshop-reserve__intro a {
    width: 100%;
    box-sizing: border-box;
    margin-top: 18px;
  }
  .workshop-reserve__benefits {
    padding: 8px 20px 18px;
  }
  .workshop-reserve__benefits article {
    min-height: 76px;
    padding: 12px 0;
  }
  .workshop-reserve__benefits p {
    font-size: 13px;
  }
  .workshop-reserve__benefits p br {
    display: none;
  }
}
@media (min-width: 851px) {
  .why-workshops {
    box-sizing: border-box;
    width: min(1024px, calc(100% - 40px));
    min-height: 420px;
    margin: 0 auto 54px;
    padding: 42px 24px;
  }
  .why-workshops__layout {
    grid-template-columns: 1fr 310px 1fr;
    gap: 20px;
  }
  .why-workshops__image {
    width: 290px;
    height: 290px;
  }
  .why-workshops__points {
    gap: 32px;
  }
  .why-workshops__points article {
    grid-template-columns: 62px 1fr;
    gap: 14px;
  }
  .why-workshops__points article > span {
    width: 58px;
    height: 58px;
  }
  .why-workshops h3 {
    font-size: 15px;
  }
  .why-workshops p {
    font-size: 12px;
  }
}
.why-workshops {
  background: #fff;
}
@media (min-width: 1101px) {
  .workshop-perks {
    margin-bottom: 20px;
  }
}
@media (min-width: 1101px) {
  .workshop-perks {
    margin-bottom: 0;
  }
  .why-workshops {
    margin-bottom: 20px;
  }
}
.workshops-hero .buttons button,
.workshop-reserve__intro a {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.22s ease,
    filter 0.22s ease,
    box-shadow 0.22s ease;
}
.workshops-hero .buttons button:hover,
.workshop-reserve__intro a:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
  box-shadow: 0 10px 18px rgba(15, 17, 10, 0.18);
}
.workshop-catalogue__cards article,
.workshop-perks article,
.workshop-reviews__cards article {
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}
.workshop-catalogue__cards article:hover,
.workshop-perks article:hover,
.workshop-reviews__cards article:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 28px rgba(20, 23, 12, 0.13);
}
.workshop-catalogue__cards img {
  transition:
    transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.45s ease;
}
.workshop-catalogue__cards article:hover img {
  transform: scale(1.06);
  filter: saturate(1.08);
}
.why-workshops__image {
  transition:
    transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 0.4s ease;
}
.why-workshops__image:hover {
  transform: scale(1.03) rotate(-1deg);
  box-shadow:
    inset 0 0 0 16px rgba(255, 255, 255, 0.42),
    0 14px 28px rgba(27, 31, 14, 0.15);
}
.has-reveals .reveal.is-visible .workshop-catalogue__cards article,
.has-reveals .reveal.is-visible .workshop-perks article,
.has-reveals .reveal.is-visible .workshop-reviews__cards article {
  animation: card-in 0.52s both;
}
.has-reveals .reveal.is-visible .workshop-catalogue__cards article:nth-child(2),
.has-reveals .reveal.is-visible .workshop-perks article:nth-child(2),
.has-reveals .reveal.is-visible .workshop-reviews__cards article:nth-child(2) {
  animation-delay: 0.09s;
}
.has-reveals .reveal.is-visible .workshop-catalogue__cards article:nth-child(3),
.has-reveals .reveal.is-visible .workshop-perks article:nth-child(3),
.has-reveals .reveal.is-visible .workshop-reviews__cards article:nth-child(3) {
  animation-delay: 0.18s;
}
.has-reveals .reveal.is-visible .workshop-catalogue__cards article:nth-child(4),
.has-reveals .reveal.is-visible .workshop-perks article:nth-child(4) {
  animation-delay: 0.27s;
}
.has-reveals .reveal.is-visible .workshop-catalogue__cards article:nth-child(5),
.has-reveals .reveal.is-visible .workshop-perks article:nth-child(5) {
  animation-delay: 0.36s;
}

/* Site-wide responsive safeguards. */
html {
  max-width: 100%;
  overflow-x: hidden;
}
body {
  max-width: 100%;
}
img,
picture,
video,
canvas,
svg {
  max-width: 100%;
}
@media (max-width: 850px) {
  .header {
    position: relative;
  }
  .header nav.is-open {
    display: grid;
  }
  .buttons {
    max-width: 100%;
  }
  .contact-help__grid,
  .workshop-perks,
  .workshop-reviews__cards {
    width: 100%;
  }
}
@media (max-width: 500px) {
  input,
  select,
  textarea,
  button {
    max-width: 100%;
  }
  .site-footer {
    overflow: hidden;
  }
}

/* Active navigation always reflects the current page. */
nav a:first-child:not(.active):not(.is-active) {
  color: inherit;
}
nav a:first-child:not(.active):not(.is-active)::after {
  display: none;
}
nav a.active,
nav a.is-active {
  color: var(--olive);
}
nav a.active::after,
nav a.is-active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 42px;
  height: 2px;
  background: var(--olive);
  transform: translateX(-50%);
}

.whatsapp-button {
  position: fixed;
  z-index: 120;
  right: 28px;
  bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 17px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 24px rgba(18, 86, 43, 0.32);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.whatsapp-button:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 28px rgba(18, 86, 43, 0.4);
}
.whatsapp-button svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
@media (max-width: 620px) {
  .whatsapp-button {
    right: 18px;
    bottom: 18px;
    width: 54px;
    height: 54px;
    justify-content: center;
    padding: 0;
  }
  .whatsapp-button span {
    display: none;
  }
  .whatsapp-button svg {
    width: 25px;
    height: 25px;
  }
}

.legal-hero {
  padding: 82px 24px 74px;
  text-align: center;
  background: linear-gradient(125deg, #f7f7ed, #e5ebd2);
}
.legal-hero p {
  margin: 0 0 10px;
  color: var(--olive);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
}
.legal-hero h1 {
  margin: 0;
  font-family: Anton, Montserrat, sans-serif;
  font-size: clamp(45px, 6vw, 74px);
  font-weight: 400;
  line-height: 1;
}
.legal-hero h1 span {
  color: var(--olive);
}
.legal-hero > span {
  display: block;
  margin-top: 17px;
  color: #5e6057;
  font-size: 12px;
  font-weight: 600;
}
.legal-content {
  max-width: 930px;
  margin: 0 auto;
  padding: 70px 36px 84px;
}
.legal-lead {
  margin: 0 0 45px;
  color: #41433d;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.7;
}
.legal-content section {
  padding: 0 0 27px;
  margin-bottom: 27px;
  border-bottom: 1px solid #e5e4dc;
}
.legal-content section:last-child {
  margin-bottom: 0;
}
.legal-content h2 {
  margin: 0 0 12px;
  font-family: Anton, Montserrat, sans-serif;
  font-size: 25px;
  font-weight: 400;
  letter-spacing: 0.2px;
}
.legal-content p {
  margin: 0;
  color: #565851;
  font-size: 14px;
  line-height: 1.85;
}
.legal-content a {
  color: var(--olive);
  font-weight: 800;
}
@media (max-width: 620px) {
  .legal-hero {
    padding: 60px 20px 55px;
  }
  .legal-content {
    padding: 46px 22px 60px;
  }
  .legal-lead {
    margin-bottom: 32px;
    font-size: 16px;
  }
  .legal-content h2 {
    font-size: 22px;
  }
  .legal-content p {
    font-size: 13px;
  }
}

.terms-banner {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      #fffefb 0%,
      rgba(255, 254, 251, 0.96) 35%,
      rgba(255, 254, 251, 0.12) 56%,
      rgba(255, 254, 251, 0) 71%
    ),
    url("../images/terms-elephant-banner.png") right center / cover no-repeat;
}
.terms-banner__copy {
  position: relative;
  z-index: 1;
  padding: 108px 0 48px clamp(112px, 11vw, 155px);
}
.terms-banner__copy > p {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0 0 43px;
  color: #33342f;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.5px;
}
.terms-banner__copy > p i {
  display: block;
  width: 60px;
  height: 2px;
  background: #31322e;
}
.terms-banner__copy h1 {
  margin: 0;
  color: #11120f;
  font-family: Anton, Montserrat, sans-serif;
  font-size: clamp(55px, 6vw, 82px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 1px;
}
.terms-banner__copy h1 span {
  color: #5f7023;
}
.terms-banner__copy > b {
  display: block;
  width: 138px;
  height: 3px;
  margin: 26px 0 31px;
  background: #68782c;
}
.terms-banner__copy > div {
  color: #4c4e49;
  font-size: 12px;
  font-weight: 700;
}
.terms-banner__copy strong {
  margin: 0 10px;
  color: #65762b;
  font-size: 18px;
}
.terms-banner__social {
  position: absolute;
  z-index: 2;
  top: 112px;
  left: 28px;
  display: grid;
  justify-items: center;
  gap: 22px;
}
.terms-banner__social a {
  color: #151612;
  font-size: 24px;
  font-weight: 900;
  text-decoration: none;
}
.terms-banner__social i {
  width: 2px;
  height: 100px;
  margin-top: 12px;
  background: #4c4d47;
}
.terms-banner__social small {
  color: #4d4e49;
  font-size: 9px;
  font-weight: 900;
  line-height: 1.55;
  text-align: center;
}
.terms-banner__pages {
  position: absolute;
  z-index: 2;
  top: 104px;
  right: 31px;
  display: grid;
  gap: 17px;
  color: #31332e;
  font-size: 14px;
  font-weight: 900;
}
.terms-banner__pages b {
  color: #5d7021;
}
.terms-banner__pages i {
  width: 2px;
  height: 37px;
  margin-left: 8px;
  background: #444640;
}
.terms-banner__pages span {
  padding-left: 1px;
}
@media (max-width: 760px) {
  .terms-banner {
    min-height: 500px;
    background:
      linear-gradient(
        90deg,
        rgba(255, 254, 251, 0.95),
        rgba(255, 254, 251, 0.66) 60%,
        rgba(255, 254, 251, 0.28)
      ),
      url("../images/terms-elephant-banner.png") 62% center / cover no-repeat;
  }
  .terms-banner__copy {
    padding: 80px 28px 44px 78px;
  }
  .terms-banner__copy > p {
    margin-bottom: 29px;
    font-size: 11px;
  }
  .terms-banner__copy h1 {
    font-size: clamp(47px, 13vw, 67px);
  }
  .terms-banner__social {
    top: 92px;
    left: 20px;
  }
  .terms-banner__pages {
    display: none;
  }
}
@media (max-width: 500px) {
  .terms-banner {
    min-height: 470px;
  }
  .terms-banner__copy {
    padding: 68px 20px 35px;
  }
  .terms-banner__social {
    display: none;
  }
  .terms-banner__copy > p i {
    width: 38px;
  }
  .terms-banner__copy h1 {
    font-size: 49px;
  }
}
.workshop-reserve {
  grid-template-columns: 44% minmax(360px, 1.1fr) minmax(300px, 0.9fr);
}
.workshop-reserve__intro {
  grid-column: 2;
  padding: 42px 28px 40px 50px;
}
.workshop-reserve__benefits {
  grid-column: 3;
}
@media (max-width: 1020px) {
  .workshop-reserve__intro,
  .workshop-reserve__benefits {
    grid-column: 1;
  }
  .workshop-reserve__intro {
    padding-left: clamp(28px, 42vw, 410px);
  }
}

/* Match the compact three-part layout of the reservation reference. */
@media (min-width: 1021px) {
  .workshop-reserve {
    grid-template-columns: 27% 38% 35%;
  }
  .workshop-reserve__intro {
    grid-column: 2;
    padding: 42px 24px 34px 50px;
  }
  .workshop-reserve__benefits {
    grid-column: 3;
    padding: 28px 12px;
  }
  .workshop-reserve__intro > span {
    display: block;
    max-width: 100%;
  }
  .workshop-reserve__intro a {
    align-self: flex-start;
  }
  .workshop-reserve__benefits article {
    padding: 0 12px;
  }
}
@media (min-width: 1021px) {
  .workshop-reserve {
    min-height: 210px;
  }
  .workshop-reserve__intro {
    padding-top: 22px;
    padding-bottom: 14px;
  }
}

@media (min-width: 801px) {
  .blog-explorer {
    padding-top: 34px;
    padding-bottom: 42px;
  }
  .blog-featured-story {
    min-height: 430px;
  }
  .blog-featured-story > div {
    bottom: 28px;
  }
  .blog-popular article {
    margin-bottom: 12px;
  }
  .blog-popular img {
    height: 98px;
  }
}
.blog-categories > h2,
.blog-categories > i,
.blog-categories > label {
  display: none;
}
.blog-categories h3 {
  margin-top: 10px;
}
.blog-categories > i,
.blog-categories > label {
  display: none !important;
}
@media (min-width: 801px) {
  .blog-featured-story {
    min-height: 200px;
  }
  .blog-featured-story > button {
    width: 62px;
    height: 62px;
    border-width: 3px;
    font-size: 24px;
  }
  .blog-featured-story > div {
    bottom: 19px;
  }
  .blog-featured-story p {
    margin-bottom: 7px;
    font-size: 10px;
  }
  .blog-featured-story h2 {
    margin-bottom: 7px;
    font-size: 18px;
  }
  .blog-featured-story small {
    font-size: 10px;
  }
  .blog-popular article:nth-of-type(4) {
    display: none;
  }
  .blog-popular article {
    position: relative;
  }
  .blog-popular article::after {
    content: "▶";
    position: absolute;
    left: 45px;
    top: 34px;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: rgba(18, 20, 15, 0.48);
    color: #fff;
    font-size: 15px;
  }
}
@media (min-width: 801px) {
  .blog-explorer {
    padding-top: 20px;
    padding-bottom: 16px;
  }
  .blog-categories h3 {
    margin-bottom: 8px;
  }
  .blog-categories a {
    gap: 12px;
    padding: 5px 3px;
    font-size: 12px;
  }
  .blog-categories a span {
    font-size: 17px;
  }
  .blog-popular article {
    grid-template-columns: 104px 1fr;
    gap: 14px;
  }
  .blog-popular img {
    width: 104px;
    height: 76px;
  }
  .blog-popular h3 {
    margin-bottom: 7px;
    font-size: 14px;
  }
  .blog-popular small {
    font-size: 9px;
  }
  .blog-popular article::after {
    left: 33px;
    top: 20px;
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
}

@media (min-width: 801px) {
  .terms-details {
    grid-template-columns: 235px minmax(0, 1fr);
    gap: 30px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .terms-details__content article {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
  }
}
.privacy-banner {
  background-image:
    linear-gradient(
      90deg,
      #fffefb 0%,
      rgba(255, 254, 251, 0.96) 35%,
      rgba(255, 254, 251, 0.16) 56%,
      rgba(255, 254, 251, 0) 71%
    ),
    url("../images/privacy-buffalo-banner.png");
}
.privacy-banner .terms-banner__copy h1 {
  font-size: clamp(54px, 6vw, 80px);
}
.privacy-details .terms-details__content p:not(.terms-details__intro) {
  margin: 0;
  color: #52544d;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.72;
}
@media (max-width: 800px) {
  .privacy-details .terms-details__content p:not(.terms-details__intro) {
    font-size: 11px;
  }
}
.terms-banner:not(.privacy-banner) .terms-banner__copy {
  display: none;
}
.terms-banner-cta {
  position: absolute;
  z-index: 3;
  top: 66px;
  left: clamp(58px, 11vw, 155px);
  color: #191a16;
}
.terms-banner-cta > p {
  margin: 0 0 17px;
  color: #59691d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.8px;
}
.terms-banner-cta h2 {
  margin: 0;
  font-family: Anton, Montserrat, sans-serif;
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: 1px;
}
.terms-banner-cta h2 span {
  color: #5d7021;
}
.terms-banner-cta > span {
  display: block;
  margin-top: 22px;
  color: #4c4e49;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.65;
}
.terms-banner-cta > div {
  display: flex;
  gap: 18px;
  margin-top: 27px;
}
.terms-banner-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 228px;
  padding: 16px 20px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}
.terms-banner-cta a b {
  font-size: 22px;
  font-weight: 400;
}
.terms-banner-cta__primary {
  background: #5d7021;
  color: #fff;
}
.terms-banner-cta__secondary {
  border: 2px solid #cfd0cc;
  background: rgba(255, 255, 255, 0.78);
  color: #1b1c19;
}
@media (max-width: 760px) {
  .terms-banner-cta {
    top: 68px;
    left: 28px;
    right: 20px;
  }
  .terms-banner-cta h2 {
    font-size: clamp(39px, 11vw, 57px);
  }
  .terms-banner-cta > span {
    font-size: 13px;
  }
  .terms-banner-cta > div {
    flex-direction: column;
    gap: 10px;
  }
  .terms-banner-cta a {
    max-width: 285px;
  }
}
@media (max-width: 500px) {
  .terms-banner-cta {
    top: 55px;
    left: 20px;
  }
  .terms-banner-cta > p {
    font-size: 10px;
  }
  .terms-banner-cta h2 {
    font-size: 43px;
  }
  .terms-banner-cta > div {
    margin-top: 18px;
  }
  .terms-banner-cta a {
    padding: 13px 16px;
  }
}

.blog-hero {
  min-height: 430px;
  display: flex;
  align-items: center;
  padding: 48px clamp(30px, 10vw, 155px);
  background:
    linear-gradient(
      90deg,
      #fffefb 0%,
      rgba(255, 254, 251, 0.91) 42%,
      rgba(255, 254, 251, 0.18) 65%
    ),
    url("../images/about-cloud-mountains.png") right center / cover;
}
.blog-hero > div {
  max-width: 610px;
}
.blog-hero p,
.blog-feature p,
.blog-stories__heading p,
.blog-newsletter p {
  margin: 0 0 10px;
  color: #617227;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
}
.blog-hero h1,
.blog-feature h2,
.blog-stories h2,
.blog-newsletter h2 {
  margin: 0;
  font-family: Anton, Montserrat, sans-serif;
  font-weight: 400;
  line-height: 1.02;
}
.blog-hero h1 {
  font-size: clamp(54px, 6vw, 82px);
}
.blog-hero h1 span,
.blog-feature h2 span,
.blog-stories h2 span,
.blog-newsletter h2 span {
  color: #5d7021;
}
.blog-hero > div > span {
  display: block;
  max-width: 390px;
  margin-top: 21px;
  color: #4f514b;
  font-size: 15px;
  line-height: 1.75;
}
.blog-hero a,
.blog-feature a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 182px;
  margin-top: 24px;
  padding: 14px 18px;
  border-radius: 5px;
  background: #5d7021;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
}
.blog-hero b,
.blog-feature b,
.blog-stories__heading b,
.blog-stories__grid b,
.blog-newsletter b {
  font-size: 21px;
  font-weight: 400;
}
.blog-feature {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  max-width: 1260px;
  min-height: 390px;
  margin: 64px auto;
  overflow: hidden;
  border-radius: 15px;
  background: #f3f2eb;
}
.blog-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-feature > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px;
}
.blog-feature h2 {
  font-size: 46px;
}
.blog-feature > div > span {
  margin-top: 17px;
  color: #575951;
  font-size: 14px;
  line-height: 1.8;
}
.blog-stories {
  max-width: 1260px;
  margin: 0 auto;
  padding-bottom: 72px;
}
.blog-stories__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 27px;
}
.blog-stories h2 {
  font-size: 43px;
}
.blog-stories__heading > a {
  color: #2c2e29;
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
}
.blog-stories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.blog-stories__grid article {
  overflow: hidden;
  border: 1px solid #e3e2db;
  border-radius: 11px;
  background: #fff;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.blog-stories__grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 28px rgba(20, 23, 12, 0.13);
}
.blog-stories__grid img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-stories__grid article:hover img {
  transform: scale(1.05);
}
.blog-stories__grid article div {
  padding: 21px 22px 23px;
}
.blog-stories__grid p {
  margin: 0;
  color: #68792d;
  font-size: 9px;
  font-weight: 900;
}
.blog-stories__grid p i {
  font-style: normal;
}
.blog-stories__grid h3 {
  margin: 13px 0 19px;
  color: #272924;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.3;
}
.blog-stories__grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #52601d;
  font-size: 10px;
  font-weight: 900;
  text-decoration: none;
}
.blog-newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  max-width: 1260px;
  margin: 0 auto 70px;
  padding: 48px 58px;
  border-radius: 14px;
  background: linear-gradient(115deg, #1d2510, #5a6c20);
  color: #fff;
}
.blog-newsletter p {
  color: #c3d161;
}
.blog-newsletter h2 {
  font-size: 43px;
}
.blog-newsletter h2 span {
  color: #d4e078;
}
.blog-newsletter > div > span {
  display: block;
  max-width: 430px;
  margin-top: 14px;
  color: #f4f5eb;
  font-size: 13px;
  line-height: 1.7;
}
.blog-newsletter form {
  display: flex;
  min-width: 390px;
  border-radius: 5px;
  overflow: hidden;
  background: #fff;
}
.blog-newsletter input {
  min-width: 0;
  flex: 1;
  border: 0;
  padding: 16px;
  font: inherit;
  font-size: 12px;
  outline: 0;
}
.blog-newsletter button {
  border: 0;
  padding: 0 18px;
  background: #e5ead8;
  color: #20231d;
  font: inherit;
  font-size: 10px;
  font-weight: 900;
  cursor: pointer;
}
@media (max-width: 900px) {
  .blog-feature,
  .blog-stories,
  .blog-newsletter {
    margin-left: 20px;
    margin-right: 20px;
  }
  .blog-feature {
    grid-template-columns: 1fr;
  }
  .blog-feature img {
    height: 300px;
  }
  .blog-stories__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-newsletter {
    align-items: flex-start;
    flex-direction: column;
  }
  .blog-newsletter form {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .blog-hero {
    min-height: 520px;
    padding: 55px 22px;
    background:
      linear-gradient(
        90deg,
        rgba(255, 254, 251, 0.94),
        rgba(255, 254, 251, 0.48)
      ),
      url("../images/about-cloud-mountains.png") 60% center / cover;
  }
  .blog-feature {
    margin-top: 42px;
    margin-bottom: 48px;
  }
  .blog-feature img {
    height: 230px;
  }
  .blog-feature > div {
    padding: 34px 26px;
  }
  .blog-feature h2 {
    font-size: 37px;
  }
  .blog-stories__heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }
  .blog-stories__grid {
    grid-template-columns: 1fr;
  }
  .blog-stories__grid img {
    height: 220px;
  }
  .blog-newsletter {
    gap: 28px;
    margin-bottom: 50px;
    padding: 37px 26px;
  }
  .blog-newsletter h2 {
    font-size: 37px;
  }
  .blog-newsletter form {
    flex-direction: column;
    background: transparent;
    gap: 9px;
  }
  .blog-newsletter input,
  .blog-newsletter button {
    width: 100%;
    min-height: 48px;
    border-radius: 4px;
  }
}
.blog-banner {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      #fffefb 0%,
      rgba(255, 254, 251, 0.92) 32%,
      rgba(255, 254, 251, 0.12) 57%,
      transparent 72%
    ),
    url("../images/blog-wildlife-banner.png") center / cover;
}
.blog-banner__copy {
  position: relative;
  z-index: 1;
  padding: 60px 0 45px clamp(100px, 8vw, 145px);
}
@media (max-width: 700px) {
  .blog-banner {
    min-height: 500px;
    background-position: 58% center;
  }
  .blog-banner__copy {
    padding: 65px 25px 35px 72px;
  }
  .blog-banner__copy h1 {
    font-size: 51px;
  }
}
@media (max-width: 500px) {
  .hero-social {
    display: none;
  }
  .blog-banner__copy {
    padding: 65px 22px;
  }
  .blog-banner__copy .hero-description {
    font-size: 13px;
  }
}
.blog-explorer {
  display: grid;
  grid-template-columns: 1.45fr 0.65fr 0.8fr;
  gap: 38px;
  max-width: 1780px;
  margin: 0 auto;
  padding: 54px 55px 72px;
  background: #faf9f5;
}
.blog-featured-story {
  position: relative;
  min-height: 525px;
  overflow: hidden;
  border-radius: 9px;
  background: #171812;
  color: #fff;
}
.blog-featured-story > img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}
.blog-featured-story::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0) 64%);
}
.blog-featured-story > span {
  position: absolute;
  z-index: 1;
  top: 32px;
  left: 32px;
  padding: 9px 17px;
  border-radius: 7px;
  background: #637329;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
}
.blog-featured-story > button {
  position: absolute;
  z-index: 1;
  top: 40%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 105px;
  height: 105px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: rgba(20, 20, 15, 0.24);
  color: #fff;
  font-size: 43px;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.blog-featured-story > div {
  position: absolute;
  z-index: 1;
  right: 35px;
  bottom: 36px;
  left: 35px;
}
.blog-featured-story p {
  margin: 0 0 17px;
  color: #c7d35c;
  font-size: 12px;
  font-weight: 900;
}
.blog-featured-story h2 {
  margin: 0 0 20px;
  font-size: 31px;
  line-height: 1.34;
}
.blog-featured-story small,
.blog-popular small {
  font-size: 12px;
  font-weight: 600;
}
.blog-featured-story small i,
.blog-popular small i {
  font-style: normal;
  margin: 0 12px;
}
.blog-categories {
  padding-right: 36px;
  border-right: 1px solid #e4e3dc;
}
.blog-categories h2,
.blog-popular h2 {
  margin: 10px 0 16px;
  font-size: 22px;
  font-weight: 900;
}
.blog-categories > i {
  display: block;
  width: 56px;
  height: 3px;
  margin-bottom: 28px;
  background: #65752b;
}
.blog-categories label {
  display: flex;
  align-items: center;
  margin-bottom: 34px;
  border: 1px solid #e4e3dc;
  border-radius: 9px;
  background: #fff;
  padding: 0 14px;
}
.blog-categories input {
  min-width: 0;
  flex: 1;
  border: 0;
  padding: 18px 0;
  outline: 0;
  font: inherit;
  font-size: 13px;
}
.blog-categories label b {
  font-size: 26px;
}
.blog-categories h3 {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 900;
}
.blog-categories a {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 11px 5px;
  color: #555750;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.blog-categories a span {
  width: 22px;
  color: #607024;
  font-size: 22px;
}
.blog-popular h2 {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-top: 10px;
}
.blog-popular h2 i {
  display: block;
  width: 53px;
  height: 3px;
  background: #787b68;
}
.blog-popular article {
  display: grid;
  grid-template-columns: 136px 1fr;
  gap: 19px;
  align-items: center;
  margin-bottom: 18px;
}
.blog-popular img {
  width: 136px;
  height: 120px;
  border-radius: 7px;
  object-fit: cover;
}
.blog-popular h3 {
  margin: 0 0 19px;
  color: #252722;
  font-size: 17px;
  line-height: 1.45;
}
.blog-popular small {
  color: #66675f;
  font-size: 11px;
}
@media (max-width: 1150px) {
  .blog-explorer {
    grid-template-columns: 1.2fr 0.8fr;
  }
  .blog-popular {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .blog-popular h2 {
    grid-column: 1/-1;
  }
  .blog-popular article {
    margin: 0;
  }
}
@media (max-width: 800px) {
  .blog-explorer {
    grid-template-columns: 1fr;
    padding: 38px 22px;
  }
  .blog-categories {
    padding: 0 0 26px;
    border-right: 0;
    border-bottom: 1px solid #e4e3dc;
  }
  .blog-popular {
    grid-template-columns: 1fr;
  }
  .blog-featured-story {
    min-height: 440px;
  }
  .blog-featured-story h2 {
    font-size: 25px;
  }
}
@media (max-width: 500px) {
  .blog-explorer {
    padding: 30px 18px;
  }
  .blog-featured-story {
    min-height: 390px;
  }
  .blog-featured-story > span {
    top: 20px;
    left: 20px;
  }
  .blog-featured-story > button {
    width: 76px;
    height: 76px;
    border-width: 3px;
    font-size: 31px;
  }
  .blog-featured-story > div {
    right: 20px;
    bottom: 23px;
    left: 20px;
  }
  .blog-featured-story h2 {
    font-size: 20px;
  }
  .blog-popular article {
    grid-template-columns: 105px 1fr;
    gap: 13px;
  }
  .blog-popular img {
    width: 105px;
    height: 92px;
  }
  .blog-popular h3 {
    margin-bottom: 10px;
    font-size: 14px;
  }
}

.terms-details {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 50px;
  max-width: 1270px;
  margin: 0 auto;
  padding: 42px 30px 74px;
}
.terms-details__nav {
  align-self: start;
  overflow: hidden;
  border: 1px solid #e1e0da;
  border-radius: 5px;
  background: #fff;
}
.terms-details__nav > a {
  display: block;
  padding: 18px 23px;
  border-bottom: 1px solid #e7e6e0;
  color: #363732;
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}
.terms-details__nav > a:hover,
.terms-details__nav > a.active {
  background: linear-gradient(135deg, #40540f, #71822e);
  color: #fff;
}
.terms-help {
  display: grid;
  grid-template-columns: 43px 1fr;
  gap: 12px;
  padding: 24px 20px 21px;
  background: #131510;
  color: #fff;
}
.terms-help svg {
  width: 42px;
  height: 42px;
  grid-row: span 2;
  fill: none;
  stroke: #9baa45;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.terms-help b {
  display: block;
  margin: 4px 0 5px;
  font-family: Anton, Montserrat, sans-serif;
  font-size: 20px;
  font-weight: 400;
}
.terms-help span {
  color: #eee;
  font-size: 10px;
  font-weight: 600;
}
.terms-help a {
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding: 13px 15px;
  border-radius: 4px;
  background: #647526;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
}
.terms-help strong {
  font-size: 20px;
  font-weight: 400;
}
.terms-details__intro {
  margin: 2px 0 22px;
  color: #454740;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.7;
}
.terms-details__content article {
  display: grid;
  grid-template-columns: 63px minmax(0, 1fr);
  gap: 20px;
  padding: 27px 0;
  border-bottom: 1px solid #e3e2db;
}
.terms-details__content article > svg {
  width: 49px;
  height: 49px;
  fill: none;
  stroke: #617126;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.terms-details__content h2 {
  margin: 0 0 11px;
  color: #282a25;
  font-size: 16px;
  font-weight: 900;
}
.terms-details__content ul {
  margin: 0;
  padding-left: 20px;
  color: #52544d;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.8;
}
.terms-details__content li + li {
  margin-top: 3px;
}
@media (max-width: 800px) {
  .terms-details {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 34px 22px 55px;
  }
  .terms-details__nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .terms-details__nav > a {
    padding: 14px;
    font-size: 10px;
  }
  .terms-help {
    grid-column: 1/-1;
  }
  .terms-details__content article {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
  }
  .terms-details__content article > svg {
    width: 43px;
    height: 43px;
  }
  .terms-details__content h2 {
    font-size: 14px;
  }
  .terms-details__content ul {
    font-size: 11px;
  }
}
@media (max-width: 500px) {
  .terms-details__nav {
    grid-template-columns: 1fr;
  }
  .terms-details__content article {
    grid-template-columns: 1fr;
  }
  .terms-details__content article > svg {
    width: 39px;
    height: 39px;
  }
  .terms-details__intro {
    font-size: 12px;
  }
}

@media (min-width: 761px) {
  .terms-banner {
    min-height: 430px;
  }
  .terms-banner__copy {
    padding-top: 72px;
    padding-bottom: 28px;
  }
}

/* Blog explorer: keep the desktop block tight to its visible content. */
@media (min-width: 801px) {
  .blog-explorer {
    padding: 20px 55px 16px;
    align-items: start;
  }
  .blog-featured-story {
    min-height: 300px;
  }
  .blog-featured-story > button {
    width: 62px;
    height: 62px;
    border-width: 3px;
    font-size: 24px;
  }
  .blog-featured-story > div {
    bottom: 19px;
  }
  .blog-featured-story p {
    margin-bottom: 7px;
    font-size: 10px;
  }
  .blog-featured-story h2 {
    margin-bottom: 7px;
    font-size: 18px;
  }
  .blog-featured-story small {
    font-size: 10px;
  }
  .blog-categories {
    padding-right: 22px;
  }
  .blog-categories > h2,
  .blog-categories > i,
  .blog-categories > label {
    display: none !important;
  }
  .blog-categories h3 {
    margin: 10px 0 8px;
  }
  .blog-categories a {
    gap: 12px;
    padding: 5px 3px;
    font-size: 12px;
    line-height: 1.15;
  }
  .blog-categories a span {
    font-size: 17px;
  }
  .blog-popular article:nth-of-type(4) {
    display: none;
  }
  .blog-popular article {
    position: relative;
    grid-template-columns: 104px 1fr;
    gap: 14px;
    margin-bottom: 12px;
  }
  .blog-popular img {
    width: 104px;
    height: 76px;
  }
  .blog-popular h3 {
    margin-bottom: 7px;
    font-size: 14px;
  }
  .blog-popular small {
    font-size: 9px;
  }
  .blog-popular article::after {
    content: "▶";
    position: absolute;
    left: 33px;
    top: 20px;
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: rgba(18, 20, 15, 0.48);
    color: #fff;
    font-size: 12px;
  }
}

/* Latest Blog articles. */
.latest-articles {
  max-width: 1920px;
  margin: 0 auto;
  padding: 34px clamp(32px, 5vw, 88px) 42px;
  background: #fff;
}
.latest-articles__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 0 25px;
}
.latest-articles__heading h2 {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0;
  color: #22241f;
  font-size: 21px;
  font-weight: 900;
}
.latest-articles__heading h2 i {
  display: block;
  width: 42px;
  height: 3px;
  background: #70765b;
}
.latest-articles__heading a {
  color: #5c6c20;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}
.latest-articles__heading a b {
  margin-left: 8px;
  font-size: 21px;
  font-weight: 400;
  vertical-align: -2px;
}
.latest-articles__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px 34px;
}
.latest-articles article {
  overflow: hidden;
  border: 1px solid #e5e4dd;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 3px 8px rgba(24, 26, 17, 0.04);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.latest-articles article:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 25px rgba(24, 26, 17, 0.12);
}
.latest-articles article > img {
  display: block;
  width: 100%;
  height: 165px;
  object-fit: cover;
}
.latest-articles article > div {
  padding: 16px 22px 17px;
}
.latest-articles p {
  margin: 0 0 10px;
  color: #65752a;
  font-size: 10px;
  font-weight: 900;
}
.latest-articles h3 {
  min-height: 47px;
  margin: 0 0 12px;
  color: #252721;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.28;
}
.latest-articles small {
  color: #65665f;
  font-size: 11px;
  font-weight: 600;
}
.latest-articles small i {
  margin: 0 12px;
  font-style: normal;
}
@media (max-width: 1100px) {
  .latest-articles__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .latest-articles {
    padding: 30px 18px 36px;
  }
  .latest-articles__heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 20px;
  }
  .latest-articles__heading h2 {
    font-size: 18px;
  }
  .latest-articles__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .latest-articles article > img {
    height: 205px;
  }
  .latest-articles article > div {
    padding: 18px 19px;
  }
  .latest-articles h3 {
    min-height: 0;
    font-size: 18px;
  }
}

/* Blog video channel section. */
.wild-videos {
  display: grid;
  grid-template-columns: 1.45fr 0.95fr 0.9fr;
  max-width: 1920px;
  margin: 0 auto 38px;
  overflow: hidden;
  border: 1px solid #e6e5df;
  border-radius: 13px;
  background: #fff;
}
.wild-videos__intro {
  padding: 27px 36px 28px;
}
.wild-videos h2 {
  margin: 0;
  color: #22241f;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.32;
}
.wild-videos__intro h2 {
  display: flex;
  align-items: center;
  gap: 16px;
}
.wild-videos__intro h2 i {
  display: block;
  width: 53px;
  height: 3px;
  background: #747a62;
}
.wild-videos__intro > p {
  margin: 19px 0 25px;
  color: #555750;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.65;
}
.wild-videos__feature {
  position: relative;
  display: block;
  height: 320px;
  overflow: hidden;
  border-radius: 8px;
  background: #171914;
}
.wild-videos__feature > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.wild-videos__feature::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.78));
}
.wild-videos__feature > b {
  position: absolute;
  z-index: 1;
  top: 47%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border: 5px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 35px;
  transform: translate(-50%, -50%);
}
.wild-videos__feature > span {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 38px;
  left: 22px;
  height: 4px;
  background: linear-gradient(
    90deg,
    #c0362a 0 42%,
    rgba(255, 255, 255, 0.55) 42%
  );
}
.wild-videos__feature > small {
  position: absolute;
  z-index: 2;
  bottom: 13px;
  left: 23px;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}
.wild-videos__list {
  display: grid;
  align-content: center;
  gap: 26px;
  padding: 36px;
}
.wild-videos__list a {
  display: grid;
  grid-template-columns: 168px 1fr;
  gap: 22px;
  align-items: center;
  color: #252721;
  text-decoration: none;
}
.wild-videos__list a > span {
  position: relative;
  height: 111px;
  overflow: hidden;
  border-radius: 7px;
  background: #1a1b15;
}
.wild-videos__list img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wild-videos__list a > span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 7, 4, 0.22);
}
.wild-videos__list b {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border: 3px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 17px;
  transform: translate(-50%, -50%);
}
.wild-videos__list strong {
  display: block;
  font-size: 15px;
  line-height: 1.4;
}
.wild-videos__list small {
  display: block;
  margin-top: 12px;
  color: #686962;
  font-size: 12px;
  font-weight: 600;
}
.wild-videos__channel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 35px 28px;
  border-left: 1px solid #e5e4dd;
  text-align: center;
}
.wild-videos__channel > b {
  display: grid;
  place-items: center;
  width: 94px;
  height: 94px;
  margin-bottom: 27px;
  border: 4px solid #ecebe5;
  border-radius: 50%;
  color: #637329;
  font-size: 30px;
}
.wild-videos__channel h2 {
  font-size: 24px;
}
.wild-videos__channel p {
  margin: 25px 0 28px;
  color: #54564f;
  font-size: 13px;
  line-height: 1.65;
}
.wild-videos__channel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 285px);
  padding: 16px 21px;
  border-radius: 5px;
  background: #5c6d1c;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}
.wild-videos__channel a strong {
  font-size: 22px;
  font-weight: 400;
}
@media (max-width: 1250px) {
  .wild-videos {
    grid-template-columns: 1.3fr 1fr;
  }
  .wild-videos__channel {
    grid-column: 1 / -1;
    flex-direction: row;
    gap: 24px;
    padding: 28px;
    border-top: 1px solid #e5e4dd;
    border-left: 0;
  }
  .wild-videos__channel > b {
    width: 60px;
    height: 60px;
    margin: 0;
    font-size: 20px;
  }
  .wild-videos__channel h2 {
    font-size: 20px;
  }
  .wild-videos__channel p {
    margin: 0;
  }
  .wild-videos__channel a {
    width: 220px;
  }
}
@media (max-width: 800px) {
  .wild-videos {
    grid-template-columns: 1fr;
    margin-bottom: 28px;
  }
  .wild-videos__intro {
    padding: 28px 22px;
  }
  .wild-videos__feature {
    height: 260px;
  }
  .wild-videos__list {
    padding: 24px 22px;
  }
  .wild-videos__channel {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px 22px;
    text-align: left;
  }
  .wild-videos__channel p {
    margin: 0;
  }
  .wild-videos__channel a {
    width: min(100%, 280px);
  }
}
@media (max-width: 500px) {
  .wild-videos__intro h2 {
    gap: 9px;
    font-size: 19px;
  }
  .wild-videos__intro h2 i {
    width: 34px;
  }
  .wild-videos__intro > p {
    font-size: 12px;
  }
  .wild-videos__feature {
    height: 205px;
  }
  .wild-videos__feature > b {
    width: 62px;
    height: 62px;
    border-width: 3px;
    font-size: 25px;
  }
  .wild-videos__list a {
    grid-template-columns: 118px 1fr;
    gap: 15px;
  }
  .wild-videos__list a > span {
    height: 80px;
  }
  .wild-videos__list strong {
    font-size: 13px;
  }
  .wild-videos__list small {
    margin-top: 6px;
    font-size: 10px;
  }
}

/* Blog motion effects. */
.blog-page .blog-featured-story img,
.blog-page .latest-articles img,
.blog-page .wild-videos__feature img,
.blog-page .wild-videos__list img,
.blog-page .inquiry-image img {
  transition:
    transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.35s ease;
}
.blog-page .blog-featured-story:hover img,
.blog-page .latest-articles article:hover img,
.blog-page .wild-videos__feature:hover img,
.blog-page .wild-videos__list a:hover img,
.blog-page .inquiry-image:hover img {
  transform: scale(1.055);
  filter: saturate(1.08);
}
.blog-page .wild-videos__list a {
  transition:
    transform 0.22s ease,
    color 0.22s ease;
}
.blog-page .wild-videos__list a:hover {
  color: #5d7021;
  transform: translateX(5px);
}
.blog-page .wild-videos__channel a {
  transition:
    transform 0.22s ease,
    filter 0.22s ease,
    box-shadow 0.22s ease;
}
.blog-page .wild-videos__channel a:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
  box-shadow: 0 10px 20px rgba(43, 53, 12, 0.2);
}
.has-reveals .reveal.is-visible .latest-articles__grid article,
.has-reveals .reveal.is-visible .wild-videos__list a {
  animation: card-in 0.52s both;
}
.has-reveals .reveal.is-visible .latest-articles__grid article:nth-child(2) {
  animation-delay: 0.07s;
}
.has-reveals .reveal.is-visible .latest-articles__grid article:nth-child(3) {
  animation-delay: 0.14s;
}
.has-reveals .reveal.is-visible .latest-articles__grid article:nth-child(4) {
  animation-delay: 0.21s;
}
.has-reveals .reveal.is-visible .latest-articles__grid article:nth-child(5) {
  animation-delay: 0.28s;
}
.has-reveals .reveal.is-visible .latest-articles__grid article:nth-child(6) {
  animation-delay: 0.35s;
}
.has-reveals .reveal.is-visible .latest-articles__grid article:nth-child(7) {
  animation-delay: 0.42s;
}
.has-reveals .reveal.is-visible .latest-articles__grid article:nth-child(8) {
  animation-delay: 0.49s;
}
.has-reveals .reveal.is-visible .wild-videos__list a:nth-child(2) {
  animation-delay: 0.1s;
}
.has-reveals .reveal.is-visible .wild-videos__list a:nth-child(3) {
  animation-delay: 0.2s;
}

/* Blog responsive refinements. */
@media (max-width: 900px) {
  .blog-page {
    overflow-x: clip;
  }
  .blog-banner__copy {
    padding-left: 72px;
  }
  .blog-explorer {
    gap: 26px;
  }
  .latest-articles {
    padding-inline: 30px;
  }
  .latest-articles__grid {
    gap: 22px;
  }
  .latest-articles article > img {
    height: 150px;
  }
  .wild-videos {
    margin-right: 20px;
    margin-left: 20px;
  }
  .wild-videos__list {
    gap: 18px;
  }
  .wild-videos__list a {
    grid-template-columns: 125px 1fr;
    gap: 16px;
  }
  .wild-videos__list a > span {
    height: 88px;
  }
  .inquiry-section {
    margin-bottom: 36px;
  }
}
@media (max-width: 600px) {
  .blog-banner {
    min-height: 430px;
  }
  .blog-banner__copy {
    padding: 58px 22px 38px;
  }
  .blog-banner__copy h1 {
    font-size: clamp(42px, 13vw, 58px);
  }
  .blog-banner__copy p {
    margin-top: 20px;
    font-size: 12px;
  }
  .blog-explorer {
    padding: 25px 18px 28px;
  }
  .blog-featured-story {
    min-height: 285px;
  }
  .blog-featured-story h2 {
    font-size: 18px;
  }
  .latest-articles {
    padding-inline: 18px;
  }
  .latest-articles article > img {
    height: 190px;
  }
  .wild-videos {
    margin-right: 18px;
    margin-left: 18px;
    border-radius: 10px;
  }
  .wild-videos__intro > p br,
  .wild-videos__channel p br {
    display: none;
  }
  .inquiry-image img {
    height: 210px;
  }
  .inquiry-contact-bar p {
    justify-content: center;
    font-size: 11px;
    text-align: center;
  }
}

/* Contact hero uses the standard desktop banner height. */
.contact-hero {
  min-height: 430px;
}

/* Tour banner */
.tour-banner { position: relative; isolation: isolate; min-height: 430px; display: grid; grid-template-columns: minmax(0, 1.36fr) minmax(300px, .64fr); overflow: hidden; background: #fbf9f3; }
.tour-banner::before { content: "01"; position: absolute; z-index: -1; top: -74px; left: 49%; color: rgba(91, 101, 24, .08); font-family: Anton, sans-serif; font-size: 410px; line-height: 1; }
.tour-banner__copy { grid-column: 1; align-self: center; max-width: 720px; padding: 36px clamp(32px, 8vw, 150px); }
.tour-banner__label { display: inline-block; margin-bottom: 12px; padding: 5px 10px; border: 1px solid #5b6518; color: #5b6518; font-size: 9px; font-weight: 900; letter-spacing: 1px; }
.tour-banner h1 { margin: 0; color: #050505; font-family: Anton, Montserrat, sans-serif; font-size: clamp(44px, 4.6vw, 70px); font-weight: 400; line-height: 1; letter-spacing: .4px; }.tour-banner h1 em { color: #5b6518; font-style: normal; }
.tour-banner__facts { display: flex; flex-wrap: wrap; margin: 20px 0 17px; }.tour-banner__facts span { display: inline-flex; align-items: center; gap: 8px; padding: 0 16px; color: #5b6518; font-size: 17px; }.tour-banner__facts span:first-child { padding-left: 0; }.tour-banner__facts span + span { border-left: 1px solid #d9d9d1; }.tour-banner__facts b { color: #45484a; font-size: 10px; font-weight: 800; white-space: nowrap; }
.tour-banner__copy > p { max-width: 570px; margin: 0; color: #55574f; font-size: 12px; font-weight: 500; line-height: 1.75; }
.tour-banner__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }.tour-banner__actions a { display: inline-flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 44px; padding: 0 16px; border: 1px solid #7b7c72; color: #272922; font-size: 10px; font-weight: 900; text-decoration: none; }.tour-banner__actions a:first-child { border-color: #5b6518; background: #5b6518; color: #fff; }.tour-banner__actions b { font-size: 19px; font-weight: 400; }
.tour-banner__image { grid-column: 2; grid-row: 1; z-index: 1; min-height: 382px; margin: 24px 28px 24px 0; clip-path: polygon(14% 0, 100% 0, 100% 88%, 84% 100%, 0 100%, 0 13%); background: url("../images/bandhavgarh-tiger.jpg") 50% 65%/cover no-repeat; box-shadow: -16px 16px 0 #e0e6bd; }
@media (max-width: 800px) { .tour-banner { grid-template-columns: 1fr; }.tour-banner::before { top: 170px; left: 30%; font-size: 300px; }.tour-banner__copy { grid-column: auto; order: 2; max-width: none; padding: 48px 28px; }.tour-banner__image { grid-column: auto; grid-row: auto; order: 1; min-height: 330px; margin: 20px 20px 0; background: url("../images/bandhavgarh-tiger.jpg") 50% 70%/cover no-repeat; }.tour-banner h1 { font-size: clamp(45px, 12vw, 68px); } }
@media (max-width: 480px) { .tour-banner__facts { display: grid; gap: 14px; }.tour-banner__facts span, .tour-banner__facts span:first-child { padding: 0; }.tour-banner__facts span + span { border-left: 0; }.tour-banner__actions a { width: 100%; }.tour-banner__actions { gap: 10px; } }

.tour-info-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; max-width: 1240px; margin: 34px auto 58px; padding: 28px 18px; border-radius: 18px; background: #fff; box-shadow: 0 8px 30px rgba(42, 49, 24, .1); position: relative; }
.tour-info-strip article { min-height: 134px; padding: 3px 16px; border-right: 1px solid #e4e4dc; text-align: center; }.tour-info-strip article:last-child { border-right: 0; }
.tour-info-strip svg { width: 38px; height: 38px; margin-bottom: 8px; fill: none; stroke: #5b6518; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }.tour-info-strip h3 { margin: 0; color: #2f312a; font-size: 10px; font-weight: 900; }.tour-info-strip p { margin: 10px 0 0; color: #64665d; font-size: 11px; font-weight: 500; line-height: 1.55; }
@media (max-width: 850px) { .tour-info-strip { grid-template-columns: repeat(3, 1fr); margin: 20px; }.tour-info-strip article:nth-child(3) { border-right: 0; }.tour-info-strip article:nth-child(-n+3) { border-bottom: 1px solid #e4e4dc; padding-bottom: 20px; }.tour-info-strip article:nth-child(n+4) { padding-top: 20px; } }
@media (max-width: 500px) { .tour-info-strip { grid-template-columns: repeat(2, 1fr); margin: 14px; padding: 12px; }.tour-info-strip article { min-height: 125px; border-right: 1px solid #e4e4dc; border-bottom: 1px solid #e4e4dc; padding: 14px 6px; }.tour-info-strip article:nth-child(2n) { border-right: 0; }.tour-info-strip article:nth-child(n+5) { border-bottom: 0; }.tour-info-strip article:nth-child(-n+3) { padding-bottom: 14px; }.tour-info-strip article:nth-child(n+4) { padding-top: 14px; } }

.tour-overview { display: grid; grid-template-columns: minmax(245px, .64fr) minmax(0, 1.36fr); gap: 42px; max-width: 1240px; margin: 0 auto 78px; padding: 0 28px; align-items: center; }.tour-overview__copy { padding: 18px 0; }.tour-overview__eyebrow { margin: 0; color: #171813; font-family: Anton, Montserrat, sans-serif; font-size: 27px; letter-spacing: .5px; }.tour-overview__paw { display: flex; align-items: center; gap: 12px; margin: 14px 0 23px; color: #5b6518; }.tour-overview__paw i { display: block; width: 58px; height: 2px; background: #9ca46f; }.tour-overview__paw span { font-size: 20px; }.tour-overview__copy > p:last-of-type { margin: 0; color: #585a53; font-size: 13px; line-height: 1.85; }.tour-overview__copy ul { display: grid; gap: 15px; margin: 28px 0 0; padding: 0; list-style: none; }.tour-overview__copy li { color: #4d5048; font-size: 13px; font-weight: 600; }.tour-overview__copy li::before { content: "✓"; margin-right: 14px; color: #5b6518; font-size: 17px; font-weight: 900; }
.tour-overview__visual { position: relative; height: 385px; overflow: visible; border: 1px solid #deddd5; border-radius: 16px; background: #352d1c; }.tour-overview__visual img { display: block; width: 100%; height: 100%; border-radius: 15px; object-fit: cover; object-position: 50% 77%; }.tour-overview__arrow { position: absolute; top: 50%; z-index: 1; display: grid; width: 58px; height: 58px; place-items: center; border: 1px solid #e2e2dc; border-radius: 50%; background: #fff; color: #5b6518; box-shadow: 0 3px 10px rgba(22, 24, 15, .14); font-size: 50px; font-weight: 300; line-height: 1; transform: translateY(-50%); }.tour-overview__arrow--previous { left: -29px; }.tour-overview__arrow--next { right: -29px; }.tour-overview__caption, .tour-overview__rating { position: absolute; bottom: 22px; padding: 13px 17px; border: 1px solid rgba(255,255,255,.22); border-radius: 8px; background: rgba(29, 31, 18, .76); color: #fff; backdrop-filter: blur(3px); }.tour-overview__caption { left: 22px; }.tour-overview__rating { right: 22px; }.tour-overview__caption b, .tour-overview__caption span, .tour-overview__rating b, .tour-overview__rating span { display: block; }.tour-overview__caption b { font-size: 10px; letter-spacing: .4px; }.tour-overview__caption span, .tour-overview__rating span { margin-top: 5px; color: #ededdf; font-size: 10px; }.tour-overview__rating b { color: #e7e99e; font-size: 15px; }.tour-overview__rating { text-align: center; }
@media (max-width: 850px) { .tour-overview { grid-template-columns: 1fr; gap: 25px; margin-bottom: 55px; }.tour-overview__visual { height: 400px; }.tour-overview__copy { padding: 0; } }
@media (max-width: 500px) { .tour-overview { margin-bottom: 42px; padding: 0 20px; }.tour-overview__visual { height: 300px; }.tour-overview__arrow { width: 44px; height: 44px; font-size: 37px; }.tour-overview__arrow--previous { left: -16px; }.tour-overview__arrow--next { right: -16px; }.tour-overview__caption { bottom: 13px; left: 13px; max-width: 180px; padding: 10px; }.tour-overview__rating { right: 13px; bottom: 13px; padding: 10px; }.tour-overview__caption span { display: none; } }

.tour-itinerary { display: grid; grid-template-columns: minmax(0, 1.48fr) minmax(240px, .78fr) minmax(230px, .75fr); gap: 20px; max-width: 1240px; margin: 0 auto 60px; padding: 26px; border: 1px solid #dfded4; border-radius: 18px; }.tour-itinerary__eyebrow { margin: 0; color: #171813; font-family: Anton, Montserrat, sans-serif; font-size: 24px; letter-spacing: .5px; }.tour-itinerary__paw { display: flex; align-items: center; gap: 10px; margin: 10px 0 18px; color: #5b6518; }.tour-itinerary__paw i { display: block; width: 48px; height: 2px; background: #9ca46f; }.tour-itinerary__paw span { font-size: 17px; }
.tour-itinerary__days article { position: relative; display: grid; grid-template-columns: 94px 46px 1fr; gap: 12px; min-height: 88px; }.tour-itinerary__days article:not(:last-child)::after { content: ""; position: absolute; top: 42px; bottom: -6px; left: 116px; width: 1px; background: #d6d7cc; }.tour-itinerary__days article > b { padding-top: 7px; color: #5b6518; font-size: 15px; }.tour-itinerary__day-icon { z-index: 1; display: grid; width: 40px; height: 40px; place-items: center; border-radius: 6px; background: #5b6518; color: #fff; font-size: 18px; font-weight: 700; }.tour-itinerary__days h3 { margin: 5px 0 5px; color: #292b25; font-size: 12px; }.tour-itinerary__days p { max-width: 420px; margin: 0; color: #666860; font-size: 11px; line-height: 1.6; }
.tour-itinerary__highlights, .tour-itinerary__details { min-height: 100%; padding: 25px 25px; border-radius: 13px; }.tour-itinerary h2 { margin: 0; font-family: Anton, Montserrat, sans-serif; font-size: 21px; font-weight: 400; }.tour-itinerary__highlights { background: #f2f1e9; }.tour-itinerary__highlights h2 { color: #252720; }.tour-itinerary__highlights ul { display: grid; gap: 17px; margin: 26px 0 0; padding: 0; list-style: none; }.tour-itinerary__highlights li { display: flex; align-items: center; gap: 13px; color: #444640; font-size: 12px; font-weight: 700; }.tour-itinerary__highlights li span { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; background: #e8e7db; color: #5b6518; font-size: 18px; }
.tour-itinerary__details { background: #404a13; color: #fff; }.tour-itinerary__details h2 { color: #fff; }.tour-itinerary__details dl { display: grid; gap: 17px; margin: 26px 0 0; }.tour-itinerary__details dl div { display: grid; gap: 5px; }.tour-itinerary__details dt { color: #e1e5b8; font-size: 9px; font-weight: 900; }.tour-itinerary__details dd { margin: 0; color: #fff; font-size: 11px; font-weight: 600; line-height: 1.4; }
@media (max-width: 1000px) { .tour-itinerary { grid-template-columns: 1fr 1fr; margin-right: 20px; margin-left: 20px; }.tour-itinerary__days { grid-column: 1 / -1; }.tour-itinerary__days p { max-width: 640px; } }
@media (max-width: 620px) { .tour-itinerary { grid-template-columns: 1fr; margin-right: 14px; margin-bottom: 52px; margin-left: 14px; padding: 18px; }.tour-itinerary__days { grid-column: auto; }.tour-itinerary__days article { grid-template-columns: 72px 48px 1fr; gap: 10px; }.tour-itinerary__days article:not(:last-child)::after { left: 95px; }.tour-itinerary__days article > b { font-size: 13px; }.tour-itinerary__highlights, .tour-itinerary__details { padding: 27px 24px; }.tour-itinerary__highlights ul { gap: 18px; margin-top: 28px; }.tour-itinerary__details dl { gap: 20px; margin-top: 28px; } }

.tour-inclusions { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .92fr) minmax(320px, 1.05fr); gap: 42px; max-width: 1240px; margin: 0 auto 38px; padding: 0 28px; }.tour-inclusions h2 { margin: 0; color: #1c1e18; font-family: Anton, Montserrat, sans-serif; font-size: 23px; font-weight: 400; }.tour-inclusions__list ul { display: grid; gap: 15px; margin: 27px 0 0; padding: 0; list-style: none; }.tour-inclusions__list li { position: relative; padding-left: 30px; color: #53554e; font-size: 12px; font-weight: 600; line-height: 1.45; }.tour-inclusions__list li::before { content: "✓"; position: absolute; left: 0; top: -2px; color: #5b6518; font-size: 19px; font-weight: 900; }.tour-inclusions__list--excluded li::before { content: "×"; top: -4px; font-size: 24px; font-weight: 500; }
.tour-inclusions__season { position: relative; min-height: 310px; overflow: hidden; border: 1px solid #dfded4; border-radius: 16px; background: linear-gradient(180deg, rgba(250,249,242,.96) 0%, rgba(250,249,242,.82) 46%, rgba(250,249,242,.05) 100%), url("../images/gallery-stag-banner.png") center/cover; }.tour-inclusions__season > div { position: relative; z-index: 1; max-width: 350px; padding: 35px 42px; }.tour-inclusions__season h2 { font-size: 24px; }.tour-inclusions__season strong { display: block; margin-top: 17px; color: #32342d; font-size: 13px; }.tour-inclusions__season p { margin: 18px 0 0; color: #595b53; font-size: 12px; font-weight: 500; line-height: 1.8; }
@media (max-width: 950px) { .tour-inclusions { grid-template-columns: 1fr 1fr; gap: 28px; }.tour-inclusions__season { grid-column: 1 / -1; min-height: 260px; background-position: center 60%; } }
@media (max-width: 620px) { .tour-inclusions { grid-template-columns: 1fr; gap: 34px; margin-bottom: 55px; padding: 0 24px; }.tour-inclusions__season { grid-column: auto; min-height: 300px; }.tour-inclusions__season > div { padding: 28px; }.tour-inclusions__list ul { gap: 13px; margin-top: 20px; } }

.tour-gallery { width: 100vw; max-width: none; margin: 0 0 82px calc(50% - 50vw); padding: 32px clamp(24px, 4.8vw, 98px) 44px; background: #faf9f4; }.tour-gallery__heading { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 30px; }.tour-gallery h2 { margin: 0; color: #5b6518; font-size: 14px; font-weight: 900; letter-spacing: .8px; }.tour-gallery__heading > a { color: #22231e; font-size: 11px; font-weight: 900; text-decoration: none; }.tour-gallery__heading > a b { margin-left: 10px; color: #5b6518; font-size: 18px; font-weight: 400; }.tour-gallery__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px; }.tour-gallery__grid a { display: grid; grid-template-rows: 350px 1fr; overflow: hidden; border-radius: 20px; background: #191a17; color: #fff; text-decoration: none; }.tour-gallery__grid img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }.tour-gallery__grid a:hover img { transform: scale(1.05); }.tour-gallery__grid > a > span { display: block; min-height: 190px; padding: 28px 27px; }.tour-gallery__grid small { color: #b8c375; font-size: 11px; font-weight: 900; letter-spacing: .5px; }.tour-gallery__grid h3 { margin: 12px 0 9px; color: #fff; font-family: Anton, Montserrat, sans-serif; font-size: 27px; font-weight: 400; line-height: 1.05; }.tour-gallery__grid p { margin: 0; color: #d2d2cb; font-size: 13px; }.tour-gallery__grid time { display: block; margin-top: 25px; color: #8f9189; font-size: 11px; font-weight: 500; }.tour-gallery__grid a:nth-child(1) img { object-position: center; }.tour-gallery__grid a:nth-child(2) img { object-position: center; }.tour-gallery__grid a:nth-child(3) img { object-position: center; }.tour-gallery__grid a:nth-child(4) img { object-position: center; }
@media (max-width: 1000px) { .tour-gallery__grid { grid-template-columns: repeat(2, 1fr); }.tour-gallery__grid a { grid-template-rows: 300px 1fr; } }
@media (max-width: 560px) { .tour-gallery { margin-bottom: 55px; padding: 28px 20px 35px; }.tour-gallery__heading { margin-bottom: 20px; }.tour-gallery__grid { grid-template-columns: 1fr; gap: 18px; }.tour-gallery__grid a { grid-template-rows: 245px 1fr; border-radius: 14px; }.tour-gallery__grid > a > span { min-height: 160px; padding: 22px; }.tour-gallery__grid h3 { font-size: 24px; } }

.tour-enquiry { --tour-enquiry-bg: #f4f3eb; position: relative; display: grid; grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr); gap: 38px; max-width: 1240px; margin: 0 auto 82px; padding: 24px; overflow: hidden; border: 1px solid #dfded4; border-radius: 18px; background: var(--tour-enquiry-bg); }.tour-enquiry::before { content: ""; position: absolute; inset: auto auto 0 0; width: 42%; height: 100%; opacity: .12; background: url("../images/about-safari-jeep.png") center bottom/cover no-repeat; }.tour-enquiry__intro { position: relative; z-index: 1; align-self: center; padding: 26px 20px 26px 10px; }.tour-enquiry__intro > p { margin: 0 0 18px; color: #5b6518; font-size: 11px; font-weight: 900; letter-spacing: .8px; }.tour-enquiry h2 { margin: 0; color: #161713; font-family: Anton, Montserrat, sans-serif; font-size: clamp(32px, 3.25vw, 48px); font-weight: 400; line-height: 1.12; }.tour-enquiry__intro > span { display: block; max-width: 410px; margin-top: 24px; color: #56584f; font-size: 13px; font-weight: 500; line-height: 1.8; }.tour-enquiry address { display: grid; gap: 15px; margin-top: 34px; font-style: normal; }.tour-enquiry address a, .tour-enquiry address span { color: #474941; font-size: 12px; font-weight: 700; text-decoration: none; }
.tour-enquiry__form { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 17px 24px; margin-left: 10px; padding: 28px 34px; border-radius: 15px; background: var(--tour-enquiry-bg); box-shadow: none; }.tour-enquiry__form label { display: grid; gap: 7px; color: #35372f; font-size: 10px; font-weight: 800; }.tour-enquiry__form input, .tour-enquiry__form select, .tour-enquiry__form textarea { width: 100%; min-height: 48px; padding: 0 13px; border: 1px solid #dfded6; border-radius: 7px; outline-color: #5b6518; color: #3e4038; font: 500 12px Montserrat, Arial, sans-serif; background: #fff; }.tour-enquiry__form textarea { min-height: 92px; padding-top: 12px; resize: vertical; }.tour-enquiry__message { grid-column: 1 / -1; }.tour-enquiry__form button { grid-column: 1 / -1; display: flex; align-items: center; justify-content: center; gap: 28px; min-height: 55px; border: 0; border-radius: 7px; background: #5b6518; color: #fff; font-size: 12px; font-weight: 900; cursor: pointer; }.tour-enquiry__form button b { font-size: 25px; font-weight: 400; }
@media (max-width: 800px) { .tour-enquiry { grid-template-columns: 1fr; margin-right: 20px; margin-left: 20px; }.tour-enquiry::before { width: 100%; height: 45%; }.tour-enquiry__intro { padding: 20px; }.tour-enquiry__form { padding: 24px; } }
@media (max-width: 520px) { .tour-enquiry { margin-right: 14px; margin-bottom: 55px; margin-left: 14px; padding: 12px; }.tour-enquiry__intro { padding: 18px 10px; }.tour-enquiry__form { grid-template-columns: 1fr; gap: 14px; padding: 20px; }.tour-enquiry__message, .tour-enquiry__form button { grid-column: auto; }.tour-enquiry h2 { font-size: 34px; } }

.expeditions-hero { min-height: 430px; display: grid; grid-template-columns: minmax(0, .82fr) minmax(420px, 1.18fr); overflow: hidden; background: #f7f4e9; }.expeditions-hero__copy { align-self: center; padding: 48px clamp(38px, 7vw, 135px); }.expeditions-hero__copy > p:first-child { margin: 0 0 20px; color: #5b6518; font-size: 12px; font-weight: 900; letter-spacing: .7px; }.expeditions-hero h1 { margin: 0; color: #131410; font-family: Anton, Montserrat, sans-serif; font-size: clamp(54px, 6.1vw, 92px); font-weight: 400; line-height: .94; letter-spacing: .3px; }.expeditions-hero h1 span { color: #5b6518; }.expeditions-hero__copy > p:last-child { margin: 24px 0 0; color: #5a5c54; font-size: 14px; font-weight: 500; line-height: 1.8; }.expeditions-hero__image { min-height: 430px; background: linear-gradient(90deg, #f7f4e9 0%, rgba(247,244,233,0) 16%), url("../images/about-safari-jeep.png") 50% 74%/cover no-repeat; }
@media (max-width: 760px) { .expeditions-hero { grid-template-columns: 1fr; }.expeditions-hero__copy { order: 2; padding: 42px 28px; }.expeditions-hero__image { order: 1; min-height: 310px; background-position: 50% 72%; }.expeditions-hero h1 { font-size: clamp(50px, 13vw, 75px); } }

/* Expeditions hero follows the shared index-page hero layout. */
.hero.expeditions-hero { display: flex; min-height: 430px; padding-left: clamp(90px, 11vw, 150px); background: #fff; }.hero.expeditions-hero::after { inset: 0 0 0 43%; background: url("../images/about-safari-jeep.png") 50% 74%/cover no-repeat; }.hero.expeditions-hero::before { inset: 0 40% 0 31%; background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.88) 32%, transparent 100%); }.hero.expeditions-hero .copy { width: 550px; max-width: calc(100vw - 150px); }.hero.expeditions-hero .copy h1 { font-family: Anton, Montserrat, sans-serif; font-size: clamp(48px, 4.65vw, 68px); font-weight: 400; line-height: 1.02; letter-spacing: .2px; }.hero.expeditions-hero .copy .eyebrow { color: #555d25; }.hero.expeditions-hero .copy h1 span { color: #5a601d; }.hero.expeditions-hero .copy .hero-description { max-width: 390px; }
@media (max-width: 760px) { .hero.expeditions-hero { display: flex; min-height: 520px; padding: 280px 28px 40px; align-items: flex-end; }.hero.expeditions-hero::after { inset: 0 0 auto; height: 300px; background-position: 50% 72%; }.hero.expeditions-hero::before { inset: 230px 0 auto; height: 100px; background: linear-gradient(180deg, transparent, #fff); }.hero.expeditions-hero .copy { max-width: none; } }

.expedition-catalogue{display:grid;grid-template-columns:250px 1fr;gap:26px;width:100%;max-width:none;margin:55px auto 80px;padding:0 clamp(24px,4.8vw,98px)}.expedition-filters{padding:16px;border:1px solid #deded5;border-radius:7px}.expedition-filters__title{display:flex;justify-content:space-between;align-items:center}.expedition-filters h2,.expedition-filters legend{font-family:Anton,Montserrat,sans-serif;font-weight:400}.expedition-filters h2{margin:0;font-size:17px}.expedition-filters fieldset{margin:20px 0 0;padding:0;border:0}.expedition-filters legend{margin-bottom:10px;font-size:12px}.expedition-filters label{display:flex;align-items:center;gap:7px;margin:8px 0;font-size:10px;color:#55564e}.expedition-filters label b{margin-left:auto;font-size:9px;font-weight:600}.expedition-filters input{accent-color:#59651b}.expedition-filters button{width:100%;margin-top:22px;padding:10px;border:1px solid #6c7449;background:#fff;color:#4b5420;font-size:9px;font-weight:900}.expedition-range{display:flex;align-items:center;gap:7px;font-size:9px}.expedition-range i{height:2px;flex:1;background:#59651b}.expedition-cards{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}.expedition-cards article{overflow:hidden;border:1px solid #deded5;border-radius:7px;background:#fff}.expedition-cards article>div{position:relative;height:128px}.expedition-cards img{width:100%;height:100%;object-fit:cover}.expedition-cards small{position:absolute;top:8px;left:8px;padding:3px 5px;border-radius:3px;background:#4f5b1a;color:#fff;font-size:6px;font-weight:900}.expedition-cards article>div>b{position:absolute;top:7px;right:8px;color:#fff;font-size:19px}.expedition-cards h3{margin:8px 9px 5px;font-family:Anton,Montserrat,sans-serif;font-size:16px;font-weight:400;line-height:1}.expedition-cards p,.expedition-cards span{display:block;margin:0 9px;color:#5d5e56;font-size:7px;line-height:1.8}.expedition-cards strong{display:block;margin:7px 9px;color:#383a32;font-size:12px}.expedition-cards strong i{font-size:7px;font-style:normal;font-weight:500}.expedition-cards a{display:block;margin:0 9px 9px;padding:8px;background:#526018;color:#fff;text-align:center;text-decoration:none;font-size:7px;font-weight:900}@media(max-width:850px){.expedition-catalogue{grid-template-columns:1fr}.expedition-filters{display:none}.expedition-cards{grid-template-columns:repeat(2,1fr)}}@media(max-width:520px){.expedition-cards{grid-template-columns:1fr}.expedition-catalogue{margin-top:30px}}

/* Compact expedition cards use the same image-and-dark-panel treatment. */
.expedition-cards{align-items:start;gap:22px}.expedition-cards article{height:370px;overflow:hidden;border:1px solid #deded5;border-radius:10px;background:#fff;color:#292b25}.expedition-cards article>div{height:155px}.expedition-cards article>div>small{display:block;top:10px;left:10px;padding:5px 7px;border-radius:4px;background:#526018;color:#fff;font-size:7px}.expedition-cards article>div>b{display:block;top:8px;right:10px;color:#fff;font-size:25px;text-shadow:0 1px 2px #111}.expedition-cards h3{margin:13px 14px 8px;color:#252720;font-size:21px;line-height:1.02}.expedition-cards p,.expedition-cards span{margin:0 14px;color:#5b5d55;font-size:10px;line-height:1.75}.expedition-cards span{margin-top:4px}.expedition-cards strong{margin:10px 14px;color:#30322b;font-size:17px}.expedition-cards strong i{color:#64665e;font-size:9px}.expedition-cards a{display:block;margin:0 14px 13px;padding:10px;border-radius:4px;background:#526018;color:#fff;text-align:center;text-decoration:none;font-size:8px;font-weight:900}.expedition-cards img{object-position:center}.expedition-cards article:first-child img{object-position:50% 72%}

.expedition-filters h2 { font-size: 23px; }
.expedition-filters h2 { color: #5b6518; }

/* Shared desktop banner height across site pages. */
@media (min-width: 761px) {
  .hero,
  .contact-hero,
  .workshops-hero,
  .about-page .story-hero,
  .gallery-page .gallery-hero,
  .hero.expeditions-hero,
  .terms-banner {
    min-height: 430px !important;
  }
  .legal-hero {
    min-height: 430px;
    display: grid;
    align-content: center;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.expedition-filters label { font-size: 13px; }
.expedition-filters label b { font-size: 11px; }
.expedition-cards p,
.expedition-cards span { font-size: 12px; }

/* Shared navigation: Expeditions submenu. */
.header nav > ul {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3.1vw, 48px);
  margin: 0;
  padding: 0;
  list-style: none;
}
.header nav > ul > li {
  position: relative;
}
.header nav > ul > li > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.header nav > ul > li > a span {
  color: #69782d;
  font-size: 15px;
  line-height: 0.6;
  transition: transform 0.2s ease;
}
.header nav > ul > li:first-child > a:not(.active):not(.is-active) {
  color: inherit;
}
.header nav > ul > li:first-child > a:not(.active):not(.is-active)::after {
  display: none;
}
.nav-submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 20;
  display: grid;
  width: 225px;
  margin: 0;
  padding: 8px 16px;
  border: 1px solid #e4e2d8;
  border-radius: 7px;
  background: #fffefb;
  list-style: none;
  box-shadow: 0 12px 24px rgba(20, 22, 14, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 0);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}
.nav-submenu a {
  display: block;
  padding: 10px 3px;
  color: #363832;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2px;
  white-space: nowrap;
}
.nav-submenu li + li {
  border-top: 1px solid #e9e7df;
}
.nav-submenu a:hover {
  color: #5d7021;
}
.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.nav-dropdown:hover > a span,
.nav-dropdown:focus-within > a span {
  transform: rotate(180deg);
}
@media (max-width: 850px) {
  .header nav.is-open > ul {
    display: grid;
    gap: 0;
  }
  .header nav.is-open > ul > li > a {
    display: flex;
    width: 100%;
  }
  .header nav.is-open .nav-submenu {
    position: static;
    display: grid;
    width: auto;
    margin: 0 0 5px 13px;
    padding: 0 0 0 13px;
    border: 0;
    border-left: 1px solid #dcdacf;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .header nav.is-open .nav-submenu a {
    padding: 9px 0;
    font-size: 10px;
  }
  .header nav.is-open .nav-submenu li + li {
    border-top: 0;
  }
}

/* Unified hero copy typography: identical eyebrow/heading/description across every banner. */
.about-page .hero-copy > .eyebrow,
.contact-hero .copy > .eyebrow,
.workshops-hero .copy > .eyebrow,
.hero.expeditions-hero .copy > .eyebrow,
.gallery-page .gallery-hero__copy > .eyebrow,
.blog-banner__copy > .eyebrow,
main.hero .copy > .eyebrow {
  margin: 0 0 12px;
  color: #555d25;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 1.1px;
}
.about-page .hero-copy > h1,
.contact-hero .copy > h1,
.workshops-hero .copy > h1,
.hero.expeditions-hero .copy > h1,
.gallery-page .gallery-hero__copy > h1,
.tour-banner__copy > h1,
.blog-banner__copy > h1,
main.hero .copy > h1 {
  margin: 0;
  color: #050505;
  font-family: Anton, Montserrat, sans-serif;
  font-weight: 400;
  font-size: clamp(56px, 5.2vw, 76px);
  line-height: 1.02;
  letter-spacing: 0.3px;
  white-space: normal;
}
.about-page .hero-copy > h1 span,
.contact-hero .copy > h1 span,
.workshops-hero .copy > h1 span,
.hero.expeditions-hero .copy > h1 span,
.gallery-page .gallery-hero__copy > h1 span,
.tour-banner__copy > h1 em,
.blog-banner__copy > h1 span,
main.hero .copy > h1 span {
  color: #5a601d;
  font-style: normal;
}
.about-page .hero-copy > p:not(.eyebrow),
.contact-hero .copy > .hero-description,
.workshops-hero .copy > .hero-description,
.hero.expeditions-hero .copy > .hero-description,
.gallery-page .gallery-hero__copy > p.hero-description,
.tour-banner__copy > p:not(.tour-banner__label),
.blog-banner__copy > .hero-description,
main.hero .copy > .hero-description {
  max-width: 400px;
  margin: 17px 0 0;
  color: #53534f;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
}
.about-page .hero-copy .buttons,
.contact-hero .copy .buttons,
.workshops-hero .copy .buttons,
.hero.expeditions-hero .copy .buttons,
.gallery-page .gallery-hero__copy .buttons,
.blog-banner__copy .buttons,
.tour-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}
.about-page .hero-copy .buttons a {
  min-width: 0;
}
.tour-banner__actions a.primary,
.tour-banner__actions a.secondary {
  min-width: 205px;
  min-height: 49px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 20px;
  border-radius: 0;
  font-size: 10px;
  font-weight: 900;
  text-decoration: none;
}
.tour-banner__actions a.primary {
  border: 0;
  color: #fff;
  background: var(--olive);
}
.tour-banner__actions a.secondary {
  border: 2px solid #ddd;
  background: #fff;
  color: var(--ink);
}
.tour-banner__actions a.primary b,
.tour-banner__actions a.secondary b {
  font-size: 19px;
  font-weight: 400;
}

/* Gallery page responsive overrides. Kept last to win over earlier desktop rules. */
@media (max-width: 900px) {
  .gallery-page .gallery-hero {
    min-height: 480px;
    padding: 64px 64px 42px;
  }
  .gallery-page .gallery-hero__stats {
    gap: 14px;
    flex-wrap: wrap;
  }
  .gallery-page .gallery-toolbar {
    margin: 18px 20px 0;
  }
  .gallery-page .gallery-mosaic {
    width: auto;
    margin: 16px 20px 38px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 230px;
  }
  .gallery-page .private-journeys {
    width: auto;
    min-height: 400px;
    margin: 0 20px 40px;
    padding: 48px;
  }
  .gallery-page .tour-showcase {
    margin-right: 20px;
    margin-left: 20px;
  }
}

@media (max-width: 650px) {
  .gallery-page .gallery-hero {
    min-height: 530px;
    align-items: flex-end;
    padding: 245px 24px 30px;
    background-position: 63% center;
  }
  .gallery-page .gallery-hero h1 {
    font-size: clamp(43px, 13vw, 60px);
  }
  .gallery-page .gallery-hero__copy > p:not(:first-child) {
    margin-bottom: 18px;
    font-size: 12px;
  }
  .gallery-page .gallery-hero .buttons {
    display: grid;
    gap: 9px;
    margin-top: 15px;
  }
  .gallery-page .gallery-hero .buttons a {
    width: 100%;
  }
  .gallery-page .gallery-hero__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px 14px;
    margin-top: 18px;
  }
  .gallery-page .gallery-hero__stats span {
    font-size: 19px;
  }
  .gallery-page .gallery-toolbar {
    display: block;
    margin: 14px;
    padding: 12px;
  }
  .gallery-page .gallery-toolbar__categories {
    display: flex;
    flex-wrap: nowrap;
    max-width: none;
    margin: 0 -12px 12px;
    padding: 0 12px 8px;
    overflow-x: auto;
    scrollbar-width: thin;
  }
  .gallery-page .gallery-toolbar__categories button {
    flex: 0 0 auto;
    padding: 9px 10px;
    font-size: 9px;
  }
  .gallery-page .gallery-toolbar__categories button + button {
    border-left: 0;
    padding-left: 10px;
  }
  .gallery-page .gallery-toolbar__categories svg {
    width: 20px;
    height: 20px;
  }
  .gallery-page .gallery-toolbar__sort {
    display: inline-grid;
    width: calc(100% - 98px);
  }
  .gallery-page .gallery-toolbar__views {
    float: right;
  }
  .gallery-page .gallery-mosaic {
    margin: 14px 14px 30px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 155px;
    gap: 8px;
  }
  .gallery-page .mosaic-card--tall {
    grid-row: span 2;
  }
  .gallery-page .mosaic-card--wide {
    grid-column: span 2;
  }
  .gallery-page .mosaic-card h3,
  .gallery-page .mosaic-card--tall h3 {
    font-size: 14px;
  }
  .gallery-page .mosaic-card p {
    font-size: 8px;
  }
  .gallery-page .private-journeys {
    min-height: 420px;
    margin: 0 14px 32px;
    padding: 34px 26px;
    background-position: 62% center;
  }
  .gallery-page .private-journeys h2 {
    font-size: 39px;
  }
  .gallery-page .private-journeys__regions {
    display: none;
  }
  .gallery-page .tour-showcase {
    margin: 0 14px 36px;
  }
  .gallery-page .tour-showcase__cta {
    display: grid;
    grid-template-columns: 1fr;
    max-width: none;
    padding: 26px 20px;
  }
  .gallery-page .tour-showcase__mail {
    width: 58px;
    height: 58px;
  }
  .gallery-page .tour-showcase__cta h2 {
    font-size: 28px;
    line-height: 1.04;
  }
  .gallery-page .tour-showcase__cta .button {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  .gallery-page .tour-showcase__cards {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-page .tour-showcase__cards article {
    height: 220px;
  }
}

/* Compact workshop benefit cards on phones. */
@media (max-width: 650px) {
  .workshop-perks {
    width: auto;
    margin: 0 14px 32px;
    border-radius: 14px;
  }
  .workshop-perks article {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
    padding: 16px;
  }
  .workshop-perks svg {
    width: 42px;
    height: 42px;
  }
  .workshop-perks h3 {
    margin-bottom: 5px;
    font-size: 12px;
    white-space: normal;
  }
  .workshop-perks p {
    font-size: 12px;
    line-height: 1.55;
  }
  .workshop-perks p br {
    display: none;
  }
}

/* Final mobile reservation override. */
@media (max-width: 1020px) {
  .workshops-page .workshop-reserve {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    width: auto !important;
    min-height: 0 !important;
    margin: 30px 14px 42px !important;
  }
  .workshops-page .workshop-reserve__intro,
  .workshops-page .workshop-reserve__benefits {
    grid-column: 1 !important;
    width: auto !important;
  }
  .workshops-page .workshop-reserve__intro {
    padding: 28px 20px !important;
  }
  .workshops-page .workshop-reserve__benefits {
    grid-template-columns: 1fr !important;
    padding: 8px 20px 18px !important;
  }
}
@media (max-width: 650px) {
  .workshops-page .workshop-reserve h2 {
    font-size: clamp(29px, 9vw, 38px) !important;
  }
  .workshops-page .workshop-reserve__intro a {
    width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box;
  }
  .workshops-page .workshop-reserve__benefits article {
    min-height: 76px !important;
    padding: 12px 0 !important;
  }
  .workshops-page .workshop-reserve__benefits p br {
    display: none;
  }
}

/* Final cross-page responsive safeguards. */
@media (max-width: 760px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }
  .header {
    height: auto;
    min-height: 76px;
    padding: 10px 16px;
    gap: 12px;
  }
  .header .brand b { font-size: 22px; }
  .header .brand small { font-size: 7px; }
  .header .brand-logo { width: 48px; height: 48px; }
  .header .book { display: none; }
  .site-footer .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 28px;
  }
  .site-footer .footer-bottom {
    display: grid;
    gap: 14px;
    text-align: center;
  }
  .site-footer .footer-bottom > div {
    justify-content: center;
    flex-wrap: wrap;
  }

  .about-page .story-hero,
  .blog-page .blog-banner,
  .contact-page .contact-hero,
  .legal-hero,
  .terms-banner {
    min-height: 430px !important;
  }
  .about-page .story-hero,
  .blog-page .blog-banner {
    padding: 230px 24px 34px !important;
  }
  .about-page .hero-copy,
  .blog-page .blog-banner__copy {
    max-width: none;
  }
  .about-page .hero-scenes,
  .about-page .hero-social,
  .about-page .hero-pages,
  .blog-page .hero-social,
  .blog-page .blog-banner__pages {
    display: none;
  }
  .blog-page .blog-explorer,
  .blog-page .blog-featured-story,
  .blog-page .blog-categories,
  .blog-page .blog-popular {
    width: auto !important;
    min-width: 0 !important;
  }
  .blog-page .blog-explorer {
    display: grid !important;
    grid-template-columns: 1fr !important;
    margin: 20px 14px 42px !important;
  }

  .contact-page .contact-content {
    grid-template-columns: 1fr;
    margin: 0 18px 42px;
  }
  .contact-page .contact-details,
  .contact-page .contact-form {
    padding: 26px 20px;
  }
  .contact-page .contact-form__row { grid-template-columns: 1fr; }
  .contact-page .adventure-callout { margin-right: 14px; margin-left: 14px; }
  .contact-page .visit-section { min-height: 520px; }

  .tour-details-page .tour-enquiry__form { margin-left: 0; }
  .tour-details-page .tour-gallery__heading { align-items: flex-start; }
  .tour-details-page .tour-gallery__heading > a { white-space: nowrap; }
  .tour-details-page .tour-banner__copy { padding-right: 20px; padding-left: 20px; }
  .tour-details-page .tour-info-strip { margin-right: 14px; margin-left: 14px; }

  .expeditions-page .expedition-catalogue { padding-right: 14px; padding-left: 14px; }
  .expeditions-page .expedition-cards { grid-template-columns: 1fr; }
  .expeditions-page .expedition-cards article { height: auto; min-height: 350px; }
  .expeditions-page .expedition-cards article > div { height: 190px; }

  .legal-page .legal-content,
  .legal-page .terms-details {
    grid-template-columns: 1fr !important;
    margin-right: 18px;
    margin-left: 18px;
  }
  .legal-page .terms-details__nav { position: static !important; }
}

@media (max-width: 420px) {
  .header { padding-right: 12px; padding-left: 12px; }
  .header .brand-logo { width: 42px; height: 42px; }
  .header .brand b { font-size: 19px; }
  .gallery-page .gallery-hero h1,
  .workshops-page .workshops-hero h1,
  .contact-page .contact-hero h1 { font-size: 42px; }
  .tour-details-page .tour-gallery__heading { display: grid; gap: 8px; }
}

/* A single gallery column avoids empty cells from desktop mosaic spans on phones. */
@media (max-width: 650px) {
  .gallery-page .gallery-mosaic {
    grid-template-columns: minmax(0, 1fr) !important;
    grid-auto-rows: 235px;
  }
  .gallery-page .mosaic-card--tall,
  .gallery-page .mosaic-card--wide {
    grid-column: auto;
    grid-row: auto;
  }
  .gallery-page .mosaic-card--tall {
    min-height: 310px;
  }
}

/* Gallery hero: top-align copy on phones instead of reserving a blank image area. */
@media (max-width: 760px) {
  .gallery-page .gallery-hero {
    display: block;
    min-height: 470px !important;
    padding: 32px 20px !important;
    background-position: 63% center;
  }
  .gallery-page .gallery-hero__copy {
    max-width: min(100%, 330px);
  }
  .gallery-page .gallery-hero h1 {
    margin-bottom: 14px;
    font-size: clamp(42px, 13vw, 54px);
  }
  .gallery-page .gallery-hero__copy > p:not(:first-child) {
    margin-bottom: 16px;
    font-size: 12px;
    line-height: 1.6;
  }
}

/* Blog hero: retain the image-led banner without the desktop-sized top gap. */
@media (max-width: 760px) {
  .contact-page .contact-content,
  .contact-page .contact-details,
  .contact-page .contact-detail {
    min-width: 0;
  }
  .contact-page .contact-details h2 {
    max-width: 100%;
    margin: 10px 0 18px;
    font-size: clamp(34px, 12vw, 42px) !important;
    line-height: 0.98;
    overflow-wrap: anywhere;
  }
  .contact-page .contact-details > p:not(.eyebrow) {
    max-width: 100%;
    font-size: 13px;
    line-height: 1.65;
  }
  .contact-page .contact-detail {
    align-items: flex-start;
    gap: 12px;
  }
  .contact-page .contact-detail .contact-detail__icon {
    flex: 0 0 32px;
    width: 32px;
    font-size: 24px;
  }
  .contact-page .contact-detail a,
  .contact-page .contact-detail strong {
    min-width: 0;
    padding-top: 4px;
    font-size: 12px;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }
  .blog-page .blog-banner {
    min-height: 430px !important;
    background-position: 58% center;
  }
  .blog-page .blog-banner__copy {
    position: absolute !important;
    top: 26px !important;
    right: 0;
    left: 0;
    padding: 0 22px !important;
    margin: 0 !important;
    transform: none !important;
  }
  .blog-page .blog-banner__copy h1 {
    font-size: clamp(42px, 13vw, 54px);
    line-height: 0.96;
  }
  .blog-page .blog-banner__copy .hero-description {
    margin: 16px 0;
    font-size: 12px;
    line-height: 1.6;
  }
  .blog-page .blog-banner__copy .buttons {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .blog-page .blog-banner__copy .buttons a {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    justify-content: space-between;
  }
}

/* About page: undo desktop spacing and keep the tour CTA contained on phones. */
@media (max-width: 760px) {
  .about-page .story-hero {
    min-height: 0 !important;
    padding: 36px 20px 30px !important;
    margin: 0;
  }
  .about-page .hero-copy h1 {
    font-size: clamp(42px, 13vw, 54px);
  }
  .about-page .hero-scenes {
    height: 180px;
    margin-top: 20px;
  }
  .about-page .tour-showcase {
    width: auto !important;
    margin: 22px 14px !important;
    grid-template-columns: minmax(0, 1fr) !important;
    padding: 18px !important;
  }
  .about-page .tour-showcase__cta {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) !important;
    max-width: none !important;
    gap: 14px !important;
    padding: 0 !important;
    transform: none !important;
  }
  .about-page .tour-showcase__mail {
    width: 64px;
    height: 64px;
    font-size: 26px;
  }
  .about-page .tour-showcase__cta h2 {
    margin: 0;
    font-size: clamp(25px, 8vw, 32px);
    line-height: 1.05;
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .about-page .tour-showcase__cta .button {
    grid-column: 1 / -1;
    width: 100% !important;
    max-width: none !important;
    min-height: 52px;
    margin-top: 8px;
  }
}

/* Keep the featured tour details and CTA in a single mobile flow. */
@media (max-width: 760px) {
  body {
    padding-top: 76px;
  }
  .header {
    position: fixed !important;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }
  .tours-section .featured-tour {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: auto !important;
    min-height: 0;
    padding: 22px;
    box-sizing: border-box;
  }
  .tours-section .featured-content {
    display: contents;
  }
  .tours-section .tour-badge,
  .tours-section .featured-content h3,
  .tours-section .featured-content > p,
  .tours-section .featured-content .tour-button,
  .tours-section .tour-meta-icons {
    position: relative;
    z-index: 1;
  }
  .tours-section .featured-content h3 {
    margin: 18px 0 14px;
    font-size: clamp(34px, 8.2vw, 42px);
    line-height: 1.05;
  }
  .tours-section .featured-content > p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
  }
  .tours-section .tour-meta-icons {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    order: 5;
    display: flex;
    width: 100%;
    margin: 28px 0 0;
    gap: 14px 20px;
    flex-wrap: wrap;
    font-size: 12px;
    white-space: normal;
  }
  .tours-section .tour-meta-icons i {
    display: none;
  }
  .tours-section .tour-meta-icons span:last-of-type {
    width: 100%;
  }
  .tours-section .featured-content .tour-button {
    order: 6;
    width: 100%;
    min-width: 0;
    margin-top: 18px !important;
  }
}

@media (max-width: 420px) {
  .tours-section .featured-tour {
    height: auto !important;
    padding: 20px;
  }
  .tours-section .featured-content h3 {
    margin: 13px 0 10px;
    font-size: 34px;
  }
  .tours-section .featured-content > p {
    font-size: 13px;
    line-height: 1.5;
  }
  .tours-section .tour-meta-icons {
    margin-top: 17px;
    gap: 9px 12px;
    font-size: 10px;
  }
  .tours-section .featured-content .tour-button { margin-top: 13px !important; }
}
