:root {
  --bg: #fbf9f4;
  --white: #ffffff;
  --text: #2f3a2f;
  --muted: #657363;
  --green: #5b7f5a;
  --green-dark: #3f5d3f;
  --beige: #e9dfcf;
  --wood: #a87a53;
  --line: #e6e0d6;
  --shadow: 0 12px 36px rgba(41, 53, 39, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(251, 249, 244, 0.9);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-dark);
}

.nav {
  display: flex;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--green-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.35rem;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-weight: 600;
  border: 1px solid transparent;
  transition: 0.25s ease;
}

.btn:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.btn-sm {
  padding: 0.65rem 1.05rem;
  font-size: 0.9rem;
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.8);
  color: #fff;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20, 36, 22, 0.35),
    rgba(20, 36, 22, 0.58)
  );
}

.hero-content {
  position: relative;
  color: #fff;
  max-width: 780px;
  text-align: left;
  padding: 6rem 0 5rem;
}

.hero-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: #e7f2e7;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0 0 0.8rem;
}

h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4.6vw, 3.8rem);
  margin-top: 0.65rem;
}

h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.55rem, 2.8vw, 2.35rem);
  color: var(--green-dark);
}

.hero-content p {
  max-width: 640px;
  margin-bottom: 1.4rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.section {
  padding: 5.4rem 0;
}

.section-soft {
  background: #f4efe4;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.two-col img {
  border-radius: 22px;
  box-shadow: var(--shadow);
  object-fit: cover;
  height: 100%;
  min-height: 360px;
}

.section-intro {
  color: var(--muted);
  max-width: 720px;
}

.highlight {
  color: var(--green-dark);
  font-weight: 600;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.6rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(32, 45, 28, 0.07);
}

.card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.card h3,
.card p {
  padding-inline: 1rem;
}

.card h3 {
  margin-top: 0.9rem;
  margin-bottom: 0.45rem;
}

.card p {
  margin-top: 0;
  padding-bottom: 1rem;
  color: var(--muted);
}

.amenities {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 1rem;
  border: 1px dashed #d8cfbe;
  border-radius: 14px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem 1.2rem;
  background: #fffdf9;
}

.activity-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.activity {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
}

.cta-line {
  margin-top: 1.3rem;
  font-weight: 600;
  color: var(--green-dark);
}

.gallery-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
}

.price-table {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.price-item {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.2rem;
}

.price {
  font-size: 1.35rem;
  color: var(--green-dark);
  font-weight: 800;
  margin: 0.5rem 0;
}

.popular {
  border-color: #c8d8c2;
  box-shadow: var(--shadow);
}

.badge {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  background: var(--beige);
  color: #735232;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.22rem 0.6rem;
}

.extras {
  margin-top: 1.2rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 1rem 1.2rem;
  background: #fff;
}

.discount {
  color: #7a593b;
  font-weight: 600;
}

.reviews-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

blockquote {
  margin: 0;
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: #3c4a3b;
}

blockquote cite {
  display: block;
  margin-top: 0.6rem;
  color: var(--muted);
  font-style: normal;
  font-size: 0.92rem;
}

.map-wrap iframe {
  width: 100%;
  min-height: 340px;
  border: 0;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 1.2rem;
}

.booking-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
}

label {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 0.7rem;
}

input,
textarea {
  width: 100%;
  margin-top: 0.25rem;
  border: 1px solid #d7d1c4;
  border-radius: 10px;
  padding: 0.72rem 0.8rem;
  font: inherit;
  background: #fff;
}

input:focus,
textarea:focus {
  outline: 2px solid #d7e7d3;
  border-color: #b5cbaf;
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.seo-section {
  border-top: 1px solid var(--line);
}

.footer {
  border-top: 1px solid var(--line);
  padding: 1.3rem 0;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .two-col,
  .contact-grid,
  .cards,
  .price-table,
  .reviews-grid,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .section {
    padding: 4rem 0;
  }

  .hero {
    min-height: 75vh;
  }

  .hero-content {
    padding-top: 5rem;
  }

  .two-col,
  .contact-grid,
  .cards,
  .price-table,
  .reviews-grid,
  .gallery-grid,
  .activity-grid,
  .amenities,
  .row {
    grid-template-columns: 1fr;
  }

  .two-col img {
    min-height: 260px;
  }

  .card img,
  .gallery-grid img {
    height: 210px;
  }
}
