/* ----------------------------------------------------------------
   THE AERA HOUSE
   Display: Gilda Display | Body: Jost
   White-dominant aesthetic. Cream reserved for logo plate accents.
   ---------------------------------------------------------------- */

:root {
  --white: #ffffff;
  --off-white: #faf9f7;
  --cream: #f4ede2;
  --navy: #0d1b2a;
  --navy-deep: #08111c;
  --black: #0a0a0a;
  --ink: #1a1a1a;
  --gold: #b89455;
  --gold-soft: #d4b478;
  --line: rgba(13, 27, 42, 0.10);
  --line-strong: rgba(13, 27, 42, 0.22);
  --line-light: rgba(255, 255, 255, 0.18);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background: var(--white);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.panel-open { overflow: hidden; }

h1, h2, h3, h4 {
  font-family: 'Gilda Display', serif;
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 1.1;
}

a { color: inherit; text-decoration: none; }

img { display: block; max-width: 100%; height: auto; }

/* ----------------------------- HEADER ----------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.75rem 2.5rem;
  color: var(--white);
  background: transparent;
  transition: background 0.4s ease, color 0.4s ease, padding 0.4s ease;
}

.site-header.scrolled {
  background: rgba(8, 17, 28, 0.78);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  color: rgba(255, 255, 255, 0.88);
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.site-header.scrolled .menu-toggle:hover,
.site-header.scrolled .request-access:hover { color: var(--white); }

.menu-toggle {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.92rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  cursor: pointer;
  background: none;
  border: none;
  color: inherit;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
}

.menu-toggle .lines {
  display: inline-block;
  width: 38px;
  height: 12px;
  position: relative;
}

.menu-toggle .lines::before,
.menu-toggle .lines::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
}

.menu-toggle .lines::before { top: 3px; width: 60%; }
.menu-toggle .lines::after { top: 8px; }

.logo-card {
  position: absolute;
  top: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-img {
  height: 82px;
  width: auto;
  display: block;
  transition: opacity 0.4s ease, height 0.4s ease;
}

.logo-img-light { opacity: 1; }

.logo-img-dark {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 68px;
}

.site-header.scrolled .logo-img-light { opacity: 0; }
.site-header.scrolled .logo-img-dark { opacity: 1; }

.request-access {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.92rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 400;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.header-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid currentColor;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.header-whatsapp:hover {
  opacity: 1;
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.request-access .arrow {
  width: 38px;
  height: 1px;
  background: currentColor;
  position: relative;
}

.request-access .arrow::after {
  content: '';
  position: absolute;
  right: 0; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

/* ---------------------- LEFT SIDE PAGE INDICATOR ---------------------- */
.page-indicator {
  position: fixed;
  left: 2.25rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  color: var(--white);
  transition: color 0.4s ease;
}

.page-indicator.dark { color: var(--navy); }

.page-indicator .dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 1px solid currentColor;
  cursor: pointer;
  transition: all 0.3s ease;
}

.page-indicator .dot.active {
  background: currentColor;
  outline: 1px solid currentColor;
  outline-offset: 3px;
}

/* ------------------------------ HERO ------------------------------ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background: var(--navy-deep);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: opacity 0.8s ease;
}

.hero-video.is-fading { opacity: 0; }

.hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,17,28,0.35) 0%, rgba(8,17,28,0.55) 60%, rgba(8,17,28,0.65) 100%);
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 2rem;
  width: 100%;
}

.hero-eyebrow {
  font-size: 1rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.92);
}

.hero-title {
  font-size: clamp(2.6rem, 7.5vw, 6.75rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.05;
  padding: 0 1rem;
}

.hero-sub {
  font-family: 'Gilda Display', serif;
  font-size: clamp(1.2rem, 1.9vw, 1.7rem);
  letter-spacing: 0.04em;
  margin-top: 1.75rem;
  font-style: italic;
  opacity: 0.95;
}

.hero-cta {
  position: absolute;
  bottom: 4rem;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
}

.btn {
  display: inline-block;
  padding: 1.1rem 2.6rem;
  background: var(--ink);
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 400;
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: all 0.4s ease;
  font-family: 'Jost', sans-serif;
}

.btn:hover {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-light {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}
.btn-light:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

/* ------------------------- EDITORIAL INTRO ------------------------- */
.editorial {
  background: var(--white);
  padding: 11rem 8% 12rem;
  position: relative;
}

.eyebrow {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--ink);
  opacity: 0.85;
  margin-bottom: 2.5rem;
}

.editorial-eyebrow { padding-left: 9%; }

.editorial-title {
  font-size: clamp(2.5rem, 5.5vw, 5.25rem);
  color: var(--navy);
  margin-bottom: 0;
  padding-left: 9%;
  max-width: 16ch;
}

.editorial-title em {
  font-style: italic;
  color: var(--gold);
}

.editorial-body {
  margin-top: 6rem;
  margin-left: auto;
  max-width: 60%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.editorial-body p {
  font-size: 1.15rem;
  line-height: 1.85;
  color: var(--ink);
}

.editorial-cta {
  margin-left: auto;
  margin-top: 4rem;
  margin-right: 0;
  color: var(--navy);
  display: flex;
  width: 60%;
  justify-content: flex-start;
  padding-left: 0;
}

/* ------------------------- IMAGE GALLERY (DIVIDER STRIP) ------------------------- */
.mid-video {
  background: var(--black);
  width: 100%;
  overflow: hidden;
  display: block;
  position: relative;
  line-height: 0;
}

.mid-video-media {
  display: block;
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: cover;
}

/* --------------------- COLOR BLOCK (NAVY) --------------------- */
.color-block {
  background: var(--navy);
  color: var(--white);
  padding: 12rem 8%;
  position: relative;
  overflow: hidden;
}

.vertical-label {
  position: absolute;
  left: 2.5rem;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  font-size: 0.82rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  font-weight: 400;
  opacity: 0.55;
}

.color-block-inner {
  max-width: 1100px;
  padding-left: 4rem;
}

.color-block-title {
  font-size: clamp(2.5rem, 5.5vw, 5.25rem);
  margin-bottom: 4rem;
  max-width: 18ch;
}

.color-block-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 60%;
  margin-left: 38%;
}

.color-block-body p {
  font-size: 1.15rem;
  line-height: 1.85;
  opacity: 0.9;
}

.discover-link {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 5rem;
  margin-left: 38%;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 400;
}

.discover-link .line {
  width: 70px;
  height: 1px;
  background: currentColor;
  position: relative;
  transition: width 0.4s ease;
}

.discover-link:hover .line { width: 100px; }

.discover-link .line::after {
  content: '';
  position: absolute;
  right: 0; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

/* --------------- HOUSES SECTION (WHITE) --------------- */
.houses-feature {
  background: var(--white);
  padding: 12rem 8% 10rem;
  position: relative;
}

.houses-feature .vertical-label { color: var(--navy); opacity: 0.55; }

.houses-head {
  max-width: 900px;
  padding-left: 4rem;
  margin-bottom: 6rem;
}

.houses-head .houses-title {
  font-size: clamp(2.75rem, 6vw, 5.75rem);
  color: var(--navy);
  margin-bottom: 2.5rem;
  line-height: 1.05;
  max-width: 18ch;
}

.houses-head .houses-title em {
  font-style: italic;
  color: var(--gold);
}

.houses-intro {
  font-size: 1.15rem;
  line-height: 1.85;
  color: var(--ink);
  max-width: 50ch;
  opacity: 0.85;
}

/* --------------- HOUSES GRID --------------- */
.houses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding-left: 4rem;
}

.house-card {
  position: relative;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.house-card-image {
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  background-color: var(--cream);
  transition: transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1);
  position: relative;
}

.house-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.0) 50%, rgba(0,0,0,0.35) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.house-card:hover .house-card-image { transform: scale(1.04); }
.house-card:hover .house-card-image::after { opacity: 1; }

.house-card[data-house-img] .house-card-image,
.house-card-image[data-house-img] {
  /* Defaults; specific images set per-house below */
}

.house-card-image[data-house-img="travel"]      { background-image: url('../img/travel-house.jpg'); }
.house-card-image[data-house-img="stay"]        { background-image: url('../img/stay-house.jpg'); background-position: 70% center; }
.house-card-image[data-house-img="wellness"]    { background-image: url('../img/wellness-house.jpg'); }
.house-card-image[data-house-img="lifestyle"]   { background-image: url('../img/lifestyle-house.jpg'); }
.house-card-image[data-house-img="experience"]  { background-image: url('../img/experience-house.jpg'); background-position: 70% center; }
.house-card-image[data-house-img="celebrations"]{ background-image: url('../img/celebrations-house.jpg'); }
.house-card-image[data-house-img="discovery"]   { background-image: url('../img/discovery-house.jpg'); }
.house-card-image[data-house-img="corporate"]   { background-image: url('../img/corporate-house.jpg'); }

.house-card-meta {
  padding: 1.5rem 0 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.house-card-numeral {
  font-family: 'Gilda Display', serif;
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
}

.house-card-name {
  font-family: 'Gilda Display', serif;
  font-size: 1.4rem;
  color: var(--navy);
  font-weight: 400;
  line-height: 1.15;
}

.house-card-line {
  font-family: 'Gilda Display', serif;
  font-size: 0.95rem;
  color: var(--ink);
  opacity: 0.65;
  font-style: italic;
}

/* ---------------------------- MARQUEE ---------------------------- */
.marquee {
  background: var(--white);
  padding: 4rem 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 60s linear infinite;
  align-items: center;
  will-change: transform;
}

.marquee-track > span {
  margin-right: 4rem;
}

.marquee-track span {
  font-family: 'Gilda Display', serif;
  font-size: clamp(2rem, 4vw, 3.75rem);
  color: var(--navy);
  letter-spacing: 0.05em;
}

.marquee-track .mark {
  width: 28px; height: 28px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.marquee-track .mark::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------------------- DARK BLOCK (NETWORK) ---------------------- */
.dark-block {
  background: var(--black);
  color: var(--white);
  padding: 12rem 8%;
  position: relative;
}

.dark-block .vertical-label { color: var(--white); opacity: 0.45; }

.dark-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  align-items: center;
  padding-left: 4rem;
}

.dark-image-wrap {
  position: relative;
  aspect-ratio: 4/5;
  width: 100%;
}

.dark-image-main {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1571896349842-33c89424de2d?q=80&w=1600&auto=format&fit=crop') center/cover;
  z-index: 1;
}

.dark-image-strip {
  position: absolute;
  right: -18%;
  bottom: 8%;
  width: 38%;
  height: 42%;
  background: url('https://images.unsplash.com/photo-1582719508461-905c673771fd?q=80&w=900&auto=format&fit=crop') center/cover;
  z-index: 3;
  box-shadow: 0 14px 40px rgba(0,0,0,0.45);
}

.dark-text .eyebrow { color: var(--gold-soft); opacity: 1; margin-bottom: 2rem; }

.dark-text .dark-title {
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  margin-bottom: 3rem;
  max-width: 14ch;
  line-height: 1.05;
}

.dark-text p {
  font-size: 1.15rem;
  line-height: 1.85;
  max-width: 38ch;
  margin-bottom: 1.5rem;
  opacity: 0.88;
}

.network-discover {
  margin-left: 0;
  margin-top: 2.5rem;
}

/* ---------------------------- PROMISE ---------------------------- */
.promise {
  background: var(--navy-deep);
  color: var(--white);
  padding: 14rem 8%;
  text-align: center;
}

.promise-title {
  font-family: 'Gilda Display', serif;
  font-size: clamp(2rem, 4.8vw, 4.5rem);
  line-height: 1.25;
  max-width: 22ch;
  margin: 0 auto;
  font-style: italic;
}

.promise-title .em {
  font-style: normal;
  color: var(--gold-soft);
  display: block;
  margin-top: 1rem;
}

/* ---------------------------- PERSONAL NOTE ---------------------------- */
.personal-note {
  background: var(--white);
  padding: 10rem 8% 8rem;
  display: flex;
  justify-content: center;
}

.personal-note-inner {
  max-width: 620px;
  width: 100%;
  text-align: center;
  position: relative;
}

.personal-note-inner .eyebrow {
  margin-bottom: 3rem;
  color: var(--gold);
}

.personal-note-lede {
  font-family: 'Gilda Display', serif;
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.4;
  color: var(--navy);
  margin: 0 auto 2.5rem;
  max-width: 28ch;
}

.personal-note-body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--ink);
  margin: 0 auto 2.5rem;
  max-width: 52ch;
  opacity: 0.85;
}

.personal-note-closing {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  margin: 0 auto 3rem;
  letter-spacing: 0.01em;
}

.personal-note-signoff {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
}

.personal-note-signoff::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.25rem;
}

.signoff-name {
  font-family: 'Gilda Display', serif;
  font-style: italic;
  font-size: 1.8rem;
  color: var(--navy);
  line-height: 1;
}

.signoff-role {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------------------------- CONTACT ---------------------------- */
.contact {
  background: var(--white);
  padding: 12rem 8%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
}

.contact-left .eyebrow { margin-bottom: 2.5rem; }

.contact-title {
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  color: var(--navy);
  margin-bottom: 2.5rem;
  max-width: 14ch;
}

.contact-left p {
  font-size: 1.15rem;
  line-height: 1.85;
  max-width: 36ch;
  color: var(--ink);
  margin-bottom: 2.5rem;
}

.contact-meta {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--line);
}

.contact-meta-item {
  margin-bottom: 1.75rem;
}

.contact-meta-item .label {
  font-size: 0.82rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
  display: block;
}

.contact-meta-item .val {
  font-family: 'Gilda Display', serif;
  font-size: 1.15rem;
  color: var(--navy);
  text-decoration: none;
  display: inline-block;
  transition: color 0.3s ease;
}

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

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-form input,
.contact-form textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: var(--ink);
  width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--ink);
  opacity: 0.55;
  letter-spacing: 0.05em;
}

.contact-form textarea {
  resize: none;
  min-height: 120px;
}

.contact-form .btn {
  align-self: flex-start;
  margin-top: 1rem;
}

/* Honeypot — invisible to humans, irresistible to bots */
.dream-hp {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-status {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  margin-top: 0.5rem;
  min-height: 1.2em;
  color: var(--ink);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.form-status.is-success,
.form-status.is-error { opacity: 1; }
.form-status.is-success { color: #4a6b3a; }
.form-status.is-error   { color: #8a3a2a; }

/* ---------------------------- MEMBERSHIP ---------------------------- */
.membership {
  background: var(--white);
  padding: 14rem 8%;
  text-align: center;
}

.membership .eyebrow { margin-bottom: 3rem; }

.membership-title {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  color: var(--navy);
  margin: 0 auto 4rem;
  max-width: 16ch;
}

.membership-title em {
  font-style: italic;
  color: var(--gold);
}

.membership-lead {
  font-size: 1.15rem;
  line-height: 1.85;
  color: var(--ink);
  max-width: 52ch;
  margin: 0 auto 4rem;
  opacity: 0.85;
}

.membership-list {
  list-style: none;
  max-width: 540px;
  margin: 0 auto 4rem;
  text-align: left;
}

.membership-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.05rem;
  color: var(--ink);
}

.membership-list .num {
  font-family: 'Gilda Display', serif;
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

/* ---------------------------- FOOTER ---------------------------- */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 5rem 8% 3rem;
}

.footer-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 0 0 3.5rem;
  margin-bottom: 4rem;
  border-bottom: 1px solid var(--line-light);
  flex-wrap: wrap;
}

.footer-cta-label {
  font-size: 0.82rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}

.footer-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  font-family: 'Gilda Display', serif;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  letter-spacing: 0.02em;
  color: var(--white);
  transition: color 0.3s ease;
}

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

.footer-cta-link svg { color: var(--gold); flex-shrink: 0; }

.footer-cta-arrow {
  width: 48px;
  height: 1px;
  background: currentColor;
  position: relative;
  transition: width 0.3s ease;
}

.footer-cta-arrow::after {
  content: '';
  position: absolute;
  right: 0; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

.footer-cta-link:hover .footer-cta-arrow { width: 70px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--line-light);
}

.footer-logo {
  height: 38px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-brand .tag {
  font-size: 0.78rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 36ch;
  opacity: 0.7;
  margin-bottom: 1.75rem;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--white);
  opacity: 0.78;
  transition: all 0.3s ease;
}

.footer-social-link svg {
  color: var(--gold);
  transition: color 0.3s ease;
}

.footer-social-link:hover { opacity: 1; }
.footer-social-link:hover svg { color: var(--gold-soft); }

.footer-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-col ul { list-style: none; }
.footer-col li {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  opacity: 0.78;
}

.footer-col a:hover { color: var(--gold-soft); }

.footer-house-link {
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
  letter-spacing: inherit;
  transition: color 0.3s ease;
}
.footer-house-link:hover { color: var(--gold-soft); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  opacity: 0.6;
}

.footer-bottom a:hover { color: var(--gold-soft); }

/* ---------------------- SCROLL TO TOP ---------------------- */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 40;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  opacity: 0;
  pointer-events: none;
}

.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--gold); }

/* ---------------------- FLOATING WHATSAPP ---------------------- */
.floating-whatsapp {
  position: fixed;
  bottom: 6.75rem;
  right: 2rem;
  z-index: 40;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  box-shadow: 0 6px 22px rgba(0,0,0,0.20);
}

.floating-whatsapp.is-visible { opacity: 1; pointer-events: auto; }
.floating-whatsapp:hover { background: var(--gold-soft); transform: translateY(-1px); }

/* ---------------------- WHATSAPP POPUP ---------------------- */
.wa-popup {
  position: fixed;
  bottom: 9.5rem;
  right: 2rem;
  z-index: 41;
  width: 340px;
  max-width: calc(100vw - 2.5rem);
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(0,0,0,0.22), 0 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s cubic-bezier(.22,.61,.36,1);
  font-family: 'Jost', sans-serif;
}

.wa-popup.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.wa-popup-close {
  position: absolute;
  top: 0.5rem;
  right: 0.65rem;
  width: 28px;
  height: 28px;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.wa-popup-close:hover { opacity: 1; }

.wa-popup-header {
  background: var(--gold);
  color: var(--white);
  padding: 1.6rem 1.5rem 1.4rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.wa-popup-icon {
  flex: 0 0 auto;
  margin-top: 0.15rem;
  color: var(--white);
}

.wa-popup-header-text h3 {
  font-family: 'Gilda Display', serif;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin: 0 0 0.35rem;
  color: var(--white);
}

.wa-popup-header-text p {
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
  opacity: 0.92;
}

.wa-popup-body {
  padding: 1.25rem 1.25rem 1.5rem;
  background: var(--white);
}

.wa-popup-replytime {
  font-size: 0.78rem;
  color: var(--ink);
  opacity: 0.55;
  margin: 0 0 0.85rem;
  letter-spacing: 0.02em;
}

.wa-popup-option {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  padding: 0.95rem 1rem;
  background: var(--cream);
  border-left: 3px solid #25D366;
  border-radius: 6px;
  text-decoration: none;
  color: var(--ink);
  transition: background 0.25s ease, transform 0.25s ease;
}

.wa-popup-option:hover {
  background: #efe9dc;
  transform: translateX(2px);
}

.wa-popup-option-icon {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wa-popup-option-label {
  flex: 1;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  color: var(--ink);
}

.wa-popup-option-arrow {
  font-size: 1.3rem;
  color: var(--ink);
  opacity: 0.5;
  line-height: 1;
}

/* ---------------------- PRE-LOAD SCREEN ---------------------- */
.preload {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1.3s ease 0.6s, visibility 0s linear 1.9s;
}

.preload.loaded {
  opacity: 0;
  visibility: hidden;
}

.preload-inner {
  text-align: center;
  animation: preloadFloat 1s ease both;
}

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

.preload-logo {
  width: 400px;
  max-width: 80vw;
  height: auto;
  margin: 0 auto 1.5rem;
  display: block;
}

.preload-tag {
  font-size: 0.7rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: 'Jost', sans-serif;
  font-weight: 400;
}

/* ====================================================================
   HOUSE SLIDE PANEL (MODAL)
   ==================================================================== */
.panel {
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
  pointer-events: none;
}

.panel.is-open {
  visibility: visible;
  pointer-events: auto;
}

.panel-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 17, 28, 0.55);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.panel.is-open .panel-backdrop { opacity: 1; }

.panel-inner {
  position: absolute;
  top: 0; right: 0;
  width: min(640px, 100%);
  height: 100%;
  background: var(--white);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.panel.is-open .panel-inner { transform: translateX(0); }

.panel-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
}

.panel-close:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.panel-image {
  width: 100%;
  height: 320px;
  background-size: cover;
  background-position: center;
  background-color: var(--cream);
  flex-shrink: 0;
}

.panel-body {
  padding: 3rem 3rem 4rem;
  flex: 1;
}

.panel-eyebrow {
  font-size: 0.82rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.panel-title {
  font-family: 'Gilda Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 0.75rem;
}

.panel-tagline {
  font-family: 'Gilda Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 2rem;
}

.panel-desc {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--ink);
  margin-bottom: 2.5rem;
  opacity: 0.88;
}

.panel-services {
  margin-bottom: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.panel-services-label {
  font-size: 0.78rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.panel-services ul {
  list-style: none;
  column-count: 2;
  column-gap: 2rem;
}

.panel-services li {
  font-size: 0.92rem;
  color: var(--ink);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.55;
  margin-bottom: 0.75rem;
  break-inside: avoid;
}

.panel-services li:last-child {
  margin-bottom: 0;
}

.panel-services li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.6em;
  width: 6px; height: 1px;
  background: var(--gold);
}

.panel-cta { margin-top: 0.5rem; }

/* ====================================================================
   MENU DRAWER (left slide-in)
   ==================================================================== */
.menu-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
  pointer-events: none;
}

.menu-drawer.is-open {
  visibility: visible;
  pointer-events: auto;
}

.menu-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 17, 28, 0.55);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.menu-drawer.is-open .menu-drawer-backdrop { opacity: 1; }

.menu-drawer-inner {
  position: absolute;
  top: 0; left: 0;
  width: min(540px, 100%);
  height: 100%;
  background: var(--navy-deep);
  color: var(--white);
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.menu-drawer.is-open .menu-drawer-inner { transform: translateX(0); }

.menu-drawer-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
}

.menu-drawer-close:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.menu-drawer-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 4.5rem 3.5rem 3.5rem;
  gap: 2rem;
}

.menu-drawer-logo {
  width: 200px;
  max-width: 80%;
  height: auto;
}

.menu-drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
}

.menu-drawer-nav a {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  padding: 0.85rem 0;
  font-family: 'Gilda Display', serif;
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  transition: color 0.3s ease, padding 0.4s ease;
}

.menu-drawer-nav a:hover {
  color: var(--gold-soft);
  padding-left: 0.75rem;
}

.menu-drawer-num {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  flex-shrink: 0;
  width: 28px;
}

.menu-drawer-foot {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.menu-drawer-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: 'Jost', sans-serif;
  font-weight: 400;
}

.menu-drawer-tagline {
  font-family: 'Gilda Display', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
  max-width: 30ch;
  margin-bottom: 0.5rem;
}

.menu-drawer-cta {
  align-self: flex-start;
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}
.menu-drawer-cta:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

/* ----------------------------- RESPONSIVE ----------------------------- */
@media (max-width: 1100px) {
  .houses-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .site-header { padding: 1rem 1rem; }
  .logo-img { height: 44px; }
  .logo-img-dark { height: 36px; }
  .logo-card { top: 0.5rem; }

  .menu-toggle { gap: 0.75rem; }
  .menu-toggle .lines { width: 28px; }
  .menu-toggle-label { display: none; }

  /* Drop the Share-your-dream text-link on mobile - it lives in the menu and
     in the floating WhatsApp / page CTAs already. Keep WhatsApp icon as the
     right-side anchor. */
  .request-access { display: none; }
  .header-right { gap: 0; }
  .header-whatsapp { width: 36px; height: 36px; }
  .header-whatsapp svg { width: 18px; height: 18px; }

  .editorial, .color-block, .houses-feature, .dark-block,
  .membership, .promise, .contact { padding: 7rem 1.5rem; }

  .editorial-eyebrow, .editorial-title { padding-left: 0; }
  .editorial-body { max-width: 100%; margin-top: 4rem; grid-template-columns: 1fr; gap: 1.5rem; }
  .editorial-cta { width: 100%; margin-top: 3rem; }

  .mid-video-media { max-height: 60vh; }

  .vertical-label { left: 1rem; font-size: 0.6rem; }
  .color-block-inner { padding-left: 2rem; }
  .color-block-body { max-width: 100%; margin-left: 0; grid-template-columns: 1fr; gap: 1.5rem; }
  .discover-link { margin-left: 0; margin-top: 3rem; }

  .houses-head { padding-left: 2rem; max-width: 100%; }
  .houses-grid { padding-left: 2rem; padding-right: 0.5rem; gap: 1.25rem; grid-template-columns: repeat(2, 1fr); }
  .house-card-name { font-size: 1.15rem; }
  .house-card-line { font-size: 0.85rem; }

  .dark-grid { grid-template-columns: 1fr; gap: 3rem; padding-left: 2rem; }

  .contact { grid-template-columns: 1fr; gap: 4rem; }

  .personal-note { padding: 6rem 1.75rem 5rem; }
  .personal-note-inner .eyebrow { margin-bottom: 2rem; }
  .personal-note-signoff::before { margin-bottom: 1rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 3rem; }

  .page-indicator { display: none; }

  .hero-cta { bottom: 2.5rem; }

  .floating-whatsapp { bottom: 5.5rem; right: 1.25rem; width: 56px; height: 56px; }
  .floating-whatsapp svg { width: 28px; height: 28px; }
  .scroll-top { right: 1.25rem; width: 50px; height: 50px; }
  .wa-popup { right: 1.25rem; bottom: 8.25rem; }

  .footer-cta { flex-direction: column; align-items: flex-start; gap: 1rem; padding-bottom: 2.5rem; margin-bottom: 3rem; }
  .footer-cta-link { gap: 1rem; }

  .preload-logo { width: 280px; }

  .panel-body { padding: 2rem 1.75rem 3rem; }
  .panel-image { height: 220px; }
  .panel-services ul { column-count: 1; }
  .panel-services li { margin-bottom: 0.6rem; }

  .menu-drawer-content { padding: 4rem 1.75rem 2.5rem; gap: 1.25rem; }
  .menu-drawer-logo { width: 170px; }
  .menu-drawer-nav a { font-size: 1.4rem; }

  .dark-image-wrap { aspect-ratio: 4/4; }
  .dark-image-strip { right: -10%; bottom: 6%; width: 32%; height: 36%; }

  .marquee { display: none; }
}

/* ============================== PRIVACY MODAL ============================== */
.privacy-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5vh 1.5rem;
  background: rgba(8, 17, 28, 0);
  visibility: hidden;
  pointer-events: none;
  transition: background 0.4s ease, visibility 0s linear 0.4s;
}

.privacy-modal.is-open {
  background: rgba(8, 17, 28, 0.7);
  visibility: visible;
  pointer-events: auto;
  transition: background 0.4s ease, visibility 0s linear 0s;
}

.privacy-modal-inner {
  position: relative;
  background: var(--white);
  max-width: 760px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 3.5rem 3rem 3rem;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(.22,.61,.36,1), opacity 0.4s ease;
}

.privacy-modal.is-open .privacy-modal-inner {
  transform: translateY(0);
  opacity: 1;
}

.privacy-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.privacy-modal-close:hover { opacity: 1; }
.privacy-modal-close svg { width: 16px; height: 16px; }

.privacy-modal .eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.privacy-modal h2.legal-title {
  font-family: 'Gilda Display', serif;
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.5rem;
  color: var(--ink);
  font-weight: 400;
}

.privacy-modal .legal-meta {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.privacy-modal h3 {
  font-family: 'Gilda Display', serif;
  font-size: 1.2rem;
  margin: 2rem 0 0.6rem;
  color: var(--ink);
  font-weight: 400;
}

.privacy-modal p,
.privacy-modal li {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 0.9rem;
}

.privacy-modal ul {
  list-style: none;
  padding-left: 1rem;
  margin-bottom: 1.2rem;
}

.privacy-modal ul li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.4rem;
}
.privacy-modal ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 6px;
  height: 1px;
  background: var(--gold);
}

.privacy-modal a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
  transition: color 0.3s ease;
}
.privacy-modal a:hover { color: var(--gold); }

.privacy-modal strong {
  font-weight: 500;
  color: var(--ink);
}

body.privacy-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .privacy-modal-inner { padding: 3rem 1.75rem 2.25rem; max-height: 92vh; }
  .privacy-modal h3 { margin-top: 1.5rem; }
}

/* ============================== FORM CONSENT ============================== */
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin: 0.5rem 0 0;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--ink);
  cursor: pointer;
}

.form-consent input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  max-width: 18px;
  flex: 0 0 18px;
  padding: 0;
  margin: 0.15em 0 0 0;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: background 0.2s ease;
  box-sizing: border-box;
}

.form-consent input[type="checkbox"]:checked {
  background: var(--ink);
}

.form-consent input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid var(--white);
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}

.form-consent a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 2px;
}
.form-consent a:hover { color: var(--gold); }

.form-consent.is-invalid input[type="checkbox"] {
  border-color: #b89455;
  box-shadow: 0 0 0 2px rgba(184, 148, 85, 0.15);
}

@media (max-width: 768px) {
  .legal-section { padding: 8rem 6% 5rem; }
  .legal-wrap h2 { margin-top: 2.2rem; }
}