:root {
  --primary: #234f4b;
  --primary-deep: #173937;
  --secondary: #6f8a84;
  --sand: #c7a874;
  --mist: #edf3f1;
  --text: #1f2a29;
  --muted: #60706c;
  --white: #ffffff;
  --line: rgba(255,255,255,0.18);
  --shadow: 0 18px 50px rgba(15, 32, 29, 0.18);
  --radius: 24px;
  --container: min(1240px, calc(100% - 48px));
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Manrope, Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #f6f8f7;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
video { display: block; max-width: 100%; }
.hero-image { position: absolute; inset: 0; overflow: hidden; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); animation: kenburnsHero 18s ease-in-out infinite alternate; }
@keyframes kenburnsHero {
  0% { transform: scale(1.08) translate3d(0,0,0); }
  50% { transform: scale(1.16) translate3d(-1.5%, -1%, 0); }
  100% { transform: scale(1.12) translate3d(1.5%, 1%, 0); }
}
.container { width: var(--container); margin: 0 auto; }
.section { padding: 88px 0; }
.section-sm { padding: 64px 0; }
.bg-soft { background: linear-gradient(180deg, #f4f8f7 0%, #edf3f0 100%); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px; border-radius: 999px; background: rgba(255,255,255,0.16);
  backdrop-filter: blur(8px); color: var(--white); letter-spacing: 0.12em; text-transform: uppercase;
  font-size: 12px; font-weight: 700;
}
.eyebrow.dark { background: rgba(35,79,75,0.08); color: var(--primary); }
.section-title { font-size: clamp(30px, 3.6vw, 48px); line-height: 1.08; margin: 18px 0; font-weight: 800; font-family: Outfit, Manrope, sans-serif; letter-spacing: -0.03em; }
.section-title.light, .lead.light, .hero h1, .hero p { color: var(--white); }
.lead { font-size: 18px; color: var(--muted); max-width: 680px; }
.btn-group { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px; border-radius: 999px; font-weight: 700; transition: 0.25s ease;
  border: 1px solid transparent;
}
.btn-primary { background: var(--sand); color: #16211f; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-secondary { background: rgba(255,255,255,0.14); color: var(--white); border-color: rgba(255,255,255,0.28); }
.btn-secondary:hover { background: rgba(255,255,255,0.2); }
.btn-outline { border: 1px solid rgba(35,79,75,0.18); color: var(--primary); background: #fff; }
.btn-outline:hover { box-shadow: var(--shadow); transform: translateY(-2px); }

.header {
  position: sticky; top: 0; z-index: 40; backdrop-filter: blur(14px);
  background: rgba(255,255,255,0.92); border-bottom: 1px solid rgba(34,69,66,0.08);
}
.navbar {
  width: var(--container); margin: 0 auto; min-height: 96px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 16px; }
.brand img { width: 76px; height: 76px; object-fit: contain; }
.brand-text strong { display: block; font-size: 25px; line-height: 1; color: var(--primary-deep); font-family: Outfit, Manrope, sans-serif; }
.brand-text span { display: block; letter-spacing: 0.20em; font-size: 11px; text-transform: uppercase; color: #667673; margin-top: 6px; }
.nav-links { display: flex; align-items: center; gap: 28px; font-weight: 700; font-size: 16px; }
.nav-links a { position: relative; padding: 6px 0; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -8px; width: 0; height: 2px; background: var(--primary);
  transition: width .25s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.mobile-toggle { display: none; }
.phone-chip {
  display: inline-flex; align-items: center; gap: 10px; background: var(--primary); color: #fff;
  padding: 12px 18px; border-radius: 999px; font-weight: 700;
}

.hero {
  position: relative; min-height: calc(100vh - 88px); overflow: hidden; display: flex; align-items: center;
  background: #123432;
}
.hero-image, .hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(14,31,29,0.72) 0%, rgba(18,51,48,0.52) 40%, rgba(25,61,57,0.30) 100%);
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: center; min-height: calc(100vh - 88px); }
.hero h1 {
  font-size: clamp(50px, 7vw, 88px); line-height: 0.95; margin: 18px 0 18px; letter-spacing: -0.05em; font-family: Outfit, Manrope, sans-serif; max-width: 760px;
}
.hero p { font-size: 18px; max-width: 650px; color: rgba(255,255,255,0.9); }
 .hero-copy { max-width: 760px; padding: 34px 0; }
.hero-card, .video-box, .hero-note { display: none; }

.split-grid, .two-col { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 34px; align-items: center; }
.card {
  background: #fff; border-radius: 28px; box-shadow: var(--shadow); padding: 28px;
}
.image-card { overflow: hidden; border-radius: 28px; box-shadow: var(--shadow); }
.image-card img { width: 100%; height: 100%; object-fit: cover; }
.highlight-panel {
  background: linear-gradient(180deg, rgba(35,79,75,0.98), rgba(28,61,58,0.98));
  border-radius: 32px; color: #fff; padding: 40px;
}
.check-list { display: grid; gap: 14px; margin: 26px 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; }
.check-list li::before { content: "✓"; color: var(--sand); font-weight: 900; }

.room-feature {
  display: grid; grid-template-columns: minmax(0,1.05fr) minmax(0,0.95fr); gap: 28px; align-items: stretch;
  background: #fff; padding: 18px; border-radius: 34px; box-shadow: var(--shadow);
}
.room-feature img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; border-radius: 26px; }
.room-copy { padding: 18px 14px 18px 8px; }
.meta-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 18px 0 24px; }
.meta-pill {
  padding: 10px 14px; border-radius: 999px; background: rgba(35,79,75,0.08); color: var(--primary); font-weight: 700; font-size: 14px;
}

.gallery-grid {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px;
}
.gallery-grid .item { overflow: hidden; border-radius: 24px; box-shadow: var(--shadow); min-height: 240px; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-grid .item:hover img { transform: scale(1.04); }
.gallery-grid .wide { grid-column: span 6; }
.gallery-grid .tall { grid-column: span 3; }

.amenity-grid, .faq-grid, .places-grid, .contact-grid, .testimonial-grid {
  display: grid; gap: 20px;
}
.amenity-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
.amenity-card, .place-card, .testimonial, .faq-item, .contact-card {
  background: #fff; border-radius: 24px; padding: 24px; box-shadow: var(--shadow);
}
.amenity-card h3, .place-card h3, .contact-card h3 { margin-top: 0; font-size: 22px; color: var(--primary-deep); }
.amenity-card p, .place-card p, .testimonial p, .contact-card p { margin-bottom: 0; color: var(--muted); }

.places-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.places-grid.enhanced { grid-template-columns: repeat(4, minmax(0,1fr)); margin-top: 28px; }
.place-card strong { color: var(--primary); display: inline-flex; margin-bottom: 14px; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; padding: 8px 12px; border-radius: 999px; background: rgba(35,79,75,0.08); }
.testimonial-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.places-intro { display:grid; grid-template-columns: 1.05fr .95fr; gap: 28px; align-items:center; }
.scenic-places { background: linear-gradient(180deg, #eef4f2 0%, #f8fbfa 100%); }
.scenic-card img { min-height: 320px; object-fit: cover; }
.place-card { position: relative; overflow: hidden; border: 1px solid rgba(35,79,75,0.08); transition: transform .25s ease, box-shadow .25s ease; }
.place-card::before { content:""; position:absolute; inset:0 auto auto 0; width:100%; height:4px; background: linear-gradient(90deg, var(--sand), var(--primary)); }
.place-card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(15,32,29,.14); }
.testimonial .name { font-weight: 800; color: var(--primary-deep); margin-top: 16px; }
.testimonial .role { color: #7e8e89; font-size: 14px; }

.page-banner {
  position: relative; min-height: 420px; display: flex; align-items: end; overflow: hidden;
  background: #173937;
}
.page-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-banner::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,24,23,0.35), rgba(12,24,23,0.65));
}
.page-banner .container { position: relative; z-index: 1; padding-bottom: 64px; }
.breadcrumb { color: rgba(255,255,255,0.92); display: flex; gap: 10px; align-items: center; flex-wrap: wrap; font-weight: 600; }
.breadcrumb span { opacity: 0.78; }
.page-banner h1 { color: #fff; font-size: clamp(40px,5vw,64px); margin: 16px 0 0; }

.faq-grid { grid-template-columns: 1fr; }
.faq-item h3 { margin: 0 0 10px; color: var(--primary-deep); }

.contact-grid { grid-template-columns: 1fr 1fr; }
.contact-card iframe { width: 100%; border: 0; border-radius: 20px; min-height: 280px; }
form { display: grid; gap: 14px; }
input, textarea {
  width: 100%; border: 1px solid rgba(35,79,75,0.14); border-radius: 16px; padding: 15px 16px; font: inherit; color: var(--text);
  background: #fff;
}
textarea { min-height: 150px; resize: vertical; }

.footer {
  background: #152f2d; color: rgba(255,255,255,0.82); padding: 62px 0 24px; margin-top: 80px;
}
.footer-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 0.9fr; gap: 32px; }
.footer h3, .footer h4 { color: #fff; margin-top: 0; }
.footer p, .footer li { color: rgba(255,255,255,0.74); }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer .bottom {
  margin-top: 34px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}

@media (max-width: 1080px) {
  .hero-grid, .split-grid, .two-col, .room-feature, .contact-grid, .footer-grid, .places-grid, .testimonial-grid, .amenity-grid, .places-intro, .places-grid.enhanced {
    grid-template-columns: 1fr;
  }
  .gallery-grid .wide, .gallery-grid .tall { grid-column: span 12; }
  .video-box { min-height: 360px; }
}

@media (max-width: 820px) {
  .mobile-toggle {
    display: inline-flex; border: 0; background: transparent; font-size: 28px; color: var(--primary);
  }
  .phone-chip { display: none; }
  .nav-links {
    position: absolute; top: 88px; left: 0; right: 0; background: rgba(255,255,255,0.98); border-bottom: 1px solid rgba(34,69,66,0.08);
    flex-direction: column; padding: 18px 24px 26px; display: none;
  }
  .nav-links.show { display: flex; }
  .hero { min-height: auto; padding: 72px 0; }
  .hero h1 { font-size: clamp(42px, 13vw, 72px); }
  .section, .section-sm { padding: 72px 0; }
  .navbar { min-height: 84px; }
}

@media (max-width: 560px) {
  :root { --container: min(100% - 26px, 100% - 26px); }
  .brand img { width: 60px; height: 60px; }
  .brand-text strong { font-size: 20px; }
  .section-title { font-size: 34px; }
  .hero h1 { font-size: 52px; }
  .hero p, .lead { font-size: 16px; }
  .btn { width: 100%; }
  .hero-note { left: 16px; right: 16px; bottom: 16px; }
  .page-banner { min-height: 320px; }
}
