/* ===== Design Tokens ===== */
:root {
  --cream: #fbf6ea;
  --header-glass: rgba(251,249,246,0.9);
  --dark: #161616;
  --dark-card: #1f1f1f;
  --gold: #e8c789;
  --gold-deep: #b8863a;
  --text-dark-secondary: #a39d8f;
  --text-dark-primary: #f2ede2;
  --text-light-secondary: #5a564e;
  --text-light-primary: #1b1b1b;
  --address-text: #4a4638;
  --muted-label: #7a756c;
  --border-light: #e6e0d3;
  --border-dark: #333;
  --border-outline: #dcd6c9;
  --pill-bg: #f0e6cd;
  --max-width: 1400px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--text-light-primary);
  overflow-x: hidden;
  background: var(--cream);
}

a { color: var(--text-light-primary); text-decoration: none; }
a:hover { color: var(--gold-deep); }
::placeholder { color: #9a9690; }
input, textarea, button { outline: none; font-family: inherit; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-cream { background: var(--cream); padding: 100px 48px 200px; }
.section-dark { background: var(--dark); padding: 100px 48px 200px; }

h1, h2 { margin: 0; }
.white { color: #fff; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--gold-deep);
}
.eyebrow span:last-child {
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em; color: var(--muted-label);
}

.eyebrow-label {
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em; display: inline-block;
}
.eyebrow-label.gold { color: var(--gold); }
.eyebrow-label.gold-deep { color: var(--gold-deep); }

.section-head { margin-bottom: 48px; }
.section-head.center { text-align: center; margin-bottom: 56px; }
.section-head h2 { margin-top: 14px; font-size: 40px; font-weight: 600; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 17px 34px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
}
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { color: var(--gold); }
.btn-outline { border: 1.5px solid var(--border-outline); color: var(--text-light-primary); background: transparent; }
.btn-book { padding: 12px 26px; font-size: 13px; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--header-glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.logo img { height: 64px; width: 64px; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { font-size: 14px; font-weight: 600; color: var(--text-light-primary); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 24px;
  background: var(--text-light-primary);
  margin: 0 auto;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 0 24px 20px;
}
.nav-mobile a {
  padding: 12px 0;
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1px solid var(--border-light);
}
.nav-mobile .btn { margin-top: 12px; text-align: center; }

.site-header.menu-open .nav-mobile { display: flex; }

/* ===== Hero ===== */
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: end;
}
.fade-up {
  animation: fadeUp 0.7s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-copy h1 {
  font-size: 88px;
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  font-weight: 600;
}
.accent-dot { color: var(--gold-deep); }
.lead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-light-secondary);
  margin: 0 0 40px;
  max-width: 440px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-media { position: relative; height: 520px; border-radius: 24px; overflow: hidden; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-stat-card {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.stat-num { font-size: 22px; font-weight: 600; }
.stat-label { font-size: 12px; color: var(--muted-label); }

/* ===== About / Why WeCare ===== */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
}
.about-copy h2 {
  font-size: 42px;
  line-height: 1.08;
  margin: 16px 0 24px;
  font-weight: 600;
}
.body-dark {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-dark-secondary);
  margin: 0 0 36px;
  max-width: 340px;
}
.pull-quote {
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: var(--gold);
  margin: 0 0 24px;
  max-width: 320px;
}
.link-underline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 4px;
}
.link-underline:hover { color: var(--gold); }

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border-dark);
  border-radius: 20px;
  overflow: hidden;
}
.about-card { background: var(--dark); padding: 32px; }
.badge {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
  margin-bottom: 20px;
}
.card-title { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: #fff; }
.about-card p { font-size: 14px; line-height: 1.7; color: var(--text-dark-secondary); margin: 0; }

/* ===== Amenities ===== */
.h-amenities { font-size: 48px; margin: 0 0 14px; font-weight: 800; letter-spacing: -0.01em; }
.subhead { font-size: 15px; color: var(--muted-label); }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.amenity {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 12px 8px;
}
.amenity-title { font-size: 18px; font-weight: 800; margin-bottom: 6px; }
.amenity p { font-size: 13.5px; line-height: 1.6; color: var(--muted-label); margin: 0; }
.amenity-more {
  justify-content: center;
  gap: 8px;
  border-left: 1.5px solid var(--border-light);
}

/* ===== Rooms ===== */
.rooms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.room-card {
  background: var(--dark-card);
  border-radius: 20px;
  padding: 36px;
}
.room-card-outline { border: 1.5px solid var(--gold); }
.room-title-row {
  display: flex; align-items: center; gap: 12px; margin-bottom: 8px;
}
.room-name { font-size: 26px; font-weight: 600; color: #fff; }
.tag-pill {
  background: var(--gold); color: var(--dark);
  font-size: 11px; font-weight: 700;
  padding: 5px 12px; border-radius: 100px;
}
.room-desc { font-size: 14px; line-height: 1.7; color: var(--text-dark-secondary); margin: 0 0 24px; }
.room-bullets {
  font-size: 13px; color: var(--text-dark-secondary);
  display: flex; flex-direction: column; gap: 8px;
}

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 260px 180px;
  gap: 18px;
}
.gallery-cell { border-radius: 20px; overflow: hidden; }
.gallery-cell img { width: 100%; height: 100%; object-fit: cover; }
.gallery-large { grid-row: span 2; }
.gallery-empty { background: repeating-linear-gradient(45deg, #efe9db, #efe9db 10px, #f5f0e5 10px, #f5f0e5 20px); }

/* ===== How It Works ===== */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding-top: 8px;
}
.timeline-line {
  position: absolute;
  top: 23px; left: 5%; right: 5%;
  height: 2px; background: var(--border-dark);
  z-index: 0;
}
.timeline-step { position: relative; z-index: 1; }
.timeline-badge {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--gold); color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px;
  margin-bottom: 20px;
}
.timeline-step p { font-size: 14px; line-height: 1.7; color: var(--text-dark-secondary); margin: 0; }

/* ===== FAQ ===== */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.faq-card {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  overflow: hidden;
  box-shadow: 0 20px 50px -30px rgba(0,0,0,0.15);
}
.faq-card-dark { background: var(--dark); box-shadow: none; }
.ghost-num {
  position: absolute; top: -14px; right: 16px;
  font-size: 96px; font-weight: 800; color: var(--gold-deep);
  opacity: 0.1; line-height: 1;
}
.ghost-num-gold { color: var(--gold); opacity: 0.18; }
.faq-q { position: relative; font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.faq-a { position: relative; font-size: 14px; line-height: 1.7; color: var(--text-light-secondary); margin: 0; }
.faq-a-dark { color: var(--text-dark-secondary); }

/* ===== Testimonials ===== */
.h-testimonials { font-size: 36px; }
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.testimonial-card { background: var(--dark-card); border-radius: 20px; padding: 36px; }
.quote-mark { font-size: 48px; color: var(--gold); line-height: 1; margin-bottom: 12px; }
.quote-text { font-size: 17px; line-height: 1.7; color: var(--text-dark-primary); margin: 0 0 24px; }
.testimonial-person { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--gold); color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
}
.person-name { font-size: 13px; font-weight: 700; color: #c9c2b3; }

/* ===== Location ===== */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.h-location { font-size: 34px; margin: 16px 0 22px; font-weight: 600; }
.address { font-size: 16px; line-height: 1.8; color: var(--address-text); margin: 0; }
.location-pill {
  display: inline-block; margin-top: 14px;
  font-size: 13px; font-weight: 700; color: var(--gold-deep);
  background: var(--pill-bg); padding: 8px 16px; border-radius: 100px;
}
.contact-line {
  font-size: 16px; line-height: 1.8; color: var(--dark);
  margin: 8px 0 0; font-weight: 700;
}
.contact-line a { color: inherit; }
.location-grid > *, .contact-panel > * { min-width: 0; }
.contact-line, .contact-sub, .address { overflow-wrap: anywhere; }
.map-slot { height: 300px; border-radius: 20px; overflow: hidden; }
.map-slot iframe { width: 100%; height: 100%; border: 0; }

/* ===== Contact / Book ===== */
.contact-section { padding-bottom: 140px; }
.contact-panel {
  background: var(--dark-card);
  border-radius: 32px;
  padding: 80px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
}
.contact-info h2 { font-size: 42px; margin: 16px 0 20px; font-weight: 600; }
.contact-sub { font-size: 15px; color: var(--text-dark-secondary); line-height: 1.7; margin: 16px 0 0; }
.contact-sub:first-of-type { margin-top: 0; }
.gold-link { color: var(--gold); font-weight: 700; }

.enquiry-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.enquiry-form input,
.enquiry-form textarea {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.14);
  color: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  font-size: 15px;
  width: 100%;
}
.enquiry-form textarea { resize: vertical; }
.span-2 { grid-column: span 2; }
.submit-btn {
  background: var(--gold); color: var(--dark);
  padding: 18px; border: none; border-radius: 100px;
  font-size: 15px; font-weight: 800; cursor: pointer;
}
.submit-btn:hover { opacity: 0.92; }
.submit-btn:disabled { opacity: 0.7; cursor: default; }
.form-status { margin: 0; font-size: 14px; min-height: 20px; color: var(--gold); }
.form-status-error { color: #e9897e; }
.enquiry-form .botcheck { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; pointer-events: none; }

/* ===== Footer ===== */
.site-footer { background: var(--dark); padding: 36px 48px; }
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand img { height: 30px; width: 30px; object-fit: contain; }
.footer-brand span, .footer-tagline { color: #8a857a; font-size: 13px; }

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .hero-copy h1 { font-size: 64px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px 160px; }
  .gallery-large { grid-row: span 1; grid-column: span 2; }
}

@media (max-width: 900px) {
  .section-cream, .section-dark { padding: 72px 24px 100px; }
  .contact-section { padding-bottom: 100px; }
  .header-inner { padding: 14px 24px; }
  .nav-links { display: none; }
  .btn-book { display: none; }
  .nav-toggle { display: flex; }

  .hero-grid { grid-template-columns: 1fr; gap: 36px; align-items: stretch; }
  .hero-copy h1 { font-size: 52px; }
  .hero-media { height: 360px; order: -1; }

  .rooms-grid, .testimonial-grid, .faq-grid, .location-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr 1fr; }
  .about-cards { grid-template-columns: 1fr; }

  .timeline { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
  .timeline-line { display: none; }

  .contact-panel { grid-template-columns: 1fr; padding: 40px 24px; border-radius: 24px; }
  .enquiry-form { grid-template-columns: 1fr; }
  .span-2 { grid-column: span 1; }

  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 150px; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
  .hero-copy h1 { font-size: 40px; }
  .h-amenities { font-size: 34px; }
  .section-head h2 { font-size: 30px; }
  .amenities-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-large { grid-column: span 1; }
  .gallery-cell { height: 220px; }
  .btn { padding: 15px 26px; font-size: 14px; }
}
