
:root {
  --green-dark: #176b37;
  --green: #27864a;
  --green-soft: #eaf7ed;
  --green-light: #79c943;
  --gold: #d9b342;
  --gold-soft: #fff7da;
  --text: #1d2b22;
  --muted: #647067;
  --bg: #fbfcf9;
  --white: #ffffff;
  --border: rgba(23, 107, 55, 0.14);
  --shadow: 0 24px 70px rgba(20, 74, 39, 0.12);
  --radius: 28px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.page-bg {
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(circle at top left, rgba(121, 201, 67, 0.20), transparent 34%),
    radial-gradient(circle at top right, rgba(217, 179, 66, 0.16), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fbfcf9 48%, #f3f8ef 100%);
}
.page-bg::after {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(23, 107, 55, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(23, 107, 55, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 70%, transparent);
}
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.topbar {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(23, 107, 55, 0.10);
}
.nav { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 14px; min-width: 230px; }
.brand-logo { width: 112px; height: auto; }
.brand-text strong { display: block; font-size: 18px; color: var(--green-dark); letter-spacing: -0.03em; }
.brand-text span { display: block; font-size: 12px; color: var(--muted); margin-top: -3px; }
.nav-links { display: flex; align-items: center; gap: 24px; color: #405046; font-size: 14px; font-weight: 800; }
.nav-links a { position: relative; }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
  background: var(--gold); transition: width .25s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 13px 20px; border-radius: 999px; border: 1px solid transparent;
  font-weight: 900; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  font-family: inherit; font-size: 14px;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--green-dark), var(--green)); box-shadow: 0 18px 36px rgba(23, 107, 55, 0.22); }
.btn-gold { color: #2f2710; background: linear-gradient(135deg, #f8df7b, var(--gold)); box-shadow: 0 16px 34px rgba(217, 179, 66, 0.24); }
.btn-outline { color: var(--green-dark); border-color: rgba(23, 107, 55, 0.22); background: rgba(255, 255, 255, 0.72); }
.mobile-toggle {
  display: none; width: 46px; height: 46px; border-radius: 16px; border: 1px solid var(--border);
  background: var(--white); color: var(--green-dark); font-size: 20px;
}
.hero { padding: 78px 0 70px; }
.hero-grid { display: grid; grid-template-columns: 1.03fr .97fr; gap: 54px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 14px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.78); border: 1px solid var(--border); color: var(--green-dark);
  font-size: 13px; font-weight: 900; margin-bottom: 22px;
}
.eyebrow i { color: var(--gold); }
h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 6vw, 76px);
  line-height: .98;
  letter-spacing: -0.055em;
  color: #15291b;
  margin-bottom: 22px;
}
h1 span { color: var(--green-dark); }
.hero-copy { max-width: 650px; font-size: 18px; color: #4e5d53; margin-bottom: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.trust-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; max-width: 650px; }
.trust-item {
  background: rgba(255, 255, 255, 0.78); border: 1px solid var(--border); border-radius: 20px;
  padding: 16px; box-shadow: 0 16px 36px rgba(23, 107, 55, 0.06);
}
.trust-item strong { display: block; font-size: 21px; color: var(--green-dark); line-height: 1.1; }
.trust-item span { display: block; font-size: 12px; color: var(--muted); margin-top: 5px; font-weight: 800; }
.hero-card {
  position: relative; background: rgba(255, 255, 255, 0.78); border: 1px solid rgba(23, 107, 55, 0.12);
  border-radius: 42px; box-shadow: var(--shadow); padding: 22px; overflow: hidden;
}
.hero-card::before {
  content: ''; position: absolute; inset: 18px; border: 1px solid rgba(217, 179, 66, 0.42);
  border-radius: 32px; pointer-events: none; z-index: 1;
}
.hero-image { height: 560px; border-radius: 31px; overflow: hidden; position: relative; background: linear-gradient(135deg, #eaf7ed, #fff7da); }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.floating-card {
  position: absolute; left: 44px; right: 44px; bottom: 44px; z-index: 3;
  background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(14px); border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 26px; padding: 20px; box-shadow: 0 24px 54px rgba(16, 57, 28, 0.18);
}
.floating-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 14px; }
.floating-top strong { display: block; color: var(--green-dark); font-size: 18px; }
.floating-top span { color: var(--muted); font-size: 13px; font-weight: 800; }
.rating-pill {
  display: inline-flex; align-items: center; gap: 7px; padding: 9px 12px; border-radius: 999px;
  background: var(--gold-soft); color: #7a6113; font-weight: 900; white-space: nowrap;
}
.mini-ratings { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.mini-ratings div { border-radius: 16px; background: #f6faf5; padding: 10px; text-align: center; border: 1px solid rgba(23, 107, 55, 0.08); }
.mini-ratings strong { display: block; color: var(--green-dark); font-size: 17px; }
.mini-ratings span { display: block; color: var(--muted); font-size: 11px; font-weight: 900; }
section { padding: 86px 0; }
.section-heading { display: flex; justify-content: space-between; gap: 24px; align-items: end; margin-bottom: 34px; }
.section-heading h2 {
  font-family: 'Playfair Display', serif; font-size: clamp(34px, 4vw, 54px); line-height: 1.03;
  letter-spacing: -0.04em; color: #15291b; max-width: 700px;
}
.section-heading p { max-width: 440px; color: var(--muted); font-weight: 700; }
.properties-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.property-card {
  background: rgba(255, 255, 255, 0.86); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: 0 20px 54px rgba(23, 107, 55, 0.09); transition: transform .25s ease, box-shadow .25s ease;
}
.property-card:hover { transform: translateY(-6px); box-shadow: 0 30px 68px rgba(23, 107, 55, 0.14); }
.property-image { height: 245px; position: relative; overflow: hidden; background: linear-gradient(135deg, var(--green-soft), var(--gold-soft)); }
.property-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.property-card:hover .property-image img { transform: scale(1.05); }
.tag {
  position: absolute; top: 16px; left: 16px; padding: 8px 12px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.9); color: var(--green-dark); font-size: 12px; font-weight: 900;
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
}
.price-badge {
  position: absolute; right: 16px; bottom: 16px; border-radius: 18px; background: rgba(21, 41, 27, 0.88);
  color: #fff; padding: 10px 13px; font-weight: 900; line-height: 1.1;
}
.price-badge small { display: block; color: rgba(255,255,255,.72); font-size: 11px; margin-top: 3px; }
.property-body { padding: 22px; }
.property-title-row { display: flex; align-items: start; justify-content: space-between; gap: 16px; margin-bottom: 8px; }
.property-body h3 { color: #15291b; font-size: 22px; line-height: 1.15; letter-spacing: -0.03em; }
.location { display: flex; gap: 8px; align-items: center; color: var(--muted); font-size: 13px; font-weight: 900; margin-bottom: 14px; }
.property-body p { color: #5b675e; font-size: 14px; margin-bottom: 18px; }
.features { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.features span {
  display: inline-flex; align-items: center; gap: 6px; border-radius: 999px; background: var(--green-soft);
  color: var(--green-dark); padding: 7px 10px; font-size: 12px; font-weight: 900;
}
.rating-box { border-radius: 22px; border: 1px solid rgba(23, 107, 55, 0.11); background: #fbfdf9; padding: 14px; margin-bottom: 18px; }
.rating-box-title { display: flex; justify-content: space-between; align-items: center; margin-bottom: 11px; font-size: 13px; color: var(--muted); font-weight: 900; }
.rating-list { display: grid; gap: 9px; }
.rating-line {
  display: grid; grid-template-columns: 92px 1fr 42px; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 900; color: #405046;
}
.bar { height: 8px; border-radius: 999px; background: #e6eee5; overflow: hidden; }
.bar span { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--green), var(--gold)); }
.property-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.booking-wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; align-items: stretch; }
.booking-info {
  border-radius: 34px; background: linear-gradient(135deg, var(--green-dark), #24904d); color: #fff;
  padding: 34px; box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.booking-info::after {
  content: ''; position: absolute; width: 310px; height: 310px; border-radius: 50%;
  border: 42px solid rgba(255,255,255,.08); right: -120px; bottom: -120px;
}
.booking-info h2 {
  font-family: 'Playfair Display', serif; font-size: 45px; line-height: 1.05;
  letter-spacing: -0.04em; margin-bottom: 18px; position: relative; z-index: 1;
}
.booking-info p { color: rgba(255,255,255,.82); margin-bottom: 26px; position: relative; z-index: 1; }
.booking-points { display: grid; gap: 14px; position: relative; z-index: 1; }
.booking-points div {
  display: flex; gap: 12px; align-items: start; padding: 14px; border-radius: 20px;
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.14);
}
.booking-points i { color: #f8df7b; margin-top: 4px; }
.booking-points strong { display: block; font-size: 15px; }
.booking-points span { display: block; font-size: 13px; color: rgba(255,255,255,.72); margin-top: 2px; }
.booking-form {
  background: rgba(255,255,255,.9); border: 1px solid var(--border); border-radius: 34px;
  padding: 28px; box-shadow: 0 22px 60px rgba(23, 107, 55, 0.10);
}
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.form-group { display: grid; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }
label { font-size: 13px; font-weight: 900; color: #405046; }
input, select, textarea {
  width: 100%; border: 1px solid rgba(23, 107, 55, 0.16); background: #fff;
  color: var(--text); border-radius: 17px; padding: 14px 15px; font-family: inherit;
  font-size: 14px; outline: none; transition: border .2s ease, box-shadow .2s ease;
}
input:focus, select:focus, textarea:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(39, 134, 74, 0.11); }
textarea { min-height: 112px; resize: vertical; }
.form-note {
  display: flex; gap: 10px; align-items: start; padding: 14px; border-radius: 18px;
  background: var(--gold-soft); color: #6b5614; font-size: 13px; font-weight: 800; margin: 16px 0;
}
.form-note i { margin-top: 4px; color: var(--gold); }
.success-message {
  display: none; margin-top: 16px; padding: 16px; border-radius: 18px; background: var(--green-soft);
  color: var(--green-dark); font-weight: 900; border: 1px solid rgba(23,107,55,.14);
}
.success-message.show { display: block; }
.experience-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.experience-card {
  padding: 22px; border-radius: 26px; background: rgba(255,255,255,.82);
  border: 1px solid var(--border); box-shadow: 0 18px 44px rgba(23, 107, 55, 0.07);
}
.experience-card i {
  width: 48px; height: 48px; border-radius: 16px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--green-soft); color: var(--green-dark); font-size: 20px; margin-bottom: 16px;
}
.experience-card h3 { font-size: 17px; line-height: 1.2; margin-bottom: 9px; color: #15291b; }
.experience-card p { font-size: 13px; color: var(--muted); font-weight: 700; }
.platform-strip {
  border-radius: 34px; background: #15291b; color: #fff; padding: 30px;
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 24px; align-items: center; overflow: hidden; position: relative;
}
.platform-strip::after {
  content: ''; position: absolute; width: 520px; height: 520px; right: -260px; top: -260px;
  border-radius: 50%; background: radial-gradient(circle, rgba(217,179,66,.26), transparent 62%);
}
.platform-strip h2 {
  font-family: 'Playfair Display', serif; font-size: 42px; line-height: 1.05;
  letter-spacing: -0.04em; position: relative; z-index: 1;
}
.platform-strip p { color: rgba(255,255,255,.75); margin-top: 10px; position: relative; z-index: 1; }
.platform-logos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; position: relative; z-index: 1; }
.platform-logo {
  min-height: 92px; border-radius: 22px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center; text-align: center; font-weight: 900; color: #fff; padding: 12px;
}

/* Detail pages */
.detail-hero { padding: 58px 0 44px; }
.back-link { display: inline-flex; align-items: center; gap: 8px; color: var(--green-dark); font-weight: 900; margin-bottom: 22px; }
.detail-hero-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 34px; align-items: stretch; }
.detail-copy {
  background: rgba(255,255,255,.82); border: 1px solid var(--border); border-radius: 38px; padding: 34px;
  box-shadow: 0 18px 54px rgba(23,107,55,.09);
}
.detail-copy h1 { font-size: clamp(42px, 5vw, 66px); }
.detail-copy .hero-copy { font-size: 17px; }
.detail-gallery-main { border-radius: 38px; overflow: hidden; box-shadow: var(--shadow); min-height: 520px; position: relative; }
.detail-gallery-main img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.quick-facts {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 22px 0;
}
.quick-facts div {
  background: #f7fbf5; border: 1px solid rgba(23,107,55,.10); border-radius: 18px; padding: 13px;
}
.quick-facts strong { display: block; color: var(--green-dark); font-size: 18px; line-height: 1.1; }
.quick-facts span { display: block; color: var(--muted); font-size: 12px; font-weight: 800; margin-top: 3px; }
.gallery-grid { display: grid; grid-template-columns: 1.1fr .9fr .9fr; gap: 16px; }
.gallery-card {
  border-radius: 28px; overflow: hidden; min-height: 280px; background: #eaf7ed;
  position: relative; box-shadow: 0 18px 48px rgba(23,107,55,.08);
}
.gallery-card.large { grid-row: span 2; min-height: 576px; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.gallery-caption {
  position: absolute; left: 18px; right: 18px; bottom: 18px; padding: 14px;
  border-radius: 18px; background: rgba(255,255,255,.90); backdrop-filter: blur(12px);
}
.gallery-caption strong { color: var(--green-dark); display: block; line-height: 1.2; }
.gallery-caption span { color: var(--muted); display: block; font-size: 12px; font-weight: 800; margin-top: 4px; }
.split-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; align-items: start; }
.sticky-cta {
  position: sticky; top: 112px; border-radius: 30px; padding: 26px;
  background: linear-gradient(135deg, #15291b, var(--green-dark)); color: white; box-shadow: var(--shadow);
}
.sticky-cta h2 { font-family: 'Playfair Display', serif; font-size: 38px; line-height: 1.05; letter-spacing: -.04em; margin-bottom: 12px; }
.sticky-cta p { color: rgba(255,255,255,.78); margin-bottom: 18px; }
.content-card {
  background: rgba(255,255,255,.86); border: 1px solid var(--border); border-radius: 30px; padding: 28px;
  box-shadow: 0 18px 52px rgba(23,107,55,.08); margin-bottom: 18px;
}
.content-card h2 {
  font-family: 'Playfair Display', serif; font-size: 36px; letter-spacing: -.035em; line-height: 1.05;
  color: #15291b; margin-bottom: 14px;
}
.content-card p { color: #56635b; font-weight: 650; margin-bottom: 14px; }
.benefit-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 16px; }
.benefit-list div {
  display: flex; gap: 10px; align-items: flex-start; border-radius: 18px; background: #f7fbf5; border: 1px solid rgba(23,107,55,.10); padding: 14px;
}
.benefit-list i { color: var(--gold); margin-top: 4px; }
.benefit-list strong { display: block; color: var(--green-dark); }
.benefit-list span { display: block; color: var(--muted); font-size: 13px; font-weight: 700; }
.amenities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.amenity {
  border-radius: 18px; padding: 14px; background: #f7fbf5; border: 1px solid rgba(23,107,55,.10);
  display: flex; gap: 10px; align-items: flex-start;
}
.amenity i { color: var(--green-dark); margin-top: 5px; }
.amenity strong { display: block; line-height: 1.2; }
.amenity span { display: block; color: var(--muted); font-size: 12px; font-weight: 700; margin-top: 3px; }
.rating-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 16px; }
.rating-card {
  border-radius: 22px; background: #f7fbf5; border: 1px solid rgba(23,107,55,.11); padding: 18px; text-align: center;
}
.rating-card strong { display: block; color: var(--green-dark); font-size: 30px; line-height: 1; }
.rating-card span { color: var(--muted); font-size: 13px; font-weight: 900; }
.local-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.local-item {
  border-radius: 18px; border: 1px solid rgba(23,107,55,.10); background: #fff; padding: 14px;
  display: flex; justify-content: space-between; gap: 10px; font-weight: 850;
}
.local-item span { color: var(--muted); font-weight: 700; }
footer { padding: 54px 0 30px; background: #102016; color: #fff; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 30px; margin-bottom: 34px; }
.footer-logo { width: 150px; background: #fff; border-radius: 22px; padding: 8px; margin-bottom: 18px; }
.footer-grid p, .footer-grid a, .footer-bottom { color: rgba(255,255,255,.68); font-size: 14px; }
.footer-grid h3 { font-size: 15px; margin-bottom: 14px; color: #fff; }
.footer-links { display: grid; gap: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.10); padding-top: 22px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

@media (max-width: 1020px) {
  .hero-grid, .booking-wrap, .platform-strip, .footer-grid, .detail-hero-grid, .split-section { grid-template-columns: 1fr; }
  .properties-grid { grid-template-columns: 1fr 1fr; }
  .experience-grid { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-actions { display: none; }
  .mobile-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav.open { align-items: flex-start; padding: 18px 0; }
  .nav.open .nav-links, .nav.open .nav-actions {
    display: flex; position: absolute; left: 20px; right: 20px; background: #fff;
    border: 1px solid var(--border); box-shadow: var(--shadow);
  }
  .nav.open .nav-links {
    top: 86px; border-radius: 24px 24px 0 0; padding: 22px; flex-direction: column; align-items: flex-start; gap: 14px;
  }
  .nav.open .nav-actions { top: 278px; border-radius: 0 0 24px 24px; padding: 0 22px 22px; }
  .sticky-cta { position: relative; top: auto; }
}
@media (max-width: 720px) {
  .container { width: min(100% - 28px, 1180px); }
  .brand-logo { width: 88px; }
  .brand-text strong { font-size: 15px; }
  .brand-text span { font-size: 10px; }
  .hero { padding: 46px 0 42px; }
  .trust-row, .properties-grid, .form-grid, .experience-grid, .platform-logos, .property-actions,
  .quick-facts, .gallery-grid, .benefit-list, .amenities-grid, .rating-cards, .local-grid {
    grid-template-columns: 1fr;
  }
  .section-heading { display: block; }
  .section-heading p { margin-top: 12px; }
  .hero-image, .detail-gallery-main { height: 430px; min-height: 430px; }
  .floating-card { left: 24px; right: 24px; bottom: 24px; }
  .mini-ratings { grid-template-columns: 1fr; }
  .platform-strip, .booking-info, .booking-form, .detail-copy { border-radius: 26px; padding: 22px; }
  .gallery-card, .gallery-card.large { min-height: 320px; }
  footer { margin-top: 30px; }
}
