:root {
  --green: #173b24;
  --green-2: #265735;
  --sand: #f3ead7;
  --sand-2: #e2d0ac;
  --charcoal: #111711;
  --amber: #d89b3d;
  --blue: #0d5d7a;
  --white: #fffaf0;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Montserrat", system-ui, sans-serif;
  color: var(--charcoal);
  background: var(--sand);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 52px);
  color: var(--white);
  background: linear-gradient(to bottom, rgba(0,0,0,.62), rgba(0,0,0,0));
}

.brand {
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.05rem, 2.4vw, 1.5rem);
  font-weight: 700;
}

.brand span { color: var(--amber); }

.nav {
  display: flex;
  gap: 22px;
  font-size: .9rem;
  font-weight: 600;
}

.nav a,
.nav-cta {
  color: var(--white);
  text-decoration: none;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-cta,
.language-switch {
  border: 1px solid rgba(255,255,255,.6);
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 700;
}

.language-switch {
  color: var(--charcoal);
  background: var(--amber);
  border-color: var(--amber);
  text-decoration: none;
  min-width: 48px;
  text-align: center;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: center;
  background: url("assets/hero-night-path.jpg") center/cover no-repeat;
  color: var(--white);
  text-align: center;
  padding: 120px 20px 70px;
}

.hero-overlay,
.final-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.35), rgba(0,0,0,.66)),
    radial-gradient(circle at center, rgba(216,155,61,.1), transparent 55%);
}

.hero-content {
  position: relative;
  max-width: 920px;
}

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 700;
  font-size: .76rem;
  color: var(--amber);
}

h1, h2 {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  line-height: .98;
  margin: 0 0 22px;
  letter-spacing: .02em;
}

h1 {
  font-size: clamp(3.4rem, 10vw, 8.8rem);
  text-shadow: 0 12px 36px rgba(0,0,0,.5);
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.7rem);
  color: var(--green);
}

.dark h2,
.final-cta h2 { color: var(--white); }

.hero-text {
  max-width: 760px;
  margin: 0 auto 30px;
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .2s ease, opacity .2s ease;
}

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

.primary {
  background: var(--amber);
  color: #1b1407;
}

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

.full { width: 100%; }

.hero-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-badges span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  font-size: .85rem;
}

.section {
  padding: clamp(70px, 9vw, 130px) 0;
}

.container {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
}

.reverse > .image-card { order: -1; }

.image-card {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 22px 65px rgba(0,0,0,.2);
  background: #ddd;
}

.image-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.dark {
  background: var(--green);
  color: var(--white);
}

.two-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 34px;
}

.two-images figure {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,.08);
}

.two-images img {
  height: 520px;
  object-fit: cover;
}

figcaption {
  padding: 16px 18px;
  font-weight: 700;
  color: var(--sand);
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.amenity-grid div {
  background: var(--white);
  border: 1px solid rgba(23,59,36,.14);
  border-radius: 18px;
  padding: 18px;
  font-weight: 700;
  box-shadow: 0 10px 26px rgba(23,59,36,.06);
}

.note {
  margin-top: 24px;
  font-weight: 700;
  color: var(--green-2);
}

.photo-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.photo-grid img {
  border-radius: 20px;
  height: 330px;
  object-fit: cover;
  box-shadow: 0 12px 35px rgba(0,0,0,.16);
}

.photo-grid img:nth-child(1),
.photo-grid img:nth-child(4) {
  grid-column: span 7;
}

.photo-grid img:nth-child(2),
.photo-grid img:nth-child(3) {
  grid-column: span 5;
}

.photo-grid img:nth-child(5),
.photo-grid img:nth-child(6) {
  grid-column: span 6;
}

.pricing-wrap {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
}

.price-card {
  padding: 34px;
  border-radius: 28px;
  background: var(--white);
  border: 2px solid rgba(23,59,36,.12);
  box-shadow: 0 22px 60px rgba(23,59,36,.12);
  text-align: center;
}

.price {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: clamp(3.4rem, 7vw, 5.5rem);
  line-height: .95;
  color: var(--green);
  font-weight: 700;
}

.per {
  display: block;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .08em;
  margin-top: 6px;
}

.price-card hr {
  border: 0;
  height: 1px;
  background: var(--sand-2);
  margin: 24px 0;
}

.faq-grid {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

details {
  background: var(--white);
  border-radius: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(23,59,36,.12);
}

summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--green);
}

.final-cta {
  min-height: 72vh;
  position: relative;
  display: grid;
  align-items: center;
  background: url("assets/firepit-night.jpg") center/cover no-repeat;
  color: var(--white);
  text-align: center;
  padding: 90px 0;
}

.final-content {
  position: relative;
}

.final-cta h2 {
  font-size: clamp(3rem, 8vw, 7rem);
}

.footer {
  background: var(--charcoal);
  color: var(--sand);
  padding: 28px 36px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer a {
  color: var(--amber);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .split,
  .pricing-wrap,
  .two-images {
    grid-template-columns: 1fr;
  }

  .reverse > .image-card { order: 0; }

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

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

  .photo-grid img,
  .photo-grid img:nth-child(n) {
    grid-column: auto;
    height: 310px;
  }

  .two-images img {
    height: 360px;
  }

  .hero {
    text-align: left;
    place-items: end start;
  }

  .hero-actions,
  .hero-badges {
    justify-content: flex-start;
  }
}

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

  .nav-cta {
    display: none;
  }

  .language-switch {
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }

  h1 {
    font-size: 3.25rem;
  }
}


.glamping-promo {
  background:
    linear-gradient(135deg, rgba(17, 23, 17, 0.96), rgba(38, 87, 53, 0.90)),
    url("assets/aluxes-hero.jpg") center/cover no-repeat;
  color: var(--white);
}

.glamping-promo h2 {
  color: var(--white);
}

.glamping-promo p {
  color: rgba(255, 250, 240, 0.92);
}

.glamping-promo .image-card {
  border: 1px solid rgba(255, 255, 255, 0.20);
  box-shadow: 0 26px 80px rgba(0,0,0,.36);
}

.glamping-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.faq a {
  color: var(--amber);
  font-weight: 800;
}
