:root {
  --primary: #1F5F61;
  --secondary: #D9C6A5;
  --bg: #F7F4EE;
  --text: #2D2D2D;
  --white: #ffffff;
  --muted: #6a6a6a;
  --border: rgba(45,45,45,0.08);
  --shadow: 0 18px 45px rgba(16, 37, 38, 0.08);
  --radius: 20px;
  --radius-lg: 28px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.section { padding: 84px 0; }
.section-sm { padding: 56px 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--secondary);
}
h1, h2, h3, h4 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.15;
  margin: 0 0 16px;
  color: #173739;
}
h1 { font-size: clamp(2.6rem, 5vw, 4.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: 1.5rem; }
p { margin: 0 0 18px; color: var(--muted); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.28s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.03); }
.btn-outline {
  border-color: rgba(255,255,255,0.65);
  color: var(--white);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
}
.btn-outline:hover { background: rgba(255,255,255,0.14); }
.btn-light {
  background: var(--white);
  color: var(--primary);
}
.btn-light:hover { transform: translateY(-2px); }
.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(247, 244, 238, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(45,45,45,0.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 20px;
}
.brand {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.brand-mark {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--primary);
}
.brand-sub {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-links {
  display: flex;
  gap: 26px;
  align-items: center;
  font-size: 0.95rem;
}
.nav-links a {
  color: #33585a;
  font-weight: 600;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(45,45,45,0.08);
  background: rgba(255,255,255,0.88);
  color: var(--primary);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(16,37,38,0.07);
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.28s ease, opacity 0.2s ease;
}
.mobile-menu {
  display: none;
  border-top: 1px solid rgba(45,45,45,0.06);
  background: rgba(247,244,238,0.96);
  backdrop-filter: blur(14px);
}
.mobile-menu-inner {
  padding: 16px 0 22px;
}
.mobile-nav-links {
  display: grid;
  gap: 8px;
}
.mobile-nav-links a {
  padding: 12px 14px;
  border-radius: 14px;
  color: #33585a;
  font-weight: 600;
}
.mobile-nav-links a:hover, .mobile-nav-links a.active {
  background: rgba(31,95,97,0.08);
  color: var(--primary);
}
.mobile-nav-cta {
  margin-top: 16px;
  width: 100%;
}
body.menu-open {
  overflow: hidden;
}
body.menu-open .mobile-menu {
  display: block;
}
body.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
body.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
body.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: var(--white);
  background: linear-gradient(rgba(15, 34, 35, 0.40), rgba(15, 34, 35, 0.54)), url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=1600&q=80') center/cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 140px;
  background: linear-gradient(180deg, rgba(247,244,238,0) 0%, rgba(247,244,238,0.96) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 30px;
  align-items: end;
}
.hero p { color: rgba(255,255,255,0.84); max-width: 640px; font-size: 1.08rem; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.glass-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.glass-card h3, .glass-card p { color: var(--white); }
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.stat {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 18px;
  padding: 18px;
}
.stat strong { display: block; font-size: 1.4rem; margin-bottom: 4px; }
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.card-body { padding: 24px; }
.card-image {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}
.badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(31,95,97,0.08);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
}
.feature-list, .amenities-list, .contact-list, .faq-list { list-style: none; padding: 0; margin: 0; }
.feature-list li, .amenities-list li, .contact-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  color: var(--muted);
}
.feature-list li::before, .amenities-list li::before, .contact-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-size: 1.2rem;
  line-height: 1;
}
.panel {
  padding: 34px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.image-stack {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 18px;
  align-items: end;
}
.image-stack img {
  border-radius: 24px;
  box-shadow: var(--shadow);
  min-height: 280px;
  object-fit: cover;
}
.image-stack .small {
  transform: translateY(38px);
}
.strip {
  background: linear-gradient(135deg, var(--primary), #143b3d);
  color: var(--white);
}
.strip p, .strip h2 { color: var(--white); }
.villa-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 12px 0 18px;
}
.meta-pill {
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(31,95,97,0.08);
  color: var(--primary);
  font-size: 0.92rem;
  font-weight: 600;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.gallery-grid .span-7 { grid-column: span 7; min-height: 380px; }
.gallery-grid .span-5 { grid-column: span 5; min-height: 380px; }
.gallery-grid .span-4 { grid-column: span 4; min-height: 280px; }
.testimonial {
  padding: 28px;
  background: rgba(255,255,255,0.92);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}
.testimonial strong { display: block; margin-top: 14px; color: var(--primary); }
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
label { font-weight: 600; color: #294d4f; }
input, textarea, select {
  width: 100%;
  border: 1px solid rgba(45,45,45,0.1);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  background: #fff;
}
textarea { min-height: 150px; resize: vertical; }
.footer {
  background: #173739;
  color: rgba(255,255,255,0.82);
  padding-top: 70px;
}
.footer h3, .footer h4, .footer a { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 28px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 34px;
  padding: 18px 0 26px;
  font-size: 0.92rem;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-cta-wrap {
  text-align: center;
  padding: 24px 0 44px;
}
.footer-cta-wrap .btn {
  min-width: 320px;
  max-width: 100%;
}
.page-hero {
  padding: 130px 0 90px;
  color: var(--white);
  background: linear-gradient(rgba(15, 34, 35, 0.45), rgba(15, 34, 35, 0.5)), var(--page-bg, url('https://images.unsplash.com/photo-1499793983690-e29da59ef1c2?auto=format&fit=crop&w=1600&q=80')) center/cover;
}
.page-hero p { color: rgba(255,255,255,0.85); max-width: 720px; }
.info-bar {
  margin-top: -36px;
  position: relative;
  z-index: 2;
}
.info-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.info-bar-item {
  background: var(--white);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.map-card {
  min-height: 100%;
  background: linear-gradient(135deg, rgba(31,95,97,0.12), rgba(217,198,165,0.22));
}
.notice {
  background: rgba(31,95,97,0.07);
  color: var(--primary);
  padding: 14px 18px;
  border-radius: 16px;
  font-weight: 600;
}
.table-like {
  display: grid;
  gap: 14px;
}
.table-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(45,45,45,0.08);
}
.table-row:last-child { border-bottom: 0; }
@media (max-width: 980px) {
  .hero-content, .grid-2, .grid-3, .grid-4, .footer-grid, .info-bar-grid, .form-grid { grid-template-columns: 1fr; }
  .nav { min-height: 78px; padding: 12px 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero { min-height: auto; padding: 110px 0 80px; }
  .stats { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .span-7, .gallery-grid .span-5, .gallery-grid .span-4 { grid-column: auto; min-height: 260px; }
  .image-stack { grid-template-columns: 1fr; }
  .image-stack .small { transform: none; }
}
@media (max-width: 640px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.9rem; }
  .section { padding: 68px 0; }
  .panel, .card-body, .glass-card { padding: 22px; }
  .footer-cta-wrap .btn { min-width: 0; width: 100%; }
  .brand-mark { font-size: 1.45rem; }
  .nav-toggle { width: 48px; height: 48px; border-radius: 14px; }
  .mobile-nav-links a { padding: 11px 12px; }
}
