
        /* =========================================================
   HOMEPAGE REDESIGN CSS
   Embers Camping
   ---------------------------------------------------------
   Notes:
   - This file is structured by section for easier editing
   - Old conflicting card/grid styles have been removed
   - Homepage-only styles are kept grouped together
   - Comments explain key layout decisions
   ========================================================= */


/* =========================================================
   1. ROOT / GLOBAL
   ========================================================= */

:root {
  --embers-teal: #09585D;
  --embers-navy: #233d5c;
  --embers-sand: #f7f2eb;
  --embers-cream: #F5F1EA;
  --embers-brown: #8f5f42;
  --embers-orange: #CC5040;
  --embers-text: #2d2d2d;
  --embers-muted: #6e6e6e;
  --embers-white: #ffffff;
  --embers-red: #4D1A0B;
  

  --embers-radius: 18px;
  --embers-radius-lg: 24px;
  --embers-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  --container-max: 1240px;
}



body.embers-home {
  margin: 0;
  color: var(--embers-text);
  background: var(--embers-cream);
  font-family: century-gothic, sans-serif;
  line-height: 1.5;
}

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

a {
  text-decoration: none;
}

.container {
  max-width: var(--container-max);
}


/* =========================================================
   2. SHARED SECTION STYLES
   ========================================================= */

.section-light {
  padding: 52px 0 72px;
  background: var(--embers-cream);
}

.section-teal {
  padding: 80px 0;
  background: var(--embers-teal);
  color: var(--embers-white);
}

.section-heading {
  margin-bottom: 32px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.section-heading p {
  margin: 10px 0 0;
  color: inherit;
  opacity: 0.85;
}

.section-heading--light h2,
.section-heading--light p {
  color: var(--embers-white);
}

/* Generic pill button/link */
.pill-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--embers-teal);
  font-size: 0.92rem;
  font-weight: 600;
}

.pill-link--light {
  background: rgba(255, 255, 255, 0.14);
  color: var(--embers-white);
  border: 1px solid rgba(255, 255, 255, 0.28);
}


/* =========================================================
   3. TOP ALERT BAR
   ========================================================= */

.top-alert-bar {
  position: relative;
  z-index: 6;
  background: hsl(187 22% 38% / 1);
  color: #fff;
}

.top-alert-bar__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  font-size: 0.8rem;
  line-height: 1.2;
  text-align: center;
}

.top-alert-bar__message,
.top-alert-bar__reviews {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-alert-bar__icon {
  font-size: 0.95rem;
  line-height: 1;
  flex-shrink: 0;
}

.top-alert-bar__stars {
  color: #f6bf3c;
  letter-spacing: 0.08em;
  font-size: 1rem;
  line-height: 1;
}


/* =========================================================
   4. HERO
   ========================================================= */

.hero-header {
  position: relative;
  min-height: 760px;
  color: var(--embers-white);
}

.hero-video-wrap,
.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-video-wrap {
  overflow: hidden;
}

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

.hero-overlay {
  background:
	linear-gradient(
	  to bottom,
	  rgba(30, 25, 22, 0.35),
	  rgba(43, 27, 10, 0.18) 28%,
	  rgba(153, 85, 30, 0.38) 65%,
	  rgba(140, 72, 20, 0.55) 100%
	);
}


/* =========================================================
   STICKY HEADER / SCROLLED STATE
   ========================================================= */

.site-header {
	 position: sticky;
	 top: 0;
	 z-index: 3000;
	 padding: 11px 0;
	 margin-bottom: 0px;
	 background: #08585d;
	 height: 86px; /* constant */
	 transition:
	   background-color 0.25s ease,
	   box-shadow 0.25s ease,
	   padding 0.25s ease,
	   margin-bottom 0.25s ease;
   }
body.home .site-header {
	 padding: 16px 0;
	 background: transparent;
	 margin-bottom: -86px;
}   

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  transition: background-color 0.25s ease;
  z-index: 0;
}

.site-header .container {
  position: relative;
  z-index: 1;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 64px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.site-logo__img {
  display: block;
  width: auto;
  height: 54px;
  max-width: 220px;
  transition: opacity 0.2s ease;
}

.site-logo__img--dark {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* scrolled state */
.site-header.is-scrolled {
  padding: 10px 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.site-header.is-scrolled::before {
  background: #fff;
}

.site-header.is-scrolled .site-nav a {
  color: var(--embers-teal);
}

.site-header.is-scrolled .site-nav-toggle span,
.site-header.is-mobile-open .site-nav-toggle span {
  background: var(--embers-teal);
}
.site-header.is-mobile-open .site-nav-toggle span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.site-header.is-mobile-open .site-nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-mobile-open .site-nav-toggle span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* if you later have a dark logo version, swap it here */
.site-header.is-scrolled .site-logo__img--light {
  display: none;
}

.site-header.is-scrolled .site-logo__img--dark {
  opacity: 1;
  display: block;
}

/* =========================================================
   BOOK NOW DROPDOWN
   ========================================================= */

.book-now-dropdown {
  position: relative;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  pointer-events: none;
  transition:
	opacity 0.2s ease,
	visibility 0.2s ease,
	transform 0.2s ease;
}

.site-header.is-scrolled .book-now-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.book-now-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: #cf543f;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.book-now-toggle:hover,
.book-now-toggle:focus {
  background: #bf4a36;
  color: #fff;
}

.book-now-toggle__chevron {
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s ease;
}

.book-now-dropdown.is-open .book-now-toggle__chevron {
  transform: rotate(-135deg) translateY(-1px);
}

.book-now-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 320px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
	opacity 0.2s ease,
	visibility 0.2s ease,
	transform 0.2s ease;
}

.book-now-dropdown.is-open .book-now-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.book-now-menu__inner {
  background: #0b6b69;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.book-now-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.book-now-menu__heading {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.book-now-menu__heading--spaced {
  margin-top: 18px;
}

.book-now-menu__list li + li {
  margin-top: 6px;
}

.book-now-menu__list a {
  display: block;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
  line-height: 1.35;
  padding: 7px 0;
  text-decoration: none;
}

.book-now-menu__list a:hover,
.book-now-menu__list a:focus {
  color: #fff;
  text-decoration: none;
  opacity: 0.85;
}


.hero-content {
  position: relative;
  z-index: 4;
  min-height: calc(760px - 88px);
  display: flex;
  align-items: center;
}

.hero-content__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  padding: 180px 0 80px;
}

.hero-kicker {
  margin: 0 0 14px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.9;
}

.hero-content h1 {
  margin: 0 0 30px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.06;
  font-weight: 700;
}

/* Final version of hero rating */
.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  font-size: 1rem;
}

.hero-rating__score {
  font-weight: 700;
  color: #fff;
  font-size: 1.1rem;
}

.hero-rating__stars {
  letter-spacing: 0.12em;
  color: #f3bf2f;
  font-size: 1.15rem;
}

.hero-rating__text {
  color: #fff;
}

.hero-rating__stars {
	position: relative;
	display: inline-flex;
	color: #f5c84c;
	letter-spacing: 2px;
}

.hero-rating__half {
	position: relative;
	display: inline-block;
	color: rgba(255,255,255,0.25);
}

.hero-rating__half::before {
	content: "★";
	position: absolute;
	left: 0;
	top: 0;
	width: 50%;
	overflow: hidden;
	color: #f5c84c;
}


/* =========================================================
   5. BOOKING BAR
   ========================================================= */

/* Note:
   - Each booking segment is fully clickable
   - Divider only appears between actual booking segments
   - Uses :has() for clean targeting
*/

.booking-bar {
  max-width: 1350px;
  margin: 0 auto 22px;
  padding: 0;
  border-radius: 22px;
  background: rgba(247, 241, 236, 0.96);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
  overflow: hidden;
}

.booking-bar__grid {
  display: grid;
  grid-template-columns: 1.6fr 1.4fr auto;
  align-items: stretch;
}

.booking-segment--nights {
  display: none !important;
}

.booking-segment {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 114px;
  padding: 22px 28px 22px 15px;
  cursor: pointer;
}

.booking-segment:focus {
  outline: 2px solid rgba(207, 84, 63, 0.35);
  outline-offset: -2px;
}

/* Divider between segments only .booking-segment:has(+ .booking-segment)::after */
.booking-segment--location::after
{
  content: "";
  position: absolute;
  top: 20px;
  right: 0;
  width: 1px;
  height: calc(100% - 40px);
  background: rgba(210, 118, 96, 0.45);
}

.booking-segment__icon {
  flex: 0 0 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-segment__icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
}

.booking-segment__text {
  position: relative;
  flex: 1;
  min-width: 0;
  text-align: left;
}

.booking-segment__text label {
  display: block;
  margin: 0 0 4px;
  font-size: 0.75rem;
  line-height: 1.2;
  font-weight: 600;
  color: #6f6a66;
}

.booking-segment__text select,
.booking-segment__text input {
  width: 100%;
  height: auto;
  padding: 0 34px 0 0;
  border: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  color: #141414;
  font-size: 1.12rem;
  line-height: 1.2;
  font-weight: 700;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.booking-segment__text input::placeholder {
  color: #141414;
  opacity: 1;
}

.booking-segment__text input[readonly] {
  background: transparent;
}

.booking-segment__text::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-20%);
  border-right: 2px solid #1f1f1f;
  border-bottom: 2px solid #1f1f1f;
  rotate: 45deg;
  pointer-events: none;
}

.booking-segment__text input {
  cursor: text;
}

.booking-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 18px 18px 8px;
}

.btn-book {
  min-width: 190px;
  height: 68px;
  padding: 0 34px;
  border: 0;
  border-radius: 999px;
  background: #cf543f;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  box-shadow: none;
}

.btn-book:hover,
.btn-book:focus {
  background: #bf4a36;
  color: #fff;
}


/* =========================================================
   6. WHY STAY
   ========================================================= */

.why-stay h2 {
  color: var(--embers-red);
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.icon-card {
  background: #fff;
  border-radius: 16px;
  padding: 34px 18px;
  text-align: center;
  border: 2px solid #dbd3c8;
}

.icon-card__icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #fdf4e7;
  border: 2px solid #c9a87c;
  /* concentric rings — tree-ring effect */
  box-shadow:
    inset 0 0 0 7px rgba(201, 168, 124, 0.18),
    inset 0 0 0 14px rgba(201, 168, 124, 0.09);
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-card__icon svg {
  width: 44px;
  height: 44px;
  color: var(--embers-teal);
}

.icon-card h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.35;
  color: var(--embers-text);
  font-weight: 500;
  text-transform: lowercase;
}


/* =========================================================
   7. OUR MAGICAL CAMPSITES
   ========================================================= */

/* Note:
   - Heading is centered visually
   - Map button sits right
   - Entire card is clickable
   - Image fills full card height
   - Top overlay tint sits over image
*/

.camp-locations .section-heading--split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin-bottom: 38px;
}

.camp-locations .section-heading--split > div {
  grid-column: 2;
  text-align: center;
}

.camp-locations .section-heading--split .pill-link {
  grid-column: 3;
  justify-self: end;
}

.camp-locations .section-heading h2 {
  margin: 0;
  color: #fff;
  font-weight: 700;
  text-align: center;
}

.pill-link--map {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: #f6f3ee;
  color: var(--embers-teal);
  font-size: 0.92rem;
  font-weight: 700;
}

.pill-link--map img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}

.camp-locations .location-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 34px;
  max-width: 1180px;
  margin: 0 auto;
}

.camp-locations .location-card {
  position: relative;
  display: block;
  width: 266px;
  height: 320px;
  border-radius: 18px;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  font-size: 14px;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.camp-locations .location-card:hover,
.camp-locations .location-card:focus {
  text-decoration: none;
  color: inherit;
}

.camp-locations .location-card:hover {
  transform: translateY(-4px);
}

.camp-locations .location-card:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.65);
  outline-offset: 4px;
}

.camp-locations .location-card__image {
  position: absolute;
  inset: 0;
  height: 100%;
}

.camp-locations .location-card__image img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  display: block;
}

.camp-locations .location-card__top {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 155px;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  text-align: center;
  z-index: 2;
  overflow: hidden;
  transition: height 0.3s ease;
}

.camp-locations .location-card:hover .location-card__top,
.camp-locations .location-card:focus-visible .location-card__top {
  height: 100%;
}
.camp-locations .location-card:hover p {
	
}

.camp-locations .location-card h3 {
  margin: 0;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  text-shadow: 1px 1px 0 rgba(5, 66, 69, 0.788);
}

.camp-locations .location-card p {
  margin: 0 0 10px;
  color: #fff;
}

.camp-locations .btn-light-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  background: #f8f5f1;
  color: var(--embers-teal);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 999px;
  pointer-events: none;
}

.camp-locations .location-card:hover .btn-light-pill {
  background: #ffffff;
}

/* Card tint overlays */
.location-card--bentley .location-card__top {
  background: rgba(217, 167, 133, 0.75);
}

.location-card--claydon .location-card__top {
  background: rgba(102, 174, 190, 0.75);
}

.location-card--henley .location-card__top {
  background: rgba(184, 194, 138, 0.75);
}

.location-card--knowlton .location-card__top {
  background: rgba(126, 164, 216, 0.75);
}

.location-card--purbeck .location-card__top {
  background: rgba(188, 199, 141, 0.75);
}

.location-card--pylewell .location-card__top {
  background: rgba(128, 164, 201, 0.75);
}

.location-card--turners .location-card__top {
  background: rgba(127, 167, 169, 0.75);
}


/* Map view
   --------------------------------------------------------- */

.location-map {
  display: none;
  height: 672px;
  border-radius: var(--embers-radius-lg);
  overflow: hidden;
}
.location-map.is-visible {
  display: block;
}

/* Leaflet control tweaks */
.location-map .leaflet-control-zoom a {
  color: var(--embers-teal);
  font-weight: 700;
}
.location-map .leaflet-popup-content-wrapper {
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.18);
}
.location-map .leaflet-popup-content {
  margin: 0;
  width: auto !important;
}
.location-map .leaflet-popup-tip-container {
  display: none;
}

/* Map pin */
.map-pin__label {
  background: var(--embers-teal);
  color: #fff;
  border-radius: 10px;
  padding: 6px 13px 5px;
  display: block;
  white-space: nowrap;
  width: 150px;
  text-align: center;
  box-shadow: 0 3px 12px rgba(0,0,0,0.28);
  cursor: pointer;
  position: relative;
  font-family: century-gothic, 'Century Gothic', Futura, sans-serif;
  transition: background 0.15s ease;
}
.map-pin__label:hover {
  background: #0b6b69;
}
.map-pin__label::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid var(--embers-teal);
  transition: border-top-color 0.15s ease;
}
.map-pin__label:hover::after {
  border-top-color: #0b6b69;
}
.map-pin__brand {
  display: block;
  font-size: 8.5px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  opacity: 0.72;
  line-height: 1.2;
  font-weight: 400;
}
.map-pin__name {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.35;
}

/* Mobile dot marker */
.map-dot {
  width: 18px;
  height: 18px;
  background: var(--embers-teal);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.35);
  cursor: pointer;
}

/* Map popup card */
.map-popup {
  width: 200px;
  font-family: century-gothic, 'Century Gothic', Futura, sans-serif;
}
.map-popup__img {
  height: 115px;
  overflow: hidden;
}
.map-popup__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.map-popup__body {
  padding: 12px 14px 14px;
}
.map-popup__name {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--embers-text);
  margin-bottom: 2px;
}
.map-popup__loc {
  display: block;
  font-size: 11.5px;
  color: #888;
  margin-bottom: 10px;
}
.map-popup__cta {
  display: inline-block;
  background: var(--embers-teal);
  color: #fff !important;
  border-radius: 20px;
  padding: 5px 15px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none !important;
}
.map-popup__cta:hover {
  background: #0b6b69;
  text-decoration: none !important;
}

@media (max-width: 767px) {
  .location-map {
    height: 420px;
    border-radius: var(--embers-radius);
  }
}


/* =========================================================
   8. SPECIAL EVENTS
   ========================================================= */

.special-events {
  position: relative;
  padding: 90px 0 110px;
  overflow: hidden;
}

.special-events__bg {
  position: absolute;
  inset: 0;
}

.special-events__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.special-events::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(249, 246, 241, 0.45);
  z-index: 1;
}

.special-events .container {
  position: relative;
  z-index: 2;
}

.event-cards {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.event-card {
  display: block;
  flex: 1 1 320px;
  max-width: 500px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--embers-shadow);
  text-align: center;
  text-decoration: none;
  color: inherit;
}

.event-card__image {
  height: 260px;
  overflow: hidden;
}

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

.event-card:hover,
.event-card:focus {
  text-decoration: none;
}

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

.event-card__body {
  background: var(--embers-teal);
  padding: 24px 28px 28px;
}

.event-card h3 {
  margin: 0 0 16px;
  font-size: 1.3rem;
  color: #fff;
}

.event-card__body .btn-light-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  background: #ffffff;
  color: var(--embers-teal);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 999px;
  border: 0;
  pointer-events: none;
}

.event-card__body .btn-light-pill:hover,
.event-card__body .btn-light-pill:focus {
  background: #f8f5f1;
  color: var(--embers-teal);
  text-decoration: none;
}


/* =========================================================
   9. REVIEWS
   ========================================================= */

.reviews-strip {
  padding: 72px 0;
  background: var(--embers-navy);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  min-height: 210px;
}

.review-card__meta {
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--embers-brown);
}

.review-card__stars {
  margin-bottom: 12px;
  color: #e1a84a;
}

.reviews-strip .section-heading--split {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.reviews-strip .section-heading--split .pill-link--light {
	margin-left: auto;
}
.reviews-strip .pill-link--light {
	background: #ffffff;
	color: var(--embers-navy);
	border-color: #ffffff;
}

.reviews-strip .pill-link--light:hover {
	background: rgba(255,255,255,0.92);
	color: var(--embers-navy);
	border-color: rgba(255,255,255,0.92);
}

@media (max-width: 767px) {
	.reviews-strip .section-heading--split {
		flex-direction: column;
		align-items: flex-start;
	}

	.reviews-strip .section-heading--split .pill-link--light {
		margin-left: 0;
	}
}


/* =========================================================
   10. WHAT WE OFFER CAROUSEL
   ========================================================= */

/* Note:
   - Full-width horizontal carousel
   - 400px cards on desktop
   - Text sits in a tinted lower panel
   - View all + prev/next sit together top-right
*/

.offer-section {
  padding: 80px 0;
  background: var(--embers-cream);
  overflow: hidden;
}

.offer-section .container {
  width: 100%;
  max-width: none !important;
  padding-left: 0;
  padding-right: 0;
}

.offer-section .section-heading {
  max-width: 1240px;
  margin: 0 auto 32px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.offer-section .section-heading > div:first-child {
  flex: 1 1 auto;
}

.offer-section .section-heading .pill-link {
  display: none;
}

.offer-carousel-wrap {
  position: relative;
}

.offer-carousel__controls {
  position: absolute;
  top: -64px;
  right: 20px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 14px;
}

.offer-carousel__controls .pill-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: #f6f3ee;
  color: var(--embers-teal);
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
}

.offer-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 400px;
  gap: 22px;
  overflow-x: auto;
  padding: 6px 20px 14px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.offer-carousel::-webkit-scrollbar {
  display: none;
}

.offer-card {
  position: relative;
  min-height: 600px;
  border-radius: 24px;
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.offer-card__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.offer-card:hover .offer-card__bg,
.offer-card:focus-within .offer-card__bg {
  transform: scale(1.05);
}

.offer-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 46%;
  z-index: 1;
}

.offer-card--teal::after {
  background: rgba(9, 88, 93, 0.46);
}

.offer-card--olive::after {
  background: rgba(155, 151, 64, 0.46);
}

.offer-card--orange::after {
  background: rgba(187, 57, 15, 0.46);
}

.offer-card__inner {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 28px 18px;
  color: #fff;
}

.offer-card h3 {
  margin: 0 0 16px;
  font-size: 1.2rem;
  line-height: 1.1;
  font-weight: 700;
  color: #fff;
}

.offer-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.98);
}

.offer-carousel__nav {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
  box-shadow: none;
  cursor: pointer;
  color: transparent;
  font-size: 0;
  line-height: 0;
}

.offer-carousel__nav--prev {
  background-image: url('/images/prev.svg');
  background-size: 40px;
}

.offer-carousel__nav--next {
  background-image: url('/images/next.svg');
  background-size: 40px;
}

.offer-carousel__nav:hover,
.offer-carousel__nav:focus {
  opacity: 0.8;
  background-color: transparent;
}
.offer-card__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	min-height: 42px;
	padding: 0 20px;

	background: #ffffff;
	color: var(--embers-teal);

	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1;

	border-radius: 999px;

	text-decoration: none;

	margin-top: 18px;

	transition:
		background 0.2s ease,
		color 0.2s ease,
		transform 0.2s ease;
}

.offer-card__link:hover {
	background: rgba(255,255,255,0.92);
	color: var(--embers-teal);
	text-decoration: none;

	transform: translateY(-1px);
}


/* =========================================================
   11. ACCOMMODATION
   ========================================================= */

.accommodation-section {
  padding: 78px 0;
  background: #fff;
}

.accommodation-section  .section-heading h2 {
	color: var(--embers-orange)
}

.accommodation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.stay-card {
  text-align: center;
}

.stay-card__label {
  margin-bottom: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--embers-orange);
}

.stay-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.stay-card__price {
  margin: 14px 0 16px;
  color: var(--embers-teal);
  font-weight: 700;
}

.btn-dark-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  background: var(--embers-teal);
  color: var(--embers-white);
}


/* =========================================================
   12. LATEST STRIP
   ========================================================= */

.latest-strip {
  background: #fff;
  padding-bottom: 0;
}


.latest-strip__heading {
  padding: 0 20px;
  color: var(--embers-orange);
}

.eapps-instagram-feed-posts-grid-load-more-container {
	display: none !important
}

/*
.latest-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}


.latest-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
*/

/* =========================================================
   13. FOOTER
   ========================================================= */

.site-footer {
  background: #74695f;
  color: rgba(255, 255, 255, 0.9);
  padding: 60px 0 20px;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-col h3 {
  margin: 0 0 16px;
  font-size: 1rem;
  color: #fff;
  text-transform: uppercase;
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col li + li {
  margin-top: 8px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.86);
}

.footer-col--signup {
  text-align: right;
}

.btn-footer-signup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--embers-white);
  color: #5e4c43;
  font-weight: 700;
  margin: 6px 0 18px;
}

.footer-socials {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}

.site-footer__bottom {
  padding-top: 18px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
}


/* =========================================================
   14. RESPONSIVE
   ========================================================= */
/* Mobile nav panel */
   .mobile-nav {
	 position: fixed;
	 top: 0;
	 right: 0;
	 bottom: 0;
	 left: auto;
	 width: min(420px, 92vw);
	 z-index: 3001;
	 background: var(--embers-cream);
	 padding: 120px 28px 40px;
	 transform: translateX(100%);
	 transition: transform 0.3s ease;
	 box-shadow: -20px 0 40px rgba(0, 0, 0, 0.16);
	 display: flex;
	 flex-direction: column;
	 gap: 0;
	 overflow-y: auto;
	 -webkit-overflow-scrolling: touch;
   }
   
   .mobile-nav.is-open {
	 transform: translateX(0);
   }
   
   .mobile-nav a {
	 display: block;
	 padding: 16px 0;
	 color: var(--embers-teal);
	 font-size: 1.25rem;
	 font-weight: 700;
	 text-transform: uppercase;
	 letter-spacing: 0.04em;
	 border-bottom: 1px solid rgba(9, 88, 93, 0.18);
   }
   
   .mobile-nav a:hover,
   .mobile-nav a:focus {
	 color: var(--embers-orange);
	 text-decoration: none;
   }
   
   body.mobile-nav-open {
	 overflow: hidden;
   }   
.site-nav-toggle {
	 display: none;
	 width: 44px;
	 height: 44px;
	 padding: 0;
	 border: 0;
	 background: transparent;
	 cursor: pointer;
	 position: relative;
	 z-index: 1003;
   }
   
   .site-nav-toggle span {
	 display: block;
	 width: 28px;
	 height: 3px;
	 margin: 6px auto;
	 background: #fff;
	 border-radius: 999px;
	 transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease;
   }
   
   @media (max-width: 1249px) {
	 .site-nav,
	 .site-header__actions {
	   display: none;
	 }

	 .site-nav-toggle {
	   display: block;
	 }
   }

@media (max-width: 1199px) {
  .icon-grid {
	grid-template-columns: repeat(3, 1fr);
  }

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

  .booking-bar__grid {
	grid-template-columns: 1fr 1fr 1fr;
  }

  .camp-locations .location-card {
	width: calc(33.333% - 16px);
  }

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

@media (max-width: 991px) {
  .hero-header {
	min-height: 680px;
  }

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

  .site-footer__top {
	grid-template-columns: 1fr;
  }

  .footer-col--signup {
	text-align: left;
  }

  .footer-socials {
	justify-content: flex-start;
  }

  .camp-locations .location-card {
	width: calc(50% - 12px);
  }

  .offer-card {
	min-height: 380px;
  }

  .booking-bar__grid {
	grid-template-columns: 1fr;
  }

  .booking-segment {
	min-height: 88px;
	padding: 18px 20px;
  }

  .booking-segment:has(+ .booking-segment)::after {
	top: auto;
	right: 20px;
	bottom: 0;
	width: calc(100% - 40px);
	height: 1px;
  }

  .booking-submit {
	padding: 18px 20px 20px;
  }

  .btn-book {
	width: 100%;
	min-width: 0;
	height: 60px;
  }
}

@media (max-width: 991px) {
  .offer-carousel {
	grid-auto-columns: 340px;
	padding-left: 20px;
	padding-right: 20px;
  }

  .offer-card {
	min-height: 520px;
  }

  .offer-carousel__nav {
	display: none;
  }
}

@media (max-width: 767px) {
  .top-alert-bar__inner {
	min-height: auto;
	padding: 10px 0;
	flex-direction: column;
	gap: 6px;
	font-size: 0.85rem;
  }

  .top-alert-bar__message,
  .top-alert-bar__reviews {
	justify-content: center;
	flex-wrap: nowrap;
  }

  .section-light,
  .section-teal,
  .offer-section,
  .accommodation-section,
  .reviews-strip,
  .special-events {
	padding: 56px 0;
  }

  .hero-content__inner {
	padding: 25vh 30px 60px;
  }

  .hero-content h1 {
	font-size: 2.2rem;
  }

  .icon-grid,
  .accommodation-grid,
  .latest-grid {
	grid-template-columns: 1fr;
  }

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

  .hero-rating {
	flex-wrap: wrap;
	justify-content: center;
  }

  .camp-locations .section-heading--split {
	grid-template-columns: 1fr;
	text-align: center;
  }

  .camp-locations .section-heading--split > div,
  .camp-locations .section-heading--split .pill-link {
	grid-column: auto;
	justify-self: center;
  }

  .camp-locations .location-card {
	width: 100%;
	max-width: 500px;
  }

  .offer-section {
	padding: 56px 0;
  }



  .site-logo img {
	height: 40px;
	max-width: 170px;
  }
}

@media (max-width: 767px) {
  .offer-section {
	padding: 56px 0;
  }

  .offer-section .section-heading {
	padding-left: 15px;
	padding-right: 15px;
  }

  .offer-carousel-wrap {
	margin-left: 15px;
  }

  .offer-carousel {
	grid-auto-columns: 82vw;
	padding-left: 15px;
	padding-right: 15px;
  }

  .offer-card {
	min-height: 460px;
	border-radius: 18px;
  }

  .offer-card::after {
	height: 100%;
  }

  .offer-card__inner {
	padding: 22px 18px;
  }

  .offer-card h3 {
	font-size: 1.2rem;
  }

  .offer-card p {
	font-size: 0.95rem;
	line-height: 1.6;
  }
}





.eapps-instagram-feed-title-container {
	display: none
}


/* =========================================================
   NAV DROPDOWNS — DESKTOP
   ========================================================= */

.nav-item-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease;
}

.site-header.is-scrolled .nav-dropdown-toggle {
  color: var(--embers-teal);
}

.site-header.is-scrolled .nav-dropdown-list a {
  color: rgba(255, 255, 255, 0.92);
}

.site-header.is-scrolled .nav-dropdown-list a:hover,
.site-header.is-scrolled .nav-dropdown-list a:focus {
  color: #fff;
  text-decoration: none;
}

.nav-dropdown-chevron {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.nav-item-dropdown.is-open .nav-dropdown-chevron {
  transform: rotate(-135deg) translateY(2px);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 230px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 100;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.nav-item-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu__inner {
  background: #0b6b69;
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.nav-dropdown-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-dropdown-list li + li {
  margin-top: 2px;
}

.nav-dropdown-list a {
  display: block;
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 10px;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-dropdown-list a:hover,
.nav-dropdown-list a:focus {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  text-decoration: none;
}


/* =========================================================
   NAV DROPDOWNS — MOBILE ACCORDION
   ========================================================= */

.mobile-nav-close {
  position: absolute;
  top: 28px;
  right: 8px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.mobile-nav-close::before,
.mobile-nav-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 2.5px;
  background: var(--embers-teal);
  border-radius: 999px;
}

.mobile-nav-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-nav-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-nav-close:hover::before,
.mobile-nav-close:hover::after {
  background: var(--embers-orange);
}

.mobile-nav-item {
  border-bottom: 1px solid rgba(9, 88, 93, 0.18);
}

.mobile-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 0;
  border: 0;
  background: transparent;
  font-family: inherit;
  color: var(--embers-teal);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
}

.mobile-nav-toggle:hover,
.mobile-nav-toggle:focus {
  color: var(--embers-orange);
}

.mobile-nav-chevron {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2.5px solid currentColor;
  border-bottom: 2.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-left: 8px;
}

.mobile-nav-item.is-open .mobile-nav-chevron {
  transform: rotate(-135deg) translateY(2px);
}

.mobile-nav-submenu {
  list-style: none;
  margin: 0;
  padding: 0 0 14px 0;
  display: none;
}

.mobile-nav-item.is-open .mobile-nav-submenu {
  display: block;
}

.mobile-nav-submenu a {
  display: block;
  padding: 10px 12px;
  color: var(--embers-teal);
  font-size: 1rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  border-bottom: 0;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.15s ease;
}

.mobile-nav-submenu a:hover,
.mobile-nav-submenu a:focus {
  color: var(--embers-orange);
  background: rgba(9, 88, 93, 0.06);
}


/* =========================================================
   FLATPICKR CALENDAR — EMBERS BRAND
   ========================================================= */

.flatpickr-calendar {
  font-family: century-gothic, sans-serif;
  border: none;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.flatpickr-months {
  background: #cf543f;
  padding: 4px 0;
}

.flatpickr-months .flatpickr-month,
.flatpickr-current-month {
  background: #cf543f;
  color: #fff;
}

.flatpickr-current-month input.cur-year {
  background: #cf543f !important;
  color: #fff !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
  background: #cf543f !important;
  color: #fff !important;
}

.flatpickr-current-month {
  font-size: 0.82rem;
  font-weight: 700;
  padding: 4px 0;
}

.flatpickr-prev-month,
.flatpickr-next-month {
  fill: #fff !important;
  color: #fff !important;
}

.flatpickr-prev-month:hover svg,
.flatpickr-next-month:hover svg {
  fill: rgba(255, 255, 255, 0.7) !important;
}

.flatpickr-weekdays {
  background: #cf543f;
}

span.flatpickr-weekday {
  background: #cf543f;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 700;
  font-size: 0.75rem;
}

.flatpickr-days {
  border: none;
}

.flatpickr-day {
  border-radius: 8px;
  font-family: century-gothic, sans-serif;
  color: var(--embers-text);
}

.flatpickr-day:hover {
  background: var(--embers-cream);
  border-color: transparent;
}

.flatpickr-day.today {
  border-color: var(--embers-orange);
  color: var(--embers-orange);
  font-weight: 700;
}

.flatpickr-day.today:hover {
  background: var(--embers-orange);
  border-color: var(--embers-orange);
  color: #fff;
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background: var(--embers-teal);
  border-color: var(--embers-teal);
  color: #fff;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
  color: rgba(0, 0, 0, 0.2);
}


/* =========================================================
   TOP ALERT BAR — MOBILE TICKER
   ========================================================= */

@media (max-width: 767px) {
  .top-alert-bar__inner {
    position: relative;
    min-height: 42px;
    padding: 0;
    flex-direction: row;
    gap: 0;
    overflow: hidden;
  }

  .top-alert-bar__message,
  .top-alert-bar__reviews {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 16px;
    font-size: 0.85rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
  }

  .top-alert-bar__message.is-active,
  .top-alert-bar__reviews.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .top-alert-bar__message.is-leaving,
  .top-alert-bar__reviews.is-leaving {
    opacity: 0;
    transform: translateY(-10px);
  }
}



.navbar.navbar-sub {
	background: #08585d
}
.navbar {
	z-index: 1000;
}
.mobile-nav-subheading {

  padding: 12px 0 6px 12px;

  font-weight: 700;

  opacity: 0.75;

}

.mobile-nav-subheading--spaced {

  margin-top: 12px;

}
.mobile-nav-item--nb {
	border-bottom: none !important
}


.mobile-nav-item--book-now {
  margin-top: 18px;
  border-bottom: none;
  margin-left: -10px;
  margin-right: -10px;
}

.mobile-nav-item--book-now > .mobile-nav-toggle {
  width: 100%;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: #cf543f;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.2s ease, transform 0.2s ease;
}

.mobile-nav-item--book-now > .mobile-nav-toggle:hover {
  background: #bb4835;
}

.mobile-nav-item--book-now > .mobile-nav-toggle:active {
  transform: scale(0.98);
}

.mobile-nav-item--book-now .mobile-nav-chevron {
  border-color: #fff;
}

.campsite-hero {
	border-bottom: none !important;
}
.campsite-icon a {
	justify-content: center;
	align-items: center;
	display: flex;
	flex-wrap: wrap;
}
.campsite-icon a span {
	width: 100%;
}


/* =========================================================
   15. LOCAL
   ========================================================= */
.local-area-map {
	   background: #f6f2e8;
	   padding: 80px 5vw;
	   overflow: hidden;
   }
   
   .local-area-map__content {
	   max-width: 1400px;
	   margin: 0 auto;
   
	   display: grid;
	   grid-template-columns: 420px 1fr;
	   gap: 60px;
	   align-items: center;
   }
   
.local-area-map__intro h2 {
	   font-size: clamp(1.9rem, 3vw, 3rem);
	   line-height: 1.1;
	   font-weight: 800;
	   color: var(--embers-navy);
	   margin: 0 0 20px;
	   letter-spacing: -0.02em;
   }
   
   .local-area-map__intro p {
	   font-size: 1.05rem;
	   line-height: 1.7;
	   color: var(--embers-navy);
	   opacity: 0.9;
	   margin-bottom: 32px;
   }
   
   .local-area-map__eyebrow {
	   color: #cf543f;
	   text-transform: uppercase;
	   letter-spacing: 0.18em;
	   font-size: 0.8rem;
	   font-weight: 700;
	   margin-bottom: 20px;
	   display: block
   }
   
   .local-area-map__image img {
	   width: 100%;
	   height: auto;
	   display: block;
	   mix-blend-mode: multiply;
   }
   
   .local-area-map .btn-pill {
	   display: inline-flex;
	   align-items: center;
	   justify-content: center;
   
	   min-height: 52px;
	   padding: 0 28px;
   
	   background: #cf543f;
	   color: #fff;
   
	   border-radius: 999px;
   
	   font-size: 0.95rem;
	   font-weight: 700;
	   text-decoration: none;
   
	   transition:
		   background 0.2s ease,
		   transform 0.2s ease;
   }
   
   .local-area-map .btn-pill:hover {
	   background: #b84835;
	   transform: translateY(-1px);
   }
   
   .local-area-map .btn-pill:active {
	   transform: translateY(0);
   }
   
   @media (max-width: 1100px) {
   
	   .local-area-map__content {
		   grid-template-columns: 1fr;
		   gap: 40px;
	   }
   
	   .local-area-map__intro {
		   max-width: 720px;
	   }
   }   
   
.review_widget {
	padding: 0 0 2rem 0;
}