/* ============================================
   LANDING PAGE — Premium / Boutique Redesign
   ============================================ */

body {
  margin: 0;
  background: #fff;
  color: var(--text);
  font-family: var(--font-ui);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  opacity: 0;
  transition: opacity 0.35s ease-out;
}
body.page-loaded {
  opacity: 1;
}

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: background 0.3s;
}
.site-header .wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.site-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}
.site-brand img { width: 32px; height: 32px; }
.site-brand-name {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.2px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.15s;
}
.site-nav a:hover { background: var(--surface-hover); }
.nav-cta {
  background: var(--primary-dark) !important;
  color: #fff !important;
  border-radius: 8px !important;
  padding: 8px 18px !important;
}
.nav-cta:hover { opacity: 0.9; background: var(--primary-dark) !important; }

/* Mobile hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text);
}
.menu-toggle svg { width: 24px; height: 24px; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 64px; /* header height */
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.35) 40%,
    rgba(0,0,0,0.08) 70%,
    rgba(0,0,0,0) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px;
  width: 100%;
}
.hero-inner {
  max-width: 580px;
}
.hero h1 {
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.1;
  color: #fff;
  margin: 0;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,0.88);
  margin: 20px 0 0;
  line-height: 1.55;
  max-width: 44ch;
}
.hero-actions {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background: var(--primary-dark);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-hero-primary:hover {
  transform: translateY(-1px);
  background: #2e7a50;
  box-shadow: 0 4px 16px rgba(55,140,92,0.35);
}
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s;
}
.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.55);
}
/* ---------- HERO TRUST STRIP ---------- */
.hero-trust {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-trust-line {
  font-size: 13px;
  color: rgba(255,255,255,0.58);
  letter-spacing: 0.15px;
  line-height: 1.6;
}
.hero-trust-line a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  transition: color 0.15s;
}
.hero-trust-line a:hover {
  color: rgba(255,255,255,0.92);
  text-decoration: underline;
}
.hero-trust-sep {
  margin: 0 7px;
  opacity: 0.4;
}

/* ---------- SCROLL CUE ---------- */
.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.scroll-cue:hover { color: rgba(255,255,255,0.75); }
.scroll-cue-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.scroll-cue svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  animation: scrollBounce 2.4s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* ---------- SECTIONS (shared) ---------- */
.section {
  padding: 120px 24px;
}
.section--compact { padding: 88px 24px; }
.section--green {
  background: var(--primary-light);
}
.section .wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-dark);
  margin: 0 0 12px;
}
.section-heading {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0;
}
.section-subtext {
  font-size: 17px;
  color: var(--text-light);
  margin: 16px 0 0;
  max-width: 60ch;
  line-height: 1.65;
}
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---------- GALLERY ---------- */
.gallery-grid {
  display: grid;
  gap: 14px;
  margin-top: 48px;
}
.gallery-row-lg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.gallery-row-sm {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: var(--surface-hover);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: box-shadow 0.4s ease;
}
.gallery-item:hover {
  box-shadow: 0 14px 32px rgba(0,0,0,0.11);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.gallery-item:hover img {
  transform: scale(1.04);
}
.gallery-row-lg .gallery-item { aspect-ratio: 16 / 10; }
.gallery-row-sm .gallery-item { aspect-ratio: 4 / 3; }

/* ---------- ROOM CARDS ---------- */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.room-card {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.25s;
}
.room-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.09);
}
.room-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.room-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.room-card:hover .room-card-img img {
  transform: scale(1.03);
}
.room-card-body {
  padding: 20px 22px 24px;
}
.room-card-name {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 6px;
}
.room-card-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.55;
  margin: 0;
}
.rooms-cta {
  margin-top: 40px;
  text-align: center;
}

/* ---------- POSITIONING ---------- */
.positioning {
  max-width: 680px;
}
.positioning p {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.7;
  margin: 20px 0 0;
}

/* ---------- BENEFITS ---------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 56px;
}
.benefit-item { text-align: center; }
.benefit-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #edf8f1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary-dark);
}
.benefit-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}
.benefit-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 8px;
}
.benefit-text {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 32ch;
  margin: 0 auto;
}

/* ---------- DETAILS ---------- */
.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 48px;
}
.details-text h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--text);
}
.details-text p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0;
}
.icon-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.icon-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.45;
}
.icon-list-dot {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #edf8f1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary-dark);
}
.icon-list-dot svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

/* ---------- LOCATION ---------- */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 48px;
}
.location-text p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0 0 16px;
}
.location-list {
  margin-top: 28px !important;
}
.location-map {
  min-height: 380px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface-hover);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

/* ---------- SECTION DIVIDERS ---------- */
.section--divided {
  border-top: 1px solid rgba(0,0,0,0.06);
}

/* ---------- COMMUNITY ---------- */
.community-content {
  max-width: 680px;
}
.community-content p {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.7;
  margin: 20px 0 0;
}

/* ---------- CREDIBILITY ---------- */
.credibility {
  font-size: 14px;
  color: var(--text-lighter, #959da5);
  letter-spacing: 0.2px;
  margin-top: 24px;
}

/* ---------- PRICING PREVIEW ---------- */
.pricing-preview {
  max-width: 560px;
}
.pricing-anchor {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 32px 0 0;
}
.pricing-anchor span {
  font-size: 0.4em;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0;
}
.pricing-note {
  font-size: 14px;
  color: var(--text-lighter, #959da5);
  margin: 12px 0 0;
  letter-spacing: 0.1px;
}
.pricing-points {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-points li {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.5;
}
.pricing-points li::before {
  content: '\2713';
  display: inline-block;
  margin-right: 10px;
  color: var(--primary-dark);
  font-weight: 600;
}
.pricing-actions {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---------- CTA ---------- */
.cta-section {
  text-align: center;
  padding: 120px 24px;
  background: var(--primary-light);
}
.cta-section .wrap {
  max-width: 640px;
  margin: 0 auto;
}
.cta-heading {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: var(--text);
  margin: 0;
  letter-spacing: -0.01em;
}
.cta-text {
  font-size: 17px;
  color: var(--text-light);
  margin: 16px 0 0;
  line-height: 1.6;
}
.cta-actions {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-cta--primary {
  background: var(--primary-dark);
  color: #fff;
  border: none;
}
.btn-cta--primary:hover {
  transform: translateY(-1px);
  background: #2e7a50;
  box-shadow: 0 4px 16px rgba(55,140,92,0.3);
}
.btn-cta--secondary {
  background: #fff;
  color: var(--primary-dark);
  border: 1px solid var(--primary-dark);
}
.btn-cta--secondary:hover {
  background: #f0faf3;
  border-color: #2e7a50;
  transform: translateY(-1px);
}
.cta-reassurance {
  margin: 16px 0 0;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.1px;
}

/* ---------- FOOTER ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 24px;
  font-size: 13px;
  color: var(--text-light);
}
.site-footer .wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--primary-dark); text-decoration: underline; }
.footer-sep { opacity: 0.4; }
.footer-acknowledgement {
  margin-top: 20px;
  font-size: 12px;
  color: var(--text-lighter, #999);
  text-align: center;
  max-width: 80ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.footer-directory {
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-lighter, #999);
  text-align: center;
  line-height: 1.6;
}
.footer-directory a {
  color: var(--text-light);
  text-decoration: none;
}
.footer-directory a:hover { text-decoration: underline; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .site-nav { display: none; }
  .site-nav.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: #fff;
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    z-index: 99;
    gap: 4px;
  }
  .site-nav.is-open a {
    padding: 12px 16px;
    font-size: 16px;
    border-radius: 8px;
  }
  .menu-toggle { display: block; }

  .hero { min-height: 70vh; }
  .hero h1 { font-size: 32px; }
  .hero-content { padding: 48px 24px; }

  .gallery-row-lg { grid-template-columns: 1fr; }
  .gallery-row-sm { grid-template-columns: 1fr 1fr; }

  .benefits-grid { grid-template-columns: 1fr; gap: 40px; }

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

  .details-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .location-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .location-map { min-height: 300px; }

  .section { padding: 72px 20px; }
  .section--compact { padding: 56px 20px; }
  .cta-section { padding: 80px 20px; }
  .scroll-cue { bottom: 20px; }
}

@media (max-width: 520px) {
  .gallery-row-sm { grid-template-columns: 1fr; }
  .rooms-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions a { text-align: center; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .footer-row { flex-direction: column; align-items: flex-start; }
}
