.accommodation-banner {
  width: 100%;
  height: 80vh;
  background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%),
    url("/images/accommodation-banner.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}
.accommodation-banner-inner {
  width: 100%;
  max-width: 1600px;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  box-sizing: border-box;
}

.accommodation-banner-inner span {
  color: #fff;
  font-family: Jost;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.345rem;
  text-transform: uppercase;
}

.accommodation-banner-inner h1 {
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 7.3125rem;
  font-style: italic;
  font-weight: 400;
  line-height: 7.375rem;
}

.accommodation-banner p {
  color: #fff;
  font-family: Jost;
  font-size: 1.1875rem;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.15438rem;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .accommodation-banner {
    padding: 0 2rem;
  }

  .accommodation-banner h1 {
    font-size: 5rem;
    line-height: 5.5rem;
  }
}

@media (max-width: 768px) {
  .accommodation-banner {
    height: auto;
    min-height: 70vh;
    padding: 4rem 1.5rem;
    gap: 1.25rem;
  }

  .accommodation-banner h1 {
    font-size: 3.5rem;
    line-height: 4rem;
  }

  .accommodation-banner p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .accommodation-banner {
    padding: 3rem 1rem;
    gap: 1rem;
  }

  .accommodation-banner h1 {
    font-size: 2.5rem;
    line-height: 2.8rem;
  }

  .accommodation-banner p {
    font-size: 0.9rem;
    display: none;
  }
}

.accommodation-catering-container {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5rem 2rem;
}

.accommodation-catering-inner {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.accommodation-catering-inner span {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.345rem;
  text-align: center;
  text-transform: uppercase;
  color: var(--accent-color);
}

.accommodation-catering-inner h2 {
  color: var(--primary-color);
  text-align: center;
  font-family: "Cormorant Garamond";
  font-size: 3.6875rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
}

.accommodation-catering-inner p {
  color: var(--secondary-text-color);
  text-align: center;
  font-family: Jost;
  font-size: 1.1875rem;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.15438rem;
}

hr {
  width: 100%;
  border: 0.5px solid #d2cecb52;
}

@media (max-width: 1024px) {
  .accommodation-catering-container {
    padding: 4rem 2rem;
  }

  .accommodation-catering-inner {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .accommodation-catering-container {
    padding: 3rem 1.5rem;
  }

  .accommodation-catering-inner {
    gap: 1.75rem;
  }

  .accommodation-catering-inner p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .accommodation-catering-container {
    padding: 2.5rem 1rem;
  }

  .accommodation-catering-inner {
    gap: 1.5rem;
  }

  .accommodation-catering-inner p {
    font-size: 0.95rem;
  }
}

/* CHALET DETAIL */
.chalet-detail-container {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

/* REVERSED VERSION */

/* FLIP THE ORDER */
.reverse-layout .chalet-info {
  order: 1;
}

.reverse-layout .chalet-gallery {
  order: 2;
}

/* GALLERY */
.chalet-gallery {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

@media (max-width: 1700px) {
  .chalet-gallery {
      aspect-ratio: 4 / 4;
  }
}

@media (max-width: 1600px) {
  .chalet-gallery {
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 1024px) {
  .chalet-gallery {
    aspect-ratio: 4 / 3;
  }
}


.chalet-gallery-track {
  display: flex;
  height: 100%;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.chalet-gallery-slide {
  flex-shrink: 0;
  height: 100%;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ARROWS */
.chalet-gallery-prev,
.chalet-gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  z-index: 50;
}

.chalet-gallery-prev {
  left: -19px;
}

.chalet-gallery-next {
  right: -19px;
}

.chalet-gallery-prev:hover,
.chalet-gallery-next:hover {
  background: #fff;
}

.chalet-gallery-prev {
  left: 1rem;
}

.chalet-gallery-next {
  right: 1rem;
}

.chalet-gallery-prev img,
.chalet-gallery-next img {
  width: 35px;
  height: 35px;
  object-fit: contain;
  display: block;
}

/* INFO */
.chalet-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  height: 100%;
  padding: 0 3.125rem;
}

.chalet-info h2 {
  font-family: "Cormorant Garamond";
  font-size: 2.75rem;
  font-weight: 400;
  color: var(--text-color);

  margin: 0;
  line-height: 1;
}

.chalet-sleeps {
  font-family: Jost;
  font-size: 1rem;
  font-weight: 300;
  color: var(--accent-color);
  letter-spacing: 0.1rem;

  margin-top: -0.5rem;
}

.chalet-description {
  font-family: "Jost", sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;

  color: var(--secondary-text-color);

  margin: 1rem 0 0 0;
}


.chalet-divider {
  border: none;
  border-top: 1px solid #d6cfc4;
  margin: 0;
}

/* AMENITIES */
.chalet-amenities {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
  margin: 1rem 0 2rem;
}

.amenity {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  gap: 0.75rem;
}

.amenity img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(45%) sepia(20%) saturate(400%)
    hue-rotate(10deg);
}

.amenity span {
  font-family: Jost;
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-color);
  line-height: 1.4;
}


.chalet-pricing {
  margin-top: 0.5rem;
}

.chalet-price {
  font-family: "Cormorant Garamond";
  font-size: 2.5rem;
  font-weight: 400;

  color: var(--text-color);

  margin: 0;
}

.chalet-pricing::before {
  position:relative;
  content:'From:';
  display:block;
}
.chalet-price sup {
  font-size: 1.5rem;
  vertical-align: super;
}

.chalet-price span {
  font-family: Jost;
  font-size: 1rem;
  font-weight: 300;

  color: var(--accent-color);
  letter-spacing: 0.05rem;
}

.chalet-cta {
  align-self: flex-start;

  text-transform: uppercase;
  letter-spacing: 0.15rem;

  font-size: 0.7rem;

  margin-top: 0.5rem;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .chalet-detail-container,
  .chalet-detail-container.reverse-layout {
    grid-template-columns: 1fr;
    padding: 2.5rem 1.5rem;
    gap: 2rem;
  }

  /* Gallery always first when stacked */
  .chalet-detail-container .chalet-gallery,
  .reverse-layout .chalet-gallery {
    order: -1;
  }

  .chalet-detail-container .chalet-info,
  .reverse-layout .chalet-info {
    order: 0;
  }

  .chalet-info {
    padding: 0;
    gap: 1.25rem;
  }

  .chalet-gallery {
    aspect-ratio: 3 / 2;
  }

  .chalet-info h2 {
    font-size: 2.25rem;
    margin-bottom: 0;
  }

  .chalet-sleeps {
    font-size: 0.9rem;
    margin-top: -0.5rem;
    margin-bottom: 0;
  }

  .chalet-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
  }

  .chalet-amenities {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 0.5rem 0 1rem;
  }

  .amenity span {
    font-size: 0.75rem;
  }

  .chalet-price {
    font-size: 2.25rem;
  }

  .chalet-cta {
    align-self: flex-start;
  }
}

@media (max-width: 768px) {
  .chalet-detail-container,
  .chalet-detail-container.reverse-layout {
    padding: 2rem 1.25rem;
    gap: 1.75rem;
  }

  .chalet-info h2 {
    font-size: 2rem;
  }

  .chalet-price {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .chalet-detail-container,
  .chalet-detail-container.reverse-layout {
    padding: 1.5rem 1rem;
    gap: 1.5rem;
  }

  .chalet-gallery {
    aspect-ratio: 3 / 2;
  }

  .chalet-gallery-prev,
  .chalet-gallery-next {
    width: 30px;
    height: 30px;
  }

  .chalet-gallery-prev img,
  .chalet-gallery-next img {
    width: 22px;
    height: 22px;
  }

  .chalet-info h2 {
    font-size: 1.75rem;
  }

  .chalet-sleeps {
    font-size: 0.85rem;
  }

  .chalet-description {
    font-size: 0.9rem;
  }

  .chalet-amenities {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin: 0.5rem 0 0.75rem;
  }

  .amenity img {
    width: 36px;
    height: 36px;
  }

  .amenity span {
    font-size: 0.65rem;
  }

  .chalet-price {
    font-size: 1.75rem;
  }

  .chalet-price span {
    font-size: 0.85rem;
  }
}

/*sleep-under-the-stars-container*/

.sleep-under-the-stars-container {
  width: 100%;
  padding: 5rem 1.5rem 0 1.5rem;
  display: flex;
  justify-content: center;
}

.sleep-under-the-stars-inner {
  width: 100%;
  max-width: 1400px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sleep-under-the-stars-inner img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.camp-map {
  margin-bottom: 2.5rem;
}

.sleep-under-the-stars-container span {
  display: block;
  width: 100%;
  color: var(--accent-color);
  text-align: center;
  font-family: Jost;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.345rem;
  text-transform: uppercase;
}

.sleep-under-the-stars-container h2 {
  color: var(--text-color);
  text-align: center;
  font-family: "Cormorant Garamond";
  font-size: 3.6875rem;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 2.5rem;
}

.sleep-under-the-stars-container p {
  color: var(--text-color);
  text-align: center;
  font-family: Jost;
  font-size: 1.1875rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.15438rem;
  margin-bottom: 3.5rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .sleep-under-the-stars-container {
    padding: 3rem 2rem;
  }

  .sleep-under-the-stars-container h2 {
    font-size: 3.5rem;
  }

  .sleep-under-the-stars-container p {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 768px) {
  .sleep-under-the-stars-container {
    padding: 3rem 1.5rem;
  }

  .sleep-under-the-stars-container span {
    font-size: 0.7rem;
    margin-bottom: 1.5rem;
  }

  .sleep-under-the-stars-container h2 {
    font-size: 2.5rem;
    line-height: 2.8rem;
    margin-bottom: 1.25rem;
  }

  .sleep-under-the-stars-container p {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .sleep-under-the-stars-container {
    padding: 2.5rem 1rem;
  }

  .sleep-under-the-stars-container h2 {
    font-size: 2rem;
    line-height: 2.2rem;
    margin-bottom: 1rem;
  }

  .sleep-under-the-stars-container p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
}

.camp-grid-section {
  width: 100%;
  box-sizing: border-box;
}

.camp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.camp-card {
  display: flex;
  flex-direction: column;
  background: #f0eeea;
}

.camp-gallery {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.camp-track {
  display: flex;
  height: 100%;
  transition: transform 0.4s ease;
}

.camp-slide {
  flex: 0 0 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #d2cec9;
}

.camp-prev,
.camp-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  padding: 0;
}

.camp-prev {
  left: 1rem;
}
.camp-next {
  right: 1rem;
}

.camp-prev img,
.camp-next img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.camp-content {
  padding: 2rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.camp-content .camp-sub {
  text-align: left;
  font-family: Jost;
  font-weight: 300;
  font-style: Light;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.05em;
  color: #766041;
}

.camp-content h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--text-color);
  margin: 0;
  text-align: left;
}

.camp-sub {
  font-family: Jost, sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--accent-color);
  margin: 0;
  text-align: left;
}

.camp-content .camp-desc {
  font-family: Jost;
  font-weight: 300;
  font-size: 1.1rem;
  line-height: 1.65;
  text-align: left;
  color: #847a71;
}

.camp-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}

.camp-list li {
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 0.85rem;
  text-align: left;
}

.camp-list li img {
  width: 53px;
  height: 53px;
  flex-shrink: 0;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(45%) sepia(20%) saturate(400%)
    hue-rotate(10deg);
}

.camp-list li span {
  font-family: "Jost", sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--secondary-text-color);
  text-align: left;
  text-transform: none;
  letter-spacing: normal;
}

.camp-cta {
  text-transform: uppercase;
  letter-spacing: 0.15rem;
  font-size: 0.7rem;
  margin-top: 0.5rem;
}

@media (max-width: 1024px) {
  .camp-content {
    padding: 1.75rem 2rem;
    gap: 1.5rem;
  }

  .camp-content h3 {
    font-size: 2rem;
  }

  .camp-content .camp-desc {
    font-size: 1rem;
  }

  .camp-list li img {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 768px) {
  .camp-grid {
    grid-template-columns: 1fr;
  }

  .camp-content {
    padding: 1.5rem 1.5rem;
    gap: 1.25rem;
  }

  .camp-content h3 {
    font-size: 1.75rem;
  }

  .camp-content .camp-sub {
    font-size: 0.9rem;
  }

  .camp-content .camp-desc {
    font-size: 0.95rem;
  }

  .camp-list li img {
    width: 36px;
    height: 36px;
  }

  .camp-list li span {
    font-size: 0.9rem;
  }

  .camp-prev,
  .camp-next {
    width: 44px;
    height: 44px;
  }

  .camp-prev img,
  .camp-next img {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  .camp-grid-section {
    padding: 2rem 0;
  }

  .camp-content {
    padding: 1.25rem 1rem;
    gap: 1rem;
  }

  .camp-content h3 {
    font-size: 1.5rem;
  }

  .camp-content .camp-sub {
    font-size: 0.85rem;
  }

  .camp-content .camp-desc {
    font-size: 0.9rem;
  }

  .camp-list li img {
    width: 30px;
    height: 30px;
  }

  .camp-list li span {
    font-size: 0.85rem;
  }

  .camp-prev,
  .camp-next {
    width: 30px;
    height: 30px;
  }

  .camp-prev img,
  .camp-next img {
    width: 22px;
    height: 22px;
  }
}

.property-layout-container {
  width: 100%;
  padding-top: 4rem;
  display: flex;
  justify-content: flex-start;
}

.property-layout-inner {
  width: 100%;
  max-width: 1400px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.property-layout-inner h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.6875rem;
  font-weight: 400;
  color: var(--text-color);
  line-height: 1.15;
}

.property-layout-inner p {
  text-align: left;
  color: var(--secondary-text-color);
  font-family: Jost;
  font-size: 1.1875rem;
  font-weight: 300;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .property-layout-container {
    padding-top: 3rem;
  }

  .property-layout-inner h2 {
    font-size: 3rem;
  }

  .property-layout-inner p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .property-layout-container {
    padding-top: 2.5rem;
  }

  .property-layout-inner h2 {
    font-size: 2.25rem;
    line-height: 1.2;
  }

  .property-layout-inner p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .property-layout-container {
    padding-top: 2rem;
  }

  .property-layout-inner h2 {
    font-size: 1.875rem;
  }

  .property-layout-inner p {
    font-size: 0.9rem;
  }
}

.property-map {
  width: 100%;
  padding: 3rem 2rem 4rem;
  box-sizing: border-box;
}

.property-map img {
  width: 100%;
  display: block;
  border-radius: 16px;
  max-width: 1400px;
  margin: 0 auto;
}

.accommodation-begin-your-journey {
  width: 100%;
  height: 100vh;
  background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%),
    url("/images/begin-your-journey-accommodation.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 3rem;
}

.accommodation-begin-your-journey > span {
  font-family: Jost;
  font-weight: 400;
  font-style: Regular;
  font-size: 0.688rem;
  line-height: 100%;
  letter-spacing: 59%;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
}

.accommodation-begin-your-journey > h2 {
  color: #fff;
  font-family: "Cormorant Garamond";
  font-size: 7.3125rem;
  font-style: italic;
  font-weight: 400;
  line-height: 7.375rem;
}

.accommodation-begin-your-journey > p {
  color: #fff;
  text-align: center;
  font-family: Jost;
  font-size: 1.1875rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.15438rem;
}

/* RESPONSIVE BEGIN YOUR JOURNEY */

@media (max-width: 1024px) {
  .accommodation-begin-your-journey {
    padding: 0 2rem;
    gap: 2rem;
  }

  .accommodation-begin-your-journey > h2 {
    font-size: 5rem;
    line-height: 5.5rem;
  }
}

@media (max-width: 768px) {
  .accommodation-begin-your-journey {
    height: auto;
    min-height: 80vh;
    padding: 4rem 1.5rem;
    gap: 1.5rem;
  }

  .accommodation-begin-your-journey > h2 {
    font-size: 3.5rem;
    line-height: 4rem;
  }

  .accommodation-begin-your-journey > p {
    font-size: 1rem;
  }

  .accommodation-begin-your-journey .two-column-btn {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 300px;
  }

  .accommodation-begin-your-journey .two-column-btn button {
    width: 100%;
  }

  /* Carousel arrows always visible on touch */
  .carousel-arrow {
    opacity: 1;
  }
}

@media (max-width: 480px) {
  .accommodation-begin-your-journey > h2 {
    font-size: 2.75rem;
    line-height: 3.2rem;
  }

  .accommodation-begin-your-journey > p {
    font-size: 0.9rem;
  }
}


@media (max-width: 768px) {
    .sleep-under-the-stars-container span {
        margin-bottom: 0;
    }
}