/* ==========================================================================
   PALLADIO PRESIDENTIAL SUITES — LANDING PAGE STYLES
   Palette derived from brand marble/serif material:
   ink (near-black warm brown), paper (warm cream), taupe (marble accent),
   espresso (deep brown), gold-line (hairline accent)
   ========================================================================== */

:root {
  --ink:        #221A14;
  --ink-soft:   #4A3D33;
  --paper:      #FAF6F0;
  --paper-dim:  #F1EAE0;
  --taupe:      #9C7F6C;
  --taupe-dark: #7C6151;
  --espresso:   #3C2B22;
  --gold-line:  #B08B5E;
  --white:      #FFFFFF;
  --line:       rgba(34,26,20,0.12);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Jost', Arial, sans-serif;

  --container-w: 1200px;
  --radius: 2px;
  --shadow: 0 12px 40px rgba(34,26,20,0.14);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
.container { max-width: var(--container-w); margin: 0 auto; padding: 0 24px; }
@media (max-width: 480px) {
  .container { padding: 0 18px; }
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

:focus-visible { outline: 2px solid var(--gold-line); outline-offset: 3px; }

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--taupe-dark);
  margin: 0 0 12px;
}
.eyebrow--center { text-align: center; }
.section-title {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  margin: 0 0 16px;
  text-align: center;
  color: var(--espresso);
}
.section-sub {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 48px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
}

/* ---------- Buttons ---------- */
.pps-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.pps-btn--primary { background: var(--espresso); color: var(--white); }
.pps-btn--primary:hover { background: var(--ink); }
.pps-btn--outline { background: transparent; border-color: var(--espresso); color: var(--espresso); }
.pps-btn--outline:hover { background: var(--espresso); color: var(--white); }
.pps-btn--outline-light { background: transparent; border-color: rgba(255,255,255,0.6); color: var(--white); }
.pps-btn--outline-light:hover { background: var(--white); color: var(--espresso); }
.pps-btn--ghost-light { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); color: var(--white); }
.pps-btn--ghost-light:hover { background: rgba(255,255,255,0.22); }
.pps-btn--small { padding: 11px 20px; font-size: 12px; }
.pps-link-btn {
  background: none; border: none; padding: 0;
  color: var(--espresso); font-size: 14px; letter-spacing: 0.04em;
  border-bottom: 1px solid var(--gold-line); padding-bottom: 2px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 500;
  background: rgba(250,246,240,0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  max-width: var(--container-w); margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.site-header__logo img { height: 44px; width: auto; }
.site-nav { display: flex; gap: 28px; }
.site-nav a {
  font-size: 13px; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--ink-soft); position: relative; padding: 4px 0;
}
.site-nav a:hover { color: var(--espresso); }
.site-header__actions { display: flex; align-items: center; gap: 14px; }
.site-header__burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px;
}
.site-header__burger span { width: 22px; height: 2px; background: var(--ink); display: block; }

@media (max-width: 960px) {
  .site-nav {
    /* Bounded width + `right` positioning instead of a full-100%-width
       fixed panel translated with transform. A translated 100vw-wide
       fixed element is what caused the right-side blank panel / width
       bug on zoom-out in some mobile browsers. */
    position: fixed; top: 0; right: -360px; bottom: 0;
    width: 85%; max-width: 340px;
    background: var(--paper); flex-direction: column; gap: 0;
    padding: 96px 28px 100px; transition: right 0.3s ease;
    overflow-y: auto; z-index: 620;
    box-shadow: -12px 0 40px rgba(0,0,0,0.12);
  }
  .site-nav.is-open { right: 0; }
  .site-nav a { padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
  .site-nav-backdrop {
    position: fixed; inset: 0; z-index: 610;
    background: rgba(20,14,10,0.4);
    opacity: 0; visibility: hidden; transition: opacity 0.3s ease;
  }
  .site-nav-backdrop.is-open { opacity: 1; visibility: visible; }
  .site-header__burger { display: flex; }
  .site-header__actions .pps-btn--small { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 90vh; display: flex; align-items: center;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.hero__scrim {
  position: absolute; inset: 0;
  /* Stronger toward the left so text sits on a dark ground while the
     towers on the right stay clearly visible — no boxed panel. */
  background: linear-gradient(92deg,
    rgba(16,11,8,0.86) 0%,
    rgba(16,11,8,0.68) 24%,
    rgba(16,11,8,0.38) 46%,
    rgba(16,11,8,0.12) 66%,
    rgba(16,11,8,0.02) 82%);
}
.hero__scrim-bottom {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,7,5,0.55) 0%, rgba(10,7,5,0) 32%);
}
.hero__content {
  position: relative; z-index: 1; color: var(--white);
  max-width: var(--container-w); margin: 0 auto; width: 100%;
  padding: 150px 24px 64px;
}
.hero__eyebrow { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.88); }
.hero__eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-line); display: inline-block; }
.hero h1 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(42px, 6.4vw, 78px); line-height: 1.03; margin: 0 0 20px;
  text-shadow: 0 2px 28px rgba(0,0,0,0.3);
  max-width: 720px;
}
.hero h1 span { display: block; font-style: italic; font-weight: 400; font-size: 0.5em; margin-top: 8px; color: rgba(255,255,255,0.92); }
.hero__value-prop { font-size: clamp(16px, 1.6vw, 19px); max-width: 480px; margin: 0 0 40px; color: rgba(255,255,255,0.9); line-height: 1.55; }

.hero__facts { display: flex; align-items: center; flex-wrap: wrap; margin: 0 0 36px; }
.hero__fact { display: flex; flex-direction: column; margin-right: 30px; }
.hero__facts-divider { width: 1px; height: 32px; background: rgba(255,255,255,0.25); margin-right: 30px; }
.hero__facts-label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.6); margin-bottom: 5px; }
.hero__facts-value { display: block; font-family: var(--font-display); font-size: 22px; }
.hero__facts-value--accent { color: var(--gold-line); }
.hero__facts-value--small { font-family: var(--font-body); font-size: 13px; letter-spacing: 0.02em; }

.hero__ctas { display: flex; flex-wrap: wrap; margin: 0 0 16px; }
.hero__ctas .pps-btn { margin: 0 16px 12px 0; }
.pps-link-btn--light { color: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.5); background: none; }
.hero__price-disclaimer { font-size: 11px; color: rgba(255,255,255,0.55); margin: 14px 0 0; }

.hero__scroll-cue {
  position: absolute; z-index: 1; bottom: 28px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 1px solid rgba(255,255,255,0.5); border-radius: 20px;
}
.hero__scroll-cue span {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; border-radius: 2px; background: var(--gold-line);
  animation: hero-scroll 1.8s ease-in-out infinite;
}
@keyframes hero-scroll {
  0% { opacity: 1; top: 8px; }
  70% { opacity: 0; top: 20px; }
  100% { opacity: 0; top: 8px; }
}

/* ---- Mobile hero: dedicated composition, not a shrunk desktop ---- */
@media (max-width: 720px) {
  .hero {
    /* Height adapts to content instead of forcing a fixed viewport
       height — avoids excessive empty space or cut-off content. */
    min-height: 0;
  }
  .hero__media img { object-position: 32% center; }
  .hero__scrim {
    background: linear-gradient(180deg,
      rgba(16,11,8,0.55) 0%,
      rgba(16,11,8,0.42) 32%,
      rgba(16,11,8,0.72) 70%,
      rgba(16,11,8,0.9) 100%);
  }
  .hero__scrim-bottom { display: none; }
  .hero__content { padding: 128px 20px 44px; }
  .hero h1 { font-size: clamp(34px, 10vw, 48px); margin-bottom: 14px; }
  .hero__value-prop { font-size: 15px; max-width: none; margin-bottom: 28px; }

  .hero__facts {
    margin: 0 0 28px; padding: 18px 0; width: 100%;
    border-top: 1px solid rgba(255,255,255,0.18);
    border-bottom: 1px solid rgba(255,255,255,0.18);
    justify-content: space-between;
  }
  .hero__fact { flex: 1; margin-right: 0; }
  .hero__facts-divider { height: 28px; margin-right: 0; }
  .hero__facts-value { font-size: 17px; }

  .hero__ctas { flex-direction: column; margin-bottom: 18px; }
  .hero__ctas .pps-btn {
    width: 100%; min-height: 52px; font-size: 14px; padding: 0 24px; margin: 0 0 12px;
  }
  .hero__scroll-cue { display: none; }
}
@media (max-width: 380px) {
  .hero__facts-label { font-size: 10px; }
  .hero__facts-value { font-size: 15px; }
}

/* ---------- Highlights strip ---------- */
.highlights { background: var(--espresso); color: var(--white); padding: 36px 0; }
.highlights__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center;
}
.highlights__num { display: block; font-family: var(--font-display); font-size: clamp(26px, 3vw, 36px); color: var(--gold-line); }
.highlights__label { display: block; font-size: 13px; color: rgba(255,255,255,0.8); margin-top: 6px; }
@media (max-width: 720px) { .highlights__grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Overview ---------- */
.overview { padding: 88px 0; }
@media (max-width: 720px) {
  .overview, .configs, .location, .amenities, .floorplans, .gallery, .why, .inline-form, .faq, .final-cta { padding: 56px 0; }
  .trust { padding: 48px 0; }
}
.overview__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.overview__media img { border-radius: var(--radius); box-shadow: var(--shadow); }
.overview__copy h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(26px, 3.4vw, 38px); margin: 0 0 18px; color: var(--espresso); }
.overview__copy p { color: var(--ink-soft); line-height: 1.7; }
.overview__list { list-style: none; padding: 0; margin: 24px 0 32px; }
.overview__list li { padding: 10px 0; border-top: 1px solid var(--line); font-size: 15px; color: var(--ink-soft); }
.overview__list li:last-child { border-bottom: 1px solid var(--line); }
.overview__list strong { color: var(--espresso); }
@media (max-width: 900px) { .overview__grid { grid-template-columns: 1fr; gap: 36px; } }

/* ---------- Cost Sheet: premium 2-up pricing panel ---------- */
.configs { padding: 88px 0; background: var(--paper-dim); }
.pricing-panel {
  display: flex; align-items: stretch; justify-content: center; gap: 0;
  max-width: 980px; margin: 0 auto;
}
.pricing-card {
  flex: 1; background: var(--white); border: 1px solid var(--line);
  padding: 44px 40px 40px; position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.pricing-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: var(--gold-line);
}
.pricing-card:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.pricing-card:last-child { border-radius: 0 var(--radius) var(--radius) 0; }
.pricing-card--dark { background: var(--espresso); border-color: var(--espresso); color: var(--white); }
.pricing-card--dark::before { background: var(--gold-line); }

.pricing-card__tag {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--taupe-dark);
  margin-bottom: 20px; display: inline-block;
}
.pricing-card--dark .pricing-card__tag { color: var(--gold-line); }

.pricing-card__config { display: flex; align-items: flex-end; gap: 12px; margin-bottom: 18px; }
.pricing-card__beds { font-family: var(--font-display); font-size: 88px; line-height: 0.8; font-weight: 500; color: var(--espresso); }
.pricing-card--dark .pricing-card__beds { color: var(--white); }
.pricing-card__bhk { font-size: 15px; text-transform: uppercase; letter-spacing: 0.06em; line-height: 1.3; color: var(--ink-soft); padding-bottom: 6px; }
.pricing-card--dark .pricing-card__bhk { color: rgba(255,255,255,0.7); }

.pricing-card__area { font-size: 14px; color: var(--ink-soft); margin: 0 0 28px; line-height: 1.6; }
.pricing-card__area span { font-size: 12px; color: var(--taupe-dark); }
.pricing-card--dark .pricing-card__area { color: rgba(255,255,255,0.75); }
.pricing-card--dark .pricing-card__area span { color: rgba(255,255,255,0.5); }

.pricing-card__price-block {
  padding: 22px 0; margin-bottom: 26px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.pricing-card--dark .pricing-card__price-block { border-color: rgba(255,255,255,0.15); }
.pricing-card__price-label { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--taupe-dark); margin-bottom: 6px; }
.pricing-card--dark .pricing-card__price-label { color: rgba(255,255,255,0.55); }
.pricing-card__price-value { font-family: var(--font-display); font-size: 42px; color: var(--espresso); white-space: nowrap; }
.pricing-card__price-value sup { position: relative; top: -0.6em; font-size: 20px; }
.pricing-card--dark .pricing-card__price-value { color: var(--white); }
.pricing-card__price-tag {
  display: inline-block; margin-left: 10px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--taupe-dark); border: 1px solid var(--line); border-radius: 20px; padding: 4px 10px; vertical-align: middle;
}
.pricing-card--dark .pricing-card__price-tag { color: rgba(255,255,255,0.75); border-color: rgba(255,255,255,0.25); }

.pricing-card__features { list-style: none; padding: 0; margin: 0 0 28px; flex: 1; }
.pricing-card__features li {
  font-size: 14px; color: var(--ink-soft); padding: 9px 0 9px 26px; position: relative; line-height: 1.5;
}
.pricing-card--dark .pricing-card__features li { color: rgba(255,255,255,0.8); }
.pricing-card__features li::before {
  content: '\2713'; position: absolute; left: 0; top: 8px; color: var(--gold-line); font-size: 13px; font-weight: bold;
}
.pricing-card__cta { width: 100%; }

.pricing-divider {
  display: flex; align-items: center; justify-content: center; position: relative; width: 0;
}
.pricing-divider span {
  position: absolute; z-index: 2; background: var(--paper-dim); border: 1px solid var(--line);
  width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-style: italic; font-size: 14px; color: var(--taupe-dark);
}

@media (max-width: 780px) {
  .pricing-panel { flex-direction: column; max-width: 460px; }
  .pricing-card:first-child, .pricing-card:last-child { border-radius: var(--radius); }
  .pricing-divider { width: auto; height: 0; margin: 8px 0; }
  .pricing-divider span { position: static; margin: -22px auto 0; }
}

/* ---------- Location ---------- */
.location { padding: 88px 0; }
.location__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.location__place {
  font-family: var(--font-display); font-size: clamp(28px, 3.2vw, 38px);
  color: var(--espresso); margin: 0 0 32px; line-height: 1.3;
  padding-bottom: 28px; border-bottom: 1px solid var(--line);
}
.location__media img { border-radius: var(--radius); box-shadow: var(--shadow); }
@media (max-width: 900px) { .location__grid { grid-template-columns: 1fr; gap: 36px; } .location__media { order: -1; } }

/* ---------- Amenities ---------- */
.amenities { padding: 88px 0; background: var(--espresso); color: var(--white); }
.amenities .eyebrow { color: var(--gold-line); }
.amenities .section-title { color: var(--white); }
.amenities .section-sub { color: rgba(255,255,255,0.75); }
.amenities__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.amenity-card { margin: 0; background: rgba(255,255,255,0.04); border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(255,255,255,0.08); }
.amenity-card img { width: 100%; height: 160px; object-fit: cover; }
.amenity-card figcaption { padding: 16px 18px 20px; }
.amenity-card h3 { font-family: var(--font-display); font-size: 17px; margin: 0 0 8px; font-weight: 500; }
.amenity-card p { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.5; margin: 0; }
.amenities__note { text-align: center; margin: 40px auto 0; max-width: 720px; font-size: 13px; color: rgba(255,255,255,0.65); }
@media (max-width: 960px) { .amenities__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .amenities__grid { grid-template-columns: 1fr; } }

/* ---------- Floor plans ---------- */
.floorplans { padding: 88px 0; }
.floorplans__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 56px; }
.floorplan-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--white); }
.floorplan-card__teaser { position: relative; display: block; width: 100%; padding: 0; border: none; background: var(--paper-dim); cursor: pointer; }
.floorplan-card__teaser img { width: 100%; height: 300px; object-fit: cover; }
.floorplan-card__lock {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  background: rgba(34,26,20,0.28); color: var(--white); font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase;
  transition: background 0.2s ease;
}
.floorplan-card__teaser:hover .floorplan-card__lock { background: rgba(34,26,20,0.42); }
.floorplan-card__body { padding: 26px; }
.floorplan-card__body h3 { font-family: var(--font-display); font-size: 22px; margin: 0 0 8px; color: var(--espresso); }
.floorplan-card__body p { color: var(--ink-soft); margin: 0 0 18px; }
.floorplans__features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.floorplans__features h4 { font-family: var(--font-display); font-size: 16px; margin: 0 0 8px; color: var(--espresso); }
.floorplans__features p { font-size: 13px; color: var(--ink-soft); line-height: 1.5; margin: 0; }
@media (max-width: 900px) { .floorplans__grid, .floorplans__features { grid-template-columns: 1fr; } .floorplans__features { gap: 28px; } }

/* ---------- Gallery ---------- */
.gallery { padding: 88px 0; background: var(--paper-dim); }
.gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery__item { padding: 0; border: none; background: none; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4/3; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery__item:hover img { transform: scale(1.06); }
@media (max-width: 900px) { .gallery__grid { grid-template-columns: repeat(2, 1fr); } }

.pps-lightbox {
  position: fixed; inset: 0; z-index: 2000; background: rgba(20,14,10,0.94);
  display: none; align-items: center; justify-content: center; padding: 40px;
}
.pps-lightbox.is-open { display: flex; }
.pps-lightbox img { max-width: 100%; max-height: 90vh; border-radius: var(--radius); }
.pps-lightbox__close { position: absolute; top: 20px; right: 24px; background: none; border: none; color: var(--white); font-size: 36px; line-height: 1; }

/* ---------- Why consider ---------- */
.why { padding: 88px 0; }
.why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.why__item h3 { font-family: var(--font-display); font-size: 19px; color: var(--espresso); margin: 0 0 10px; }
.why__item p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; margin: 0; }
@media (max-width: 900px) { .why__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .why__grid { grid-template-columns: 1fr; } }

/* ---------- Trust ---------- */
.trust { padding: 72px 0; background: var(--ink); color: var(--white); }
.trust__grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: center; }
.trust__copy .eyebrow { color: var(--gold-line); }
.trust__copy h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(24px, 3vw, 32px); margin: 0 0 14px; }
.trust__copy p { color: rgba(255,255,255,0.78); line-height: 1.7; margin: 0 0 18px; }
.trust__copy .pps-link-btn { color: var(--gold-line); border-color: var(--gold-line); }
.trust__badges { display: flex; flex-direction: column; gap: 18px; }
.trust__badge { border: 1px solid rgba(255,255,255,0.16); border-radius: var(--radius); padding: 16px 20px; }
.trust__badge-label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.55); margin-bottom: 6px; }
.trust__badge-value { display: block; font-family: var(--font-display); font-size: 18px; }
@media (max-width: 900px) { .trust__grid { grid-template-columns: 1fr; } }

/* ---------- Inline form ---------- */
.inline-form { padding: 88px 0; background: var(--paper-dim); }
.inline-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.inline-form__copy h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(26px, 3.4vw, 36px); color: var(--espresso); margin: 0 0 16px; }
.inline-form__copy p { color: var(--ink-soft); line-height: 1.7; }
.inline-form__card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 36px; }
@media (max-width: 900px) { .inline-form__grid { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- Form styles (shared inline + popup) ---------- */
.pps-form__heading { font-family: var(--font-display); font-size: 22px; margin: 0 0 8px; color: var(--espresso); }
.pps-form__sub { font-size: 14px; color: var(--ink-soft); margin: 0 0 22px; line-height: 1.5; }
.pps-form__row { margin-bottom: 14px; }
.pps-form input, .pps-form select {
  width: 100%; padding: 13px 14px; font-size: 15px; font-family: var(--font-body);
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); color: var(--ink);
}
.pps-form input:focus, .pps-form select:focus { border-color: var(--taupe); }
.pps-form__hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.pps-form__submit { width: 100%; margin-top: 6px; }
.pps-form__privacy { font-size: 11px; color: var(--ink-soft); margin: 12px 0 0; line-height: 1.5; }
.pps-form__privacy a { text-decoration: underline; }
.pps-form.is-submitting .pps-form__submit { opacity: 0.6; pointer-events: none; }

/* ---------- FAQ ---------- */
.faq { padding: 88px 0; }
.faq__list { max-width: 760px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__question {
  width: 100%; text-align: left; background: none; border: none; padding: 20px 0;
  font-size: 16px; color: var(--espresso); display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: var(--font-body);
}
.faq__icon { font-size: 22px; color: var(--taupe); flex-shrink: 0; transition: transform 0.2s ease; }
.faq__question[aria-expanded="true"] .faq__icon { transform: rotate(45deg); }
.faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq__answer p { margin: 0 0 20px; color: var(--ink-soft); line-height: 1.6; font-size: 14px; }

/* ---------- Final CTA ---------- */
.final-cta { padding: 96px 0; background: linear-gradient(135deg, var(--espresso), var(--ink)); color: var(--white); text-align: center; }
.final-cta__inner h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(26px, 4vw, 40px); margin: 0 0 14px; }
.final-cta__inner p { color: rgba(255,255,255,0.78); margin: 0 0 32px; }
.final-cta__buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ---------- Page disclaimer strip ---------- */
.page-disclaimer { padding: 32px 0 40px; background: var(--paper); }
.page-disclaimer p { font-size: 11px; color: var(--ink-soft); line-height: 1.7; max-width: 900px; margin: 0 auto; }
.page-disclaimer a { text-decoration: underline; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.75); padding: 40px 0 0; }
.site-footer__legal { padding: 24px; }
.site-footer__legal p { max-width: var(--container-w); margin: 0 auto; font-size: 11px; color: rgba(255,255,255,0.45); line-height: 1.7; }

/* ---------- Mobile sticky CTA ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 400;
  display: none; gap: 10px; padding: 12px 16px;
  background: var(--white); border-top: 1px solid var(--line);
  box-shadow: 0 -6px 20px rgba(0,0,0,0.08);
}
.sticky-cta .pps-btn { flex: 1; padding: 13px 10px; font-size: 12px; }
.sticky-cta .pps-btn--ghost-light { background: var(--paper-dim); border-color: var(--line); color: var(--espresso); }
@media (max-width: 720px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 68px; }
}

/* ---------- Popup modal ---------- */
.pps-modal { position: fixed; inset: 0; z-index: 1500; display: none; align-items: center; justify-content: center; padding: 20px; }
.pps-modal.is-open { display: flex; }
.pps-modal__backdrop { position: absolute; inset: 0; background: rgba(20,14,10,0.6); }
.pps-modal__panel {
  position: relative; background: var(--white); border-radius: var(--radius);
  max-width: 440px; width: 100%; padding: 40px 32px 32px; box-shadow: var(--shadow);
  max-height: 90vh; overflow-y: auto;
}
.pps-modal__close { position: absolute; top: 14px; right: 16px; background: none; border: none; font-size: 26px; color: var(--ink-soft); line-height: 1; }
@media (max-width: 480px) {
  .pps-modal { padding: 12px; }
  .pps-modal__panel { padding: 32px 20px 24px; }
  .inline-form__card { padding: 24px 20px; }
  .floorplan-card__teaser img { height: 220px; }
  .amenity-card img { height: 140px; }
}

/* ---------- Thank you / legal pages ---------- */
.simple-page { padding: 72px 0 96px; }
.simple-page .container { max-width: 820px; }
.simple-page h1 { font-family: var(--font-display); font-size: clamp(30px, 4vw, 44px); color: var(--espresso); margin: 0 0 20px; }
.simple-page h2 { font-family: var(--font-display); font-size: 22px; color: var(--espresso); margin: 32px 0 12px; }
.simple-page p, .simple-page li { color: var(--ink-soft); line-height: 1.75; font-size: 15px; }
.simple-page ul { padding-left: 20px; }
.legal-note { font-size: 11px; color: rgba(74,61,51,0.6); line-height: 1.7; margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--line); }

.thanks-hero { text-align: center; padding: 96px 0 56px; background: var(--paper-dim); }
.thanks-hero__icon {
  width: 68px; height: 68px; border-radius: 50%; background: var(--espresso); color: var(--white);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-size: 30px;
}
.thanks-hero h1 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 42px); color: var(--espresso); margin: 0 0 14px; }
.thanks-hero p { color: var(--ink-soft); max-width: 520px; margin: 0 auto; line-height: 1.6; }
.thanks-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }
