:root {
  --ink: #191816;
  --cream: #f5f0e8;
  --gold: #c8a46a;
  --gold-hover: #b89358;
  --green: #35453a;
  --green-dark: #1e2921;
  --muted: #716d66;
  --sand: #ece4d7;
  --sand-light: #fbf8f2;
  --card-bg: #f9f5ed;
  --border: #d6cbbb;
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.25);
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.1);
  --radius: 3px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* Typography & Utilities */
h1, h2, h3, .brand {
  font-family: 'Playfair Display', serif;
}

.eyebrow {
  margin: 0 0 17px;
  color: #f2dfbd;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #927343;
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 22px;
  border: 0;
  border-radius: 2px;
  font: 700 11px 'DM Sans', sans-serif;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.15s, box-shadow 0.2s;
}

.button:hover {
  transform: translateY(-1px);
}

.gold {
  background: var(--gold);
  color: #211e17;
}

.gold:hover {
  background: var(--gold-hover);
}

.glass {
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(4px);
}

.glass:hover {
  background: rgba(255, 255, 255, 0.22);
}

.dark {
  background: var(--ink);
  color: #fff;
}

.dark:hover {
  background: #2a2824;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--ink);
  font: 600 13px 'DM Sans', sans-serif;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s, gap 0.2s;
}

.text-link:hover {
  color: #927343;
  gap: 9px;
}

.text-link.light {
  color: #fff;
}

.text-link.light:hover {
  color: #f2dfbd;
}

.text-link span {
  font-size: 18px;
}

/* Topbar */
.topbar {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 78px;
  padding: 0 5.5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}

.brand {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-decoration: none;
  color: inherit;
}

.brand span {
  color: var(--gold);
}

nav {
  display: flex;
  gap: 28px;
}

nav a {
  font-size: 13px;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

nav a:hover {
  color: var(--gold);
}

.nav-cta {
  padding: 11px 19px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 25px;
  background: transparent;
  color: #fff;
  font: 600 12px 'DM Sans', sans-serif;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.nav-cta:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 730px;
  padding: 120px 9vw 95px;
  overflow: hidden;
  color: #fff;
}

.hero-photo, .hero-shade {
  position: absolute;
  inset: 0;
}

.hero-photo {
  background: url('https://images.unsplash.com/photo-1519167758481-83f550bb49b3?auto=format&fit=crop&w=2200&q=90') center/cover;
  animation: heroZoom 16s ease-in-out infinite alternate;
}

.hero-shade {
  background: linear-gradient(90deg, rgba(16, 21, 16, 0.82) 0%, rgba(16, 21, 16, 0.38) 70%),
              linear-gradient(0deg, rgba(16, 21, 16, 0.65), transparent 60%);
}

@keyframes heroZoom {
  to {
    transform: scale(1.05);
  }
}

.hero-copy {
  position: relative;
  max-width: 680px;
  z-index: 1;
}

.hero h1 {
  margin: 0;
  font-size: clamp(44px, 5.8vw, 80px);
  font-weight: 500;
  line-height: 1.06;
}

.hero h1 em {
  font-style: italic;
  font-weight: 500;
}

.lead {
  max-width: 520px;
  margin: 24px 0 32px;
  font-size: 17px;
  line-height: 1.65;
  color: #f1ede6;
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-note {
  position: absolute;
  right: 5.5vw;
  bottom: 38px;
  z-index: 1;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 12px;
  color: #ded9d0;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d8c27f;
  box-shadow: 0 0 0 6px rgba(216, 194, 127, 0.28);
}

/* Intro Section */
.intro {
  max-width: 980px;
  margin: auto;
  padding: 115px 15vw 120px;
  text-align: center;
}

.intro h2 {
  margin: 0;
  font-size: clamp(38px, 4.5vw, 60px);
  font-weight: 500;
  line-height: 1.1;
}

.intro p:last-child {
  max-width: 640px;
  margin: 25px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

/* Planning Section */
.planning {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  padding: 95px 8%;
  background: var(--sand);
  align-items: center;
}

.planning h2, .visit h2 {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.1;
  margin: 0;
}

.planning h2 em, .visit h2 em {
  font-style: italic;
  font-weight: 500;
}

.planning-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.planning-steps article {
  border-top: 1px solid #b9aa92;
  padding-top: 18px;
}

.planning-steps b {
  color: #9a7948;
  font-size: 12px;
  letter-spacing: 1px;
}

.planning-steps h3 {
  margin: 20px 0 8px;
  font-size: 22px;
  font-weight: 500;
}

.planning-steps p, .visit p {
  color: #625e57;
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

/* Spaces Section */
.spaces {
  padding: 100px 5.5vw 120px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 38px;
  gap: 20px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(36px, 4.2vw, 53px);
  font-weight: 500;
}

.space-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  align-items: center;
  gap: 20px;
}

.space-card {
  position: relative;
  height: 500px;
  overflow: hidden;
  color: #fff;
  border-radius: var(--radius);
}

.space-card.tall {
  height: 610px;
}

.space-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.space-card:hover img {
  transform: scale(1.05);
}

.card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(18, 19, 15, 0.85) 0%, rgba(18, 19, 15, 0.3) 50%, transparent 75%);
}

.card-body {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
}

.card-body p {
  margin: 0 0 8px;
  font-size: 10px;
  letter-spacing: 1.5px;
  font-weight: 600;
  color: #f2dfbd;
}

.card-body h3 {
  margin: 0;
  font-size: 42px;
  font-weight: 500;
}

.card-body span {
  display: block;
  margin: 6px 0 18px;
  font-size: 14px;
  color: #e5e0d8;
}

.card-link {
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.85);
  background: none;
  color: #fff;
  font: 600 11px 'DM Sans', sans-serif;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.card-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* Experience Section */
.experience {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 620px;
  background: var(--green);
  color: #fff;
}

.experience-img {
  min-height: 440px;
  background: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=1800&q=85') center/cover;
}

.experience-copy {
  padding: 95px 12%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.experience-copy h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 500;
  line-height: 1.1;
}

.experience-copy > p:not(.eyebrow) {
  margin: 23px 0;
  color: #ece8df;
  font-size: 16px;
  line-height: 1.7;
}

.experience ul {
  padding: 0;
  list-style: none;
  margin: 0 0 28px;
}

.experience li {
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 14px;
}

/* Visit Section */
.visit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 75px;
  align-items: center;
  padding: 100px 12%;
  background: var(--sand-light);
}

.visit > div:last-child {
  max-width: 440px;
}

.visit .button {
  margin-top: 20px;
}

/* Proposal Section */
.proposal {
  padding: 120px 24px;
  text-align: center;
}

.proposal h2 {
  margin: 0;
  font-size: clamp(38px, 4.8vw, 64px);
  font-weight: 500;
  line-height: 1.1;
}

.proposal em {
  font-style: italic;
  font-weight: 500;
}

.proposal > p:not(.eyebrow) {
  max-width: 560px;
  margin: 24px auto 32px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

/* Footer */
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 46px 5.5vw;
  background: #1b211c;
  color: #e9e4dc;
}

footer p {
  margin: 0;
  font-size: 13px;
  color: #bfc2bb;
}

.footer-link {
  border: 0;
  background: none;
  color: #e9e4dc;
  font: 13px 'DM Sans', sans-serif;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--gold);
}

/* Floating Chat Launch Button */
.chat-launch {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9;
}

.chat-launch button {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 14px 20px;
  border: 0;
  border-radius: 30px;
  background: var(--green-dark);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  font: 600 13px 'DM Sans', sans-serif;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.chat-launch button:hover {
  transform: scale(1.03);
  background: #25332a;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.chat-launch span {
  color: #e2bf7e;
  font-size: 15px;
}

/* Chat Modal & Panel */
.modal {
  position: fixed;
  z-index: 10;
  inset: 0;
  display: none;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 24px;
  background: rgba(16, 21, 16, 0.55);
  backdrop-filter: blur(3px);
  animation: fadeIn 0.2s ease-out;
}

.modal.open {
  display: flex;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.chat-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(420px, 100%);
  height: min(640px, 86vh);
  background: #f9f6f0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.25s ease-out;
}

@keyframes slideUp {
  from { transform: translateY(16px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.chat-top {
  display: flex;
  gap: 13px;
  align-items: center;
  padding: 20px 22px;
  background: var(--green);
  color: #fff;
}

.avatar {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: #2d281f;
  font: 600 20px 'Playfair Display', serif;
  flex-shrink: 0;
}

.chat-top strong {
  display: block;
  font: 600 17px 'Playfair Display', serif;
}

.chat-top p {
  margin: 2px 0 0;
  color: #d7ddd5;
  font-size: 11px;
}

.chat-log {
  flex: 1;
  overflow-y: auto;
  padding: 18px;
  background: #f8f4ec;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.message {
  display: block;
  max-width: 86%;
  padding: 12px 14px;
  border-radius: 4px;
  font-size: 13.5px;
  line-height: 1.55;
  word-break: break-word;
}

.message.bot {
  background: #e6dfd3;
  color: #2c2b28;
  align-self: flex-start;
  border-bottom-left-radius: 1px;
}

.message.user {
  background: var(--green);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 1px;
}

.chat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 4px 0 6px;
}

.chip-btn {
  padding: 6px 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  color: var(--ink);
  font: 500 11.5px 'DM Sans', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
}

.chip-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #211e17;
}

.chat-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 6px;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font: 600 12px 'DM Sans', sans-serif;
  cursor: pointer;
  border: 0;
  transition: background 0.2s, transform 0.15s;
}

.chat-action-btn:hover {
  background: #333;
  transform: translateY(-1px);
}

.chat-action-btn.whatsapp-btn {
  background: #25d366;
  color: #fff;
}

.chat-action-btn.whatsapp-btn:hover {
  background: #20ba59;
}

.chat-action-btn.cal-btn {
  background: #4a6fa5;
  color: #fff;
}

.chat-action-btn.cal-btn:hover {
  background: #3c5d8b;
}

.chat-actions-container {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}

.chat-form {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid #ddd6ca;
  background: #fff;
}

.chat-form input {
  flex: 1;
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: 4px;
  outline: none;
  font: 13px 'DM Sans', sans-serif;
  transition: border-color 0.2s;
}

.chat-form input:focus {
  border-color: var(--gold);
}

.chat-form button {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--gold);
  color: #211e17;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
}

.chat-form button:hover {
  background: var(--gold-hover);
  transform: scale(1.05);
}

/* Space Modal & Sheet */
.space-modal {
  position: fixed;
  z-index: 11;
  inset: 0;
  display: none;
  background: rgba(16, 21, 16, 0.75);
  backdrop-filter: blur(4px);
  padding: 4vh 5vw;
  overflow-y: auto;
  animation: fadeIn 0.2s ease-out;
}

.space-modal.open {
  display: block;
}

.space-sheet {
  position: relative;
  max-width: 1060px;
  margin: auto;
  background: var(--card-bg);
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 650px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.space-close {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 2;
  background: #fff;
  border: 0;
  border-radius: 50%;
  height: 36px;
  width: 36px;
  font-size: 24px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background 0.2s, transform 0.15s;
}

.space-close:hover {
  transform: scale(1.08);
}

.space-visual {
  min-height: 650px;
  background-position: center;
  background-size: cover;
}

.space-info {
  padding: 65px 44px 45px;
  display: flex;
  flex-direction: column;
}

.space-info h2 {
  font: 500 58px 'Playfair Display', serif;
  margin: 0;
  line-height: 1.05;
}

.space-description {
  font-size: 15px;
  line-height: 1.7;
  color: #716d66;
  margin: 18px 0 24px;
}

.facts {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.facts span {
  font-size: 11px;
  letter-spacing: 0.5px;
  padding: 8px 12px;
  border: 1px solid #cfc4b4;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.4);
}

.included {
  border-top: 1px solid var(--border);
  margin-bottom: 30px;
}

.included p {
  font-size: 10px;
  letter-spacing: 1.5px;
  margin: 18px 0 10px;
  font-weight: 700;
  color: #8c7143;
}

.included ul {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
}

.included li {
  font-size: 13px;
  margin: 8px 0;
  color: #4a463f;
}

.included li::before {
  content: '✦';
  color: var(--gold);
  margin-right: 7px;
}

/* Responsive Media Queries */
@media (max-width: 900px) {
  .space-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
  .space-card, .space-card.tall {
    height: 440px;
  }
  .experience {
    grid-template-columns: 1fr;
  }
  .planning {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .visit {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 720px) {
  .topbar {
    height: 65px;
    padding: 0 20px;
  }
  .topbar nav {
    display: none;
  }
  .nav-cta {
    padding: 8px 14px;
    font-size: 11px;
  }
  .hero {
    min-height: 640px;
    padding: 100px 22px 65px;
  }
  .hero h1 {
    font-size: 44px;
  }
  .hero-note {
    right: 22px;
    bottom: 24px;
  }
  .intro {
    padding: 75px 22px;
  }
  .planning, .visit {
    padding: 65px 22px;
  }
  .planning-steps {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .spaces {
    padding: 70px 20px 80px;
  }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .experience-copy {
    padding: 65px 22px;
  }
  .proposal {
    padding: 75px 22px;
  }
  footer {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 40px 20px;
  }
  .modal {
    padding: 0;
  }
  .chat-panel {
    width: 100%;
    height: 90vh;
    border-radius: 12px 12px 0 0;
  }
  .chat-launch {
    right: 16px;
    bottom: 16px;
  }
  .space-modal {
    padding: 0;
  }
  .space-sheet {
    grid-template-columns: 1fr;
    min-height: 100vh;
    border-radius: 0;
  }
  .space-visual {
    min-height: 300px;
  }
  .space-info {
    padding: 40px 22px;
  }
  .space-info h2 {
    font-size: 42px;
  }
  .included ul {
    columns: 1;
  }
}
