/* ==========================================================================
   Open House — Lush Villa Seminyak
   Standalone stylesheet
   ========================================================================== */

*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  color: #fff;
  background: #0a0a0a;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

:root {
  --gold: #a6967b;
  --gold-soft: #a6967a;
  --bg-dark: #0a0a0a;
  --bg-darker: #000;
  --bg-card-dark: #141412;
  --bg-light: #f7f7f7;
  --text-muted: #555;
  --text-muted-light: #b6b6b6;
  --border-faint: rgba(255, 255, 255, 0.06);
  --container: 1200px;
  --gutter: 32px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.eyebrow {
  font-size: 10.4px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 32px;
}

.eyebrow--muted { color: var(--text-muted); }

.section-title {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.15;
  margin: 0;
  color: #000;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.92);
  border-bottom: 1px solid var(--border-faint);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand__name {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.72px;
  color: #fff;
}
.brand__sub {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 4px;
  color: #fff;
  margin-top: 4px;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__link {
  font-size: 13.12px;
  letter-spacing: 0.5px;
  color: #999;
  transition: color 0.2s;
}
.nav__link:hover { color: #fff; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font-size: 11.52px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0a0a0a;
  background: var(--gold);
  border: none;
  cursor: pointer;
  transition: filter 0.2s, transform 0.2s;
}
.btn:hover { filter: brightness(1.08); }
.btn--lg { padding: 15px 24px; font-size: 11.52px; }
.btn--block { width: 100%; }
.btn__icon { width: 14px; height: 14px; display: inline-block; }

.nav__cta {
  padding: 10px 20px;
  font-weight: 500;
  letter-spacing: 1.5px;
  font-size: 11.52px;
  color: #000;
}

.nav__toggle {
  display: none;
  background: transparent;
  border: 0;
  color: #fff;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
}
.nav__toggle span {
  width: 22px;
  height: 1.5px;
  background: #fff;
  display: block;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 859px;
  padding: 140px 24px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.55)),
                    url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero__inner {
  max-width: 900px;
  width: 100%;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10.88px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 28px;
}
.pill::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 3px;
  opacity: 0.96;
}

.hero__title {
  font-size: 54px;
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 36px;
  color: #fff;
}
.hero__title .accent { color: var(--gold); }

.hero__lead {
  font-size: 16.8px;
  font-weight: 300;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 40px;
  color: rgba(255,255,255,0.92);
}

.hero__cta { margin-bottom: 80px; }

.hero__stats {
  display: flex;
  gap: 56px;
  justify-content: center;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat__value {
  font-size: 32px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat__label {
  font-size: 10.4px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
}

/* ==========================================================================
   Why Section (Built for Longevity)
   ========================================================================== */
.why {
  background: #fff;
  padding: 100px 0 100px;
}
.why__head { margin-bottom: 56px; }
.why__head .section-title { max-width: 560px; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: rgba(255,255,255,0.06);
}

.feature {
  background: #000;
  border: 1px solid #f5f5f5;
  padding: 39px 31px;
  color: #fff;
  min-height: 244px;
}
.feature__icon {
  width: 35px;
  height: 35px;
  margin-bottom: 56px;
  object-fit: contain;
}
.feature__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
  margin: 0 0 10px;
  color: #fff;
}
.feature__text {
  font-size: 14.08px;
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
  color: rgba(255,255,255,0.92);
}

/* ==========================================================================
   What to Expect (Steps)
   ========================================================================== */
.steps {
  background: var(--bg-light);
  padding: 100px 0;
}
.steps__head { margin-bottom: 48px; }
.steps__head .section-title { color: #000; }

.steps__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 29px 25px;
  background: #fff;
  border: 1px solid var(--border-faint);
}
.step__num {
  font-size: 24px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1.5;
  flex: 0 0 28px;
}
.step__body { flex: 1; }
.step__title {
  font-size: 16.8px;
  font-weight: 600;
  line-height: 1.6;
  margin: 0 0 6px;
  color: #000;
}
.step__text {
  font-size: 13.12px;
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
  color: var(--text-muted);
}

/* ==========================================================================
   Trust Strip
   ========================================================================== */
.trust {
  background: #000;
  padding: 32px 24px;
}
.trust__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust__group {
  display: flex;
  align-items: center;
  gap: 24px;
  opacity: 0.7;
}
.trust__label {
  font-size: 9.6px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: #fff;
  max-width: 100px;
  line-height: 1.5;
}
.trust__certs {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}
.trust__cert {
  font-size: 18px;
  color: #fff;
}
.trust__divider {
  width: 1px;
  height: 40px;
  background: #fff;
  opacity: 0.4;
}
.trust__partners {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  opacity: 0.7;
}
.trust__partners img {
  height: 28px;
  width: auto;
  object-fit: contain;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
  background: #fff;
  padding: 80px 0;
}
.faq__inner { max-width: 1136px; padding: 0 24px; }
.faq__eyebrow { color: var(--gold-soft); }
.faq__title {
  font-size: 36px;
  font-weight: 600;
  margin: 0 0 32px;
  color: #000;
}
.faq__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 30px;
}
.faq__item {
  background: var(--bg-light);
  border: 1px solid var(--border-faint);
  padding: 28px 24px;
}
.faq__q {
  font-size: 16.8px;
  font-weight: 600;
  line-height: 1.6;
  margin: 0 0 9px;
  color: #000;
}
.faq__a {
  font-size: 13.12px;
  font-weight: 300;
  line-height: 1.7;
  margin: 0;
  color: var(--text-muted);
}

/* ==========================================================================
   Reserve / Form Section
   ========================================================================== */
.reserve {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-faint);
  padding: 100px 0;
}
.reserve__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.reserve__title {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 24px;
  color: #fff;
}
.reserve__lead {
  font-size: 15.2px;
  font-weight: 300;
  line-height: 1.7;
  margin: 0 0 32px;
  color: rgba(255,255,255,0.92);
}

.howit {
  background: var(--bg-card-dark);
  border: 1px solid rgba(166,150,122,0.2);
  padding: 20px 24px;
  margin: 0 0 32px;
}
.howit__label {
  font-size: 10.4px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 12px;
}
.howit__text {
  font-size: 13.12px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

.checks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.checks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.08px;
  font-weight: 300;
  color: rgba(255,255,255,0.92);
}
.checks li::before {
  content: '';
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background: transparent url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23a6967b' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><polyline points='3 8.5 6.5 12 13 4.5'/></svg>") center/contain no-repeat;
}

/* Form Card */
.form-card {
  background: #000;
  border: 1px solid var(--border-faint);
  padding: 41px 41px 40px;
}
.form-card__title {
  font-size: 20.8px;
  font-weight: 600;
  margin: 0 0 20px;
  padding: 0 0 20px;
  color: #fff;
  border-bottom: 1px solid var(--border-faint);
}

.form { display: grid; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form__group { display: flex; flex-direction: column; gap: 8px; }
.form__label {
  font-size: 10.88px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
}

.form__input,
.form__select {
  appearance: none;
  -webkit-appearance: none;
  background: var(--bg-dark);
  border: 1px solid var(--border-faint);
  color: #fff;
  font: 300 14.4px 'DM Sans', sans-serif;
  padding: 12px 16px;
  height: 45px;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
}
.form__input::placeholder { color: var(--text-muted); }
.form__input:focus,
.form__select:focus { border-color: var(--gold); }

.form__select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%23a6967b' stroke-width='1.5'><polyline points='1 1.5 6 6.5 11 1.5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 8px;
  padding-right: 40px;
  color: var(--text-muted);
}
.form__select.is-filled { color: #fff; }

.form__submit { margin-top: 6px; }

.form__note {
  font-size: 11.52px;
  font-weight: 300;
  text-align: center;
  color: rgba(255,255,255,0.85);
  margin: 0;
}

.wa-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  margin-top: 20px;
  border: 1px solid var(--border-faint);
  font-size: 12.5px;
  color: #a1a1a1;
  transition: color 0.2s, border-color 0.2s;
}
.wa-fallback:hover { color: #fff; border-color: rgba(255,255,255,0.2); }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: #000;
  padding: 64px 0 0;
}
.footer__inner { max-width: 1232px; padding: 0 24px; }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer__about {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.8;
  margin: 16px 0 0;
  max-width: 260px;
}
.footer__heading {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--text-muted-light);
  margin: 0 0 16px;
}
.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0.85;
}
.footer__list li { font-size: 14px; line-height: 1.4; }
.footer__list a { transition: color 0.2s; }
.footer__list a:hover { color: var(--gold); }
.footer__address {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.85;
  margin: 0 0 16px;
  font-style: normal;
}
.footer__address + p { font-size: 14px; opacity: 0.85; margin: 0 0 16px; }
.footer__social {
  display: flex;
  gap: 24px;
}
.footer__social a {
  color: var(--gold);
  font-size: 18px;
  transition: filter 0.2s;
}
.footer__social a:hover { filter: brightness(1.2); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.7);
  opacity: 0.7;
  font-size: 12px;
}
.footer__legal {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__legal a:hover { color: var(--gold); }

/* ==========================================================================
   WhatsApp Float
   ========================================================================== */
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: #25d366;
  color: #fff;
  border-radius: 60px;
  font-size: 12.8px;
  font-weight: 500;
  box-shadow: 0 4px 10px rgba(37,211,102,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(37,211,102,0.4);
}
.wa-float svg { width: 20px; height: 20px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 992px) {
  .hero__title { font-size: 42px; }
  .reserve__grid { grid-template-columns: 1fr; gap: 48px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature { border: 1px solid #f5f5f5; }
}

@media (max-width: 768px) {
  :root { --gutter: 20px; }
  .nav__menu { display: none; position: absolute; inset: 72px 0 auto 0; flex-direction: column; align-items: flex-start; gap: 0; padding: 16px 24px 24px; background: rgba(0,0,0,0.96); border-bottom: 1px solid var(--border-faint); }
  .nav__menu.is-open { display: flex; }
  .nav__menu li { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--border-faint); }
  .nav__menu li:last-child { border-bottom: 0; padding-top: 16px; }
  .nav__cta { width: 100%; justify-content: center; }
  .nav__toggle { display: flex; }

  .hero { min-height: auto; padding: 120px 20px 64px; }
  .hero__title { font-size: 32px; }
  .hero__lead { font-size: 15px; }
  .hero__stats { gap: 32px; }
  .stat__value { font-size: 26px; }

  .why, .steps, .faq, .reserve { padding: 64px 0; }
  .section-title, .reserve__title, .faq__title { font-size: 28px; }
  .steps__grid, .faq__grid { grid-template-columns: 1fr; }

  .form-card { padding: 28px 24px; }
  .form__row { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  .trust__divider { display: none; }
  .trust__inner { gap: 24px; }

  .wa-float { right: 16px; bottom: 16px; padding: 12px 16px; font-size: 12px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 28px; }
  .pill { font-size: 9.5px; letter-spacing: 2px; }
  .feature { padding: 28px 24px; min-height: 0; }
  .step { padding: 22px 20px; }
}

/* Form submission status */
.form__status {
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.4;
}
.form__status--ok   { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.form__status--err  { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.form__status--info { background: #eff6ff; color: #1e3a8a; border: 1px solid #bfdbfe; }
.form__submit:disabled { opacity: 0.6; cursor: not-allowed; }

/* Consent checkbox */
.form__consent { margin-top: 4px; }
.form__check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(255,255,255,0.78);
  cursor: pointer;
  user-select: none;
}
.form__check input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  accent-color: #c9a961;
  cursor: pointer;
}
.form__check a { color: #c9a961; text-decoration: underline; }
.form__check a:hover { opacity: 0.85; }
