/* ======================= */
/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ======================= */
/* VARIABLES */
:root {
  --primary: #6f8a75;
  --primary-dark: #465947;
  --hero-green: #556b57;
  --page-bg: #f4f1ea;
  --panel-bg: #faf8f4;
  --panel-bg-hover: #f5f1ea;
  --text: #2f372f;
  --muted: #666666;
  --white: #ffffff;
  --navbar-height: 141px;
}

/* ======================= */
/* BASE */
body {
  overflow-x: hidden;
  background: var(--page-bg);
  color: var(--text);
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

/* ======================= */
/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #eeeeee;
  flex-wrap: wrap;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.navbar.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.navbar.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-area img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.logo-area span {
  font-weight: 500;
  font-size: 16px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  position: relative;
  padding: 5px 0;
  color: var(--text);
  font-size: 14px;
  text-decoration: none;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: 0;
  background: var(--primary);
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--primary);
  color: var(--white) !important;
  padding: 8px 16px;
  border-radius: 20px;
  transition: 0.3s;
}

.nav-cta:hover {
  opacity: 0.9;
}

/* ======================= */
/* BUTTONS */
.btn-primary,
.btn-secondary {
  padding: 16px 32px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
  font-size: 1rem;
}

.btn-primary {
  display: inline-block;
  background: var(--hero-green);
  color: var(--white);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

/* ======================= */
/* HOME HERO */
.hero {
  position: relative;
  min-height: calc(100vh - var(--navbar-height));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 8%;
  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("Logo2.png") center top/cover no-repeat;
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.25),
    rgba(0, 0, 0, 0.55)
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  text-align: center;
}

.hero-content h1 {
  font-size: 5rem;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.hero-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ======================= */
/* HOME INTRO */
.intro-wrapper {
  position: relative;
  z-index: 3;
  margin-top: -90px;
  padding: 0 20px;
}

.intro-card {
  max-width: 1200px;
  margin: auto;
  background: var(--white);
  border-radius: 30px;
  padding: 50px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.10);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

.intro-image img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  height: 100%;
  min-height: 380px;
}

.intro-text h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.intro-text p {
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 18px;
  font-size: 1.05rem;
}

/* ======================= */
/* HOME FEATURES */
.features-section {
  padding: 90px 20px;
}

.section-heading {
  text-align: center;
  margin-bottom: 50px;
}

.section-heading h2 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.section-heading p {
  max-width: 700px;
  margin: auto;
  color: var(--muted);
  line-height: 1.8;
}

.features-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card h3 {
  margin-bottom: 14px;
  font-size: 1.2rem;
}

.feature-card p {
  color: var(--muted);
  line-height: 1.7;
}

/* ======================= */
/* HOME EXPERIENCE */
.experience-section {
  padding: 30px 20px 100px;
}

.experience-card {
  max-width: 1200px;
  margin: auto;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  padding: 70px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("gallery/image5.png") center/cover no-repeat;
  color: var(--white);
}

.experience-content {
  max-width: 650px;
}

.experience-content h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.experience-content p {
  line-height: 1.9;
  margin-bottom: 30px;
  font-size: 1.05rem;
  opacity: 0.95;
}

/* ======================= */
/* BOOKING PAGE */
.booking-hero {
  position: relative;
  height: 55vh;
  min-height: 420px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("gallery/image1.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  color: var(--white);
}

.booking-hero-content {
  max-width: 800px;
}

.booking-hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.booking-hero p {
  font-size: 1.2rem;
  line-height: 1.7;
  opacity: 0.95;
}

.booking-wrapper {
  max-width: 1200px;
  margin: -80px auto 80px;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.booking-card {
  background: var(--white);
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.10);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.booking-header {
  text-align: center;
  margin-bottom: 40px;
}

.booking-header h2 {
  font-size: 2.7rem;
  margin-bottom: 12px;
  color: var(--text);
}

.booking-header p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 700px;
  margin: auto;
  line-height: 1.8;
}

.booking-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.feature-box {
  background: var(--panel-bg);
  border-radius: 20px;
  padding: 24px;
  text-align: center;
  transition: 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-box:hover {
  transform: translateY(-4px);
  background: var(--panel-bg-hover);
}

.feature-box h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: var(--text);
}

.feature-box p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

.widget-container {
  margin-top: 30px;
  padding: 30px;
  border-radius: 24px;
  background: var(--panel-bg);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.booking-direct {
  max-width: 680px;
  margin: auto;
  text-align: center;
}

.booking-direct p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ======================= */
/* ACCOMMODATION PAGE */
.accommodation-hero {
  min-height: 56vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px 8%;
  background:
    linear-gradient(rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.52)),
    url("gallery/image3.png") center/cover no-repeat;
  color: var(--white);
  text-align: center;
}

.accommodation-hero-content {
  max-width: 820px;
}

.accommodation-hero h1 {
  font-size: 4.4rem;
  line-height: 1.05;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.accommodation-hero p {
  max-width: 760px;
  margin: auto;
  font-size: 1.18rem;
  line-height: 1.8;
  opacity: 0.96;
}

.accommodation-wrapper {
  position: relative;
  z-index: 2;
  margin-top: -80px;
  padding: 0 20px;
}

.accommodation-card {
  max-width: 1200px;
  margin: auto;
  padding: 48px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.10);
}

.accommodation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.accommodation-image img {
  width: 100%;
  min-height: 420px;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.accommodation-copy h2 {
  font-size: 2.8rem;
  line-height: 1.12;
  margin-bottom: 20px;
}

.accommodation-copy p {
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 18px;
  font-size: 1.05rem;
}

.accommodation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn-outline {
  display: inline-block;
  padding: 16px 32px;
  border: 1px solid rgba(85, 107, 87, 0.35);
  border-radius: 999px;
  color: var(--text);
  background: var(--panel-bg);
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-outline:hover {
  background: var(--panel-bg-hover);
  transform: translateY(-2px);
}

.hut-section {
  padding: 90px 20px 20px;
}

.hut-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.hut-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.hut-card img {
  width: 100%;
  height: 320px;
  display: block;
  object-fit: cover;
}

.hut-card-content {
  padding: 32px;
}

.hut-card-content h3 {
  margin-bottom: 12px;
  font-size: 1.8rem;
}

.hut-card-content p {
  margin-bottom: 24px;
  color: var(--muted);
  line-height: 1.8;
}

.accommodation-details {
  padding: 90px 20px 40px;
}

.amenities-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.amenity-card {
  min-height: 190px;
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 24px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}

.amenity-card:hover {
  transform: translateY(-4px);
}

.amenity-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.amenity-card p {
  color: var(--muted);
  line-height: 1.7;
}

.accommodation-feature {
  padding: 40px 20px 100px;
}

.accommodation-feature-card {
  max-width: 1200px;
  min-height: 500px;
  margin: auto;
  display: flex;
  align-items: center;
  padding: 70px;
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.50)),
    url("gallery/The Site/20201201 Off Grid Living 001 Web Sized.jpg") center/cover no-repeat;
  color: var(--white);
}

.accommodation-feature-content {
  max-width: 650px;
}

.accommodation-feature-content h2 {
  font-size: 3rem;
  line-height: 1.12;
  margin-bottom: 20px;
}

.accommodation-feature-content p {
  margin-bottom: 30px;
  font-size: 1.05rem;
  line-height: 1.9;
  opacity: 0.95;
}

/* ======================= */
/* EXTRAS PAGE */
.extras-hero {
  min-height: 56vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px 8%;
  background:
    linear-gradient(rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.52)),
    url("gallery/The Site/20210420 Off Grid 011 Web Sized.jpg") center/cover no-repeat;
  color: var(--white);
  text-align: center;
}

.extras-hero-content {
  max-width: 820px;
}

.extras-hero h1 {
  font-size: 4.4rem;
  line-height: 1.05;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.extras-hero p {
  max-width: 760px;
  margin: auto;
  font-size: 1.18rem;
  line-height: 1.8;
  opacity: 0.96;
}

.extras-wrapper {
  position: relative;
  z-index: 2;
  margin-top: -80px;
  padding: 0 20px;
}

.extras-card {
  max-width: 1200px;
  margin: auto;
  padding: 48px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.10);
}

.extras-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.extras-image img {
  width: 100%;
  min-height: 420px;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.extras-copy h2 {
  font-size: 2.8rem;
  line-height: 1.12;
  margin-bottom: 20px;
}

.extras-copy p {
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 18px;
  font-size: 1.05rem;
}

.extras-copy .btn-primary {
  margin-top: 10px;
}

.extras-options {
  padding: 90px 20px 40px;
}

.extras-options-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.extra-option-card {
  min-height: 230px;
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 24px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}

.extra-option-card:hover {
  transform: translateY(-4px);
}

.extra-option-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  line-height: 1.3;
}

.extra-option-card p {
  color: var(--muted);
  line-height: 1.7;
}

.extras-feature {
  padding: 40px 20px 100px;
}

.extras-feature-card {
  max-width: 1200px;
  min-height: 500px;
  margin: auto;
  display: flex;
  align-items: center;
  padding: 70px;
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.50)),
    url("gallery/The Site/20210420 Off Grid 028 Web Sized.jpg") center/cover no-repeat;
  color: var(--white);
}

.extras-feature-content {
  max-width: 690px;
}

.extras-feature-content h2 {
  font-size: 3rem;
  line-height: 1.12;
  margin-bottom: 20px;
}

.extras-feature-content p {
  margin-bottom: 30px;
  font-size: 1.05rem;
  line-height: 1.9;
  opacity: 0.95;
}

.extras-feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ======================= */
/* ABOUT PAGE */
.about-hero {
  min-height: 56vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px 8%;
  background:
    linear-gradient(rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.52)),
    url("gallery/The Site/20210420 Off Grid 013 Web Sized.jpg") center/cover no-repeat;
  color: var(--white);
  text-align: center;
}

.about-hero-content {
  max-width: 820px;
}

.about-hero h1 {
  font-size: 4.4rem;
  line-height: 1.05;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.about-hero p {
  max-width: 760px;
  margin: auto;
  font-size: 1.18rem;
  line-height: 1.8;
  opacity: 0.96;
}

.about-wrapper {
  position: relative;
  z-index: 2;
  margin-top: -80px;
  padding: 0 20px;
}

.about-card {
  max-width: 1200px;
  margin: auto;
  padding: 48px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.10);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.about-image img {
  width: 100%;
  min-height: 420px;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.about-copy h2 {
  font-size: 2.8rem;
  line-height: 1.12;
  margin-bottom: 20px;
}

.about-copy p {
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 18px;
  font-size: 1.05rem;
}

.about-copy .btn-primary {
  margin-top: 10px;
}

.about-values {
  padding: 90px 20px 40px;
}

.about-values-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.about-value-card {
  min-height: 210px;
  padding: 30px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 24px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}

.about-value-card:hover {
  transform: translateY(-4px);
}

.about-value-card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.about-value-card p {
  color: var(--muted);
  line-height: 1.7;
}

.about-details {
  padding: 40px 20px;
}

.about-detail-card {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  padding: 48px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 30px;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.08);
}

.about-detail-copy h2 {
  font-size: 2.6rem;
  line-height: 1.12;
  margin-bottom: 20px;
}

.about-detail-copy p {
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 18px;
  font-size: 1.05rem;
}

.about-detail-list {
  display: grid;
  gap: 18px;
}

.about-detail-list div {
  padding: 24px;
  background: var(--panel-bg);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 20px;
}

.about-detail-list h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.about-detail-list p {
  color: var(--muted);
  line-height: 1.7;
}

.reviews-section {
  padding: 70px 20px 40px;
}

.reviews-carousel {
  position: relative;
  max-width: 980px;
  margin: auto;
  padding: 0 70px 54px;
}

.reviews-track {
  position: relative;
  min-height: 360px;
}

.review-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translateX(22px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.review-card.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.review-card p {
  color: var(--text);
  font-size: 1.25rem;
  line-height: 1.8;
}

.review-stars {
  margin-bottom: 18px;
  color: #d6a842;
  font-size: 1.25rem;
  letter-spacing: 3px;
}

.review-card h3 {
  margin-top: 22px;
  color: var(--primary-dark);
  font-size: 1.05rem;
}

.carousel-button {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(85, 107, 87, 0.28);
  border-radius: 50%;
  background: var(--white);
  color: var(--primary-dark);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
  transform: translateY(-50%);
}

.carousel-button span {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.carousel-button-prev {
  left: 0;
}

.carousel-button-next {
  right: 0;
}

.carousel-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid var(--primary);
  border-radius: 50%;
  background: transparent;
}

.carousel-dots button.is-active {
  background: var(--primary);
}

.carousel-status {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
}

.about-feature {
  padding: 40px 20px 100px;
}

.about-feature-card {
  max-width: 1200px;
  min-height: 500px;
  margin: auto;
  display: flex;
  align-items: center;
  padding: 70px;
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.50)),
    url("gallery/The Site/20210420 Off Grid 001 Blossom Web Sized.jpg") center/cover no-repeat;
  color: var(--white);
}

.about-feature-content {
  max-width: 690px;
}

.about-feature-content h2 {
  font-size: 3rem;
  line-height: 1.12;
  margin-bottom: 20px;
}

.about-feature-content p {
  margin-bottom: 30px;
  font-size: 1.05rem;
  line-height: 1.9;
  opacity: 0.95;
}

.about-feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ======================= */
/* CONTACT PAGE */
.contact-hero {
  min-height: 56vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px 8%;
  background:
    linear-gradient(rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.52)),
    url("gallery/The Site/20210420 Off Grid 012 Web Sized.jpg") center/cover no-repeat;
  color: var(--white);
  text-align: center;
}

.contact-hero-content {
  max-width: 820px;
}

.contact-hero h1 {
  font-size: 4.4rem;
  line-height: 1.05;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.contact-hero p {
  max-width: 760px;
  margin: auto;
  font-size: 1.18rem;
  line-height: 1.8;
  opacity: 0.96;
}

.contact-wrapper {
  position: relative;
  z-index: 2;
  margin-top: -80px;
  padding: 0 20px;
}

.contact-card {
  max-width: 1200px;
  margin: auto;
  padding: 48px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.10);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.contact-copy h2 {
  font-size: 2.8rem;
  line-height: 1.12;
  margin-bottom: 20px;
}

.contact-copy > p {
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.contact-detail-list {
  display: grid;
  gap: 18px;
}

.contact-detail-list div {
  padding: 24px;
  background: var(--panel-bg);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 20px;
}

.contact-detail-list h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.contact-detail-list p {
  color: var(--muted);
  line-height: 1.7;
}

.contact-detail-list a {
  color: var(--primary-dark);
  font-weight: 600;
  text-decoration: none;
}

.contact-detail-list a:hover {
  text-decoration: underline;
}

.contact-form {
  max-width: none;
  margin: 0;
  padding: 32px;
  background: var(--panel-bg);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.contact-form label {
  display: block;
  margin-bottom: 18px;
  color: var(--text);
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px 16px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 14px;
  background: var(--white);
  color: var(--text);
  font: inherit;
}

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

.contact-form button {
  margin-top: 8px;
}

.contact-next {
  padding: 90px 20px 100px;
}

.contact-next-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.contact-next-card {
  min-height: 260px;
  padding: 34px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.contact-next-card h3 {
  margin-bottom: 12px;
  font-size: 1.8rem;
}

.contact-next-card p {
  margin-bottom: 24px;
  color: var(--muted);
  line-height: 1.8;
}

/* ======================= */
/* CONTENT SECTIONS */
.section {
  padding: 40px 5%;
  text-align: center;
}

.section h1,
.section h2 {
  margin-bottom: 15px;
}

.section.center {
  text-align: center;
}

.section-card {
  padding: 60px 5%;
}

.section-card .section-content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.section-card img {
  width: 100%;
  max-width: 450px;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.section-card .text {
  flex: 1;
}

.section-card.left .section-content {
  flex-direction: row;
}

.section-card.right .section-content {
  flex-direction: row-reverse;
}

.section-card p,
.section-card li {
  color: var(--muted);
}

.section-card ul {
  margin: 15px 0 15px 20px;
}

/* ======================= */
/* GALLERY */
.gallery-hero {
  min-height: 56vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px 8%;
  background:
    linear-gradient(rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.52)),
    url("gallery/The Site/230311 Shepherds Hut 040 WS.jpg") center/cover no-repeat;
  color: var(--white);
  text-align: center;
}

.gallery-hero-content {
  max-width: 820px;
}

.gallery-hero h1 {
  font-size: 4.4rem;
  line-height: 1.05;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.gallery-hero p {
  max-width: 760px;
  margin: auto;
  font-size: 1.18rem;
  line-height: 1.8;
  opacity: 0.96;
}

.gallery-landing {
  padding: 90px 20px 100px;
}

.gallery-choice-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.gallery-choice-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.gallery-choice-card img {
  width: 100%;
  height: 390px;
  display: block;
  object-fit: cover;
}

.gallery-choice-content {
  padding: 34px;
}

.gallery-choice-content h2 {
  margin-bottom: 12px;
  font-size: 2rem;
}

.gallery-choice-content p {
  margin-bottom: 24px;
  color: var(--muted);
  line-height: 1.8;
}

.gallery-page-hero {
  min-height: 46vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 8%;
  color: var(--white);
  text-align: center;
}

.gallery-page-hero-willow {
  background:
    linear-gradient(rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.52)),
    url("gallery/Willow/IMG_0158.png") center/cover no-repeat;
}

.gallery-page-hero-hazel {
  background:
    linear-gradient(rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.52)),
    url("gallery/Hazel/image8.png") center/cover no-repeat;
}

.gallery-page-hero-content {
  max-width: 820px;
}

.gallery-page-hero h1 {
  font-size: 4rem;
  line-height: 1.05;
  margin: 14px 0 1rem;
  letter-spacing: 1px;
}

.gallery-page-hero p {
  max-width: 700px;
  margin: auto;
  font-size: 1.12rem;
  line-height: 1.8;
  opacity: 0.96;
}

.gallery-back-link {
  display: inline-block;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  opacity: 0.9;
}

.gallery-back-link:hover {
  opacity: 1;
}

.gallery-page-section {
  padding: 70px 20px 100px;
}

.gallery-masonry {
  max-width: 1300px;
  margin: auto;
  columns: 4 240px;
  column-gap: 20px;
}

.gallery-photo {
  display: block;
  break-inside: avoid;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.10);
  background: var(--white);
}

.gallery-photo img {
  width: 100%;
  display: block;
  transition: transform 0.35s ease;
}

.gallery-photo:hover img {
  transform: scale(1.04);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* ======================= */
/* FORMS */
form {
  max-width: 500px;
  margin: 20px auto;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border: 1px solid #cccccc;
  border-radius: 8px;
  font-size: 14px;
}

button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 25px;
  background: var(--primary);
  color: var(--white);
  font-size: 14px;
  cursor: pointer;
}

button:hover {
  opacity: 0.9;
}

/* ======================= */
/* RESPONSIVE */
@media (min-width: 768px) {
  .navbar {
    padding: 20px 8%;
  }

  .nav-links a {
    font-size: 16px;
  }

  .section {
    padding: 60px 10%;
  }
}

@media (min-width: 1024px) {
  .navbar {
    padding: 20px 12%;
  }

  .section {
    padding: 80px 15%;
    text-align: left;
  }

  .section.center {
    text-align: center;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: calc(100vh - var(--navbar-height));
    padding: 120px 24px;
  }

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

  .intro-card {
    padding: 30px;
  }

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

  .intro-text h2,
  .section-heading h2,
  .experience-content h2 {
    font-size: 2.2rem;
  }

  .experience-card {
    padding: 40px 30px;
  }

  .accommodation-hero h1 {
    font-size: 3rem;
  }

  .accommodation-card {
    padding: 30px;
  }

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

  .accommodation-copy h2,
  .accommodation-feature-content h2 {
    font-size: 2.2rem;
  }

  .accommodation-feature-card {
    padding: 40px 30px;
  }

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

  .extras-hero h1 {
    font-size: 3rem;
  }

  .extras-card {
    padding: 30px;
  }

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

  .extras-copy h2,
  .extras-feature-content h2 {
    font-size: 2.2rem;
  }

  .extras-feature-card {
    padding: 40px 30px;
  }

  .gallery-hero h1,
  .gallery-page-hero h1 {
    font-size: 3rem;
  }

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

  .about-hero h1 {
    font-size: 3rem;
  }

  .about-card,
  .about-detail-card {
    padding: 30px;
  }

  .about-grid,
  .about-detail-card {
    grid-template-columns: 1fr;
  }

  .about-copy h2,
  .about-detail-copy h2,
  .about-feature-content h2 {
    font-size: 2.2rem;
  }

  .about-feature-card {
    padding: 40px 30px;
  }

  .contact-hero h1 {
    font-size: 3rem;
  }

  .contact-card {
    padding: 30px;
  }

  .contact-grid,
  .contact-next-grid {
    grid-template-columns: 1fr;
  }

  .contact-copy h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0 16px;
    padding: 12px 20px;
  }

  .logo-area img {
    width: 72px;
    height: 72px;
  }

  .logo-area span {
    font-size: 15px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    grid-column: 1 / -1;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    opacity: 0;
    background: var(--white);
    transition: max-height 0.3s ease, opacity 0.2s ease, padding 0.3s ease;
  }

  .navbar.nav-open .nav-links {
    max-height: 520px;
    padding: 16px 0 6px;
    opacity: 1;
  }

  .nav-links a {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid rgba(85, 107, 87, 0.28);
    border-radius: 999px;
    font-size: 1rem;
    background: var(--white);
    color: var(--text) !important;
  }

  .nav-links a + a {
    margin-top: 8px;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links .nav-cta {
    width: 100%;
    padding: 13px 16px !important;
    border: 1px solid var(--primary);
    border-radius: 999px;
    background: var(--primary);
    color: var(--white) !important;
    text-align: left;
  }

  .booking-hero {
    min-height: 360px;
  }

  .booking-hero h1 {
    font-size: 2.6rem;
  }

  .booking-hero p {
    font-size: 1rem;
  }

  .booking-card {
    padding: 25px;
  }

  .booking-header h2 {
    font-size: 2rem;
  }

  .widget-container {
    padding: 18px;
  }

  .accommodation-hero {
    min-height: 440px;
    padding: 70px 24px;
  }

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

  .accommodation-wrapper {
    margin-top: -60px;
  }

  .accommodation-image img {
    min-height: 320px;
  }

  .accommodation-details {
    padding: 70px 20px 30px;
  }

  .hut-section {
    padding: 70px 20px 10px;
  }

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

  .extras-hero {
    min-height: 440px;
    padding: 70px 24px;
  }

  .extras-hero p {
    font-size: 1rem;
  }

  .extras-wrapper {
    margin-top: -60px;
  }

  .extras-image img {
    min-height: 320px;
  }

  .extras-options {
    padding: 70px 20px 30px;
  }

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

  .gallery-hero,
  .gallery-page-hero {
    min-height: 420px;
    padding: 70px 24px;
  }

  .gallery-hero p,
  .gallery-page-hero p {
    font-size: 1rem;
  }

  .gallery-landing {
    padding: 70px 20px 80px;
  }

  .gallery-choice-card img {
    height: 320px;
  }

  .gallery-page-section {
    padding: 50px 16px 80px;
  }

  .about-hero {
    min-height: 440px;
    padding: 70px 24px;
  }

  .about-hero p {
    font-size: 1rem;
  }

  .about-wrapper {
    margin-top: -60px;
  }

  .about-image img {
    min-height: 320px;
  }

  .about-values {
    padding: 70px 20px 30px;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .reviews-section {
    padding: 60px 20px 30px;
  }

  .reviews-carousel {
    padding: 0 0 54px;
  }

  .reviews-track {
    min-height: 430px;
  }

  .carousel-button {
    top: auto;
    bottom: 0;
    transform: none;
  }

  .carousel-button-prev {
    left: calc(50% - 78px);
  }

  .carousel-button-next {
    right: calc(50% - 78px);
  }

  .carousel-dots {
    bottom: 17px;
  }

  .carousel-status {
    bottom: 14px;
  }

  .contact-hero {
    min-height: 440px;
    padding: 70px 24px;
  }

  .contact-hero p {
    font-size: 1rem;
  }

  .contact-wrapper {
    margin-top: -60px;
  }

  .contact-next {
    padding: 70px 20px 80px;
  }

  .section-card .section-content {
    flex-direction: column !important;
    gap: 20px;
  }

  .section-card img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 600px) {
  body {
    line-height: 1.55;
  }

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

  .hero-content p {
    font-size: 1rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .intro-card {
    border-radius: 24px;
    padding: 24px;
  }

  .hero,
  .booking-hero,
  .accommodation-hero,
  .extras-hero,
  .about-hero,
  .contact-hero,
  .gallery-hero,
  .gallery-page-hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero {
    min-height: 68vh;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .section-heading h2,
  .booking-header h2 {
    font-size: 2rem;
  }

  .section-heading p,
  .booking-header p {
    font-size: 1rem;
  }

  .accommodation-hero h1 {
    font-size: 2.45rem;
  }

  .extras-hero h1 {
    font-size: 2.45rem;
  }

  .gallery-hero h1,
  .gallery-page-hero h1 {
    font-size: 2.45rem;
  }

  .about-hero h1 {
    font-size: 2.45rem;
  }

  .contact-hero h1 {
    font-size: 2.45rem;
  }

  .accommodation-card,
  .accommodation-feature-card,
  .hut-card,
  .extras-card,
  .extras-feature-card,
  .gallery-choice-card,
  .about-card,
  .about-detail-card,
  .about-feature-card,
  .review-card,
  .contact-card,
  .contact-next-card {
    border-radius: 24px;
  }

  .accommodation-card,
  .extras-card,
  .about-card,
  .contact-card,
  .booking-card {
    padding: 24px;
  }

  .accommodation-image img,
  .extras-image img,
  .about-image img {
    min-height: 260px;
  }

  .accommodation-actions .btn-primary,
  .accommodation-actions .btn-outline {
    width: 100%;
    text-align: center;
  }

  .hut-card img {
    height: 260px;
  }

  .hut-card-content {
    padding: 26px;
  }

  .hut-card-content .btn-primary {
    width: 100%;
    text-align: center;
  }

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

  .extras-copy .btn-primary,
  .extras-feature-actions .btn-primary,
  .extras-feature-actions .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .extras-options-grid {
    grid-template-columns: 1fr;
  }

  .gallery-choice-content {
    padding: 26px;
  }

  .gallery-choice-content .btn-primary {
    width: 100%;
    text-align: center;
  }

  .gallery-masonry {
    columns: 1;
  }

  .about-copy .btn-primary,
  .about-feature-actions .btn-primary,
  .about-feature-actions .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .review-card {
    padding: 28px;
  }

  .review-card p {
    font-size: 1.05rem;
  }

  .contact-form {
    padding: 24px;
  }

  .contact-next-card {
    padding: 28px;
  }

  .contact-next-card .btn-primary {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .logo-area img {
    width: 60px;
    height: 60px;
  }

  .logo-area span {
    max-width: 145px;
    line-height: 1.2;
  }

  .hero-content h1,
  .booking-hero h1,
  .accommodation-hero h1,
  .extras-hero h1,
  .about-hero h1,
  .contact-hero h1,
  .gallery-hero h1,
  .gallery-page-hero h1 {
    font-size: 2.1rem;
  }

  .btn-primary,
  .btn-secondary,
  .btn-outline {
    padding: 14px 22px;
  }
}
