/* ============================================
   Heyday - Senior Living Landing
   Original styles. Mobile-first.
   ============================================ */

:root {
  /* Brand = twilight indigo + warm coral (tuned to match banner sky / sunset accents) */
  --lp-brand-rgb: 27, 38, 64;
  /* Legacy variable aliases (kept for existing styles) */
  --lp-white: #ffffff;
  --lp-text: #111111;
  --lp-text-muted: rgba(17, 17, 17, 0.6);
  --lp-green-dark: var(--lp-heyday-green-deep);
  --lp-green-mid: var(--lp-heyday-green);
  --lp-green-soft: var(--lp-heyday-green);
  --lp-beige: #f4f1e8;
  --lp-beige-dark: rgba(17, 17, 17, 0.28);
  --lp-gold: var(--lp-heyday-gold);
  --lp-gold-light: var(--lp-heyday-gold-hover);
  --lp-shadow: 0 4px 22px rgba(27, 38, 64, 0.1);
  --lp-radius: 8px;
  --lp-transition: 0.3s ease;
  --lp-modal-open-duration: 0.45s;
  --lp-header-height: 5rem;
  /* HeyDay hero/header palette */
  --lp-heyday-green: #2C4A2C;
  --lp-heyday-green-deep: #244024;
  --lp-heyday-gold: #b48a2b;
  --lp-heyday-gold-hover: #c89b33;
  /* Same footprint as footer Rainbow logo */
  --lp-logo-ru-w: 240px;
  --lp-logo-ru-h: 80px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scroll-padding-top: var(--lp-header-height);
}

.lp-body {
  overflow-x: hidden;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #111111;
  background: #ffffff;
  margin: 0;
  padding: 0;
}

.lp-main {
  padding-top: var(--lp-header-height);
}

/* Header */
.lp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--lp-heyday-green);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.18);
  transition:
    background var(--lp-transition),
    box-shadow var(--lp-transition);
  overflow: visible;
}

.lp-header.scrolled {
  background: var(--lp-heyday-green-deep);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.22);
}

.lp-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  height: var(--lp-header-height);
  padding-left: max(0.25rem, env(safe-area-inset-left));
  padding-right: max(0.75rem, env(safe-area-inset-right));
  gap: 0.75rem; /* small space after logo */
  overflow: visible;
}

.lp-logo {
  display: flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
  z-index: 1001;
  height: 100%;
  overflow: visible;
}

.lp-logo-img {
  display: block;
  width: var(--lp-logo-ru-w);
  height: var(--lp-logo-ru-h);
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
  margin-left: 0;
}

.lp-nav-menu {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--lp-heyday-green-deep);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 1.5rem;
  list-style: none;
  margin: 0;
  gap: 0.75rem;
  z-index: 1000;

  /* closed state (animated) */
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    max-height 900ms ease,
    opacity 420ms ease,
    transform 420ms ease;
}

.lp-nav-menu.active {
  max-height: 520px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.lp-nav-menu a {
  color: rgba(247, 246, 250, 0.92);
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color var(--lp-transition);
}

.lp-nav-menu a:hover {
  color: var(--lp-heyday-gold-hover);
}

.lp-nav-cta-item {
  margin-top: 0.5rem;
  width: 100%;
}

.lp-nav-cta-mobile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 44px;
  padding: 0 1.5rem;
  border-radius: 8px;
  background: var(--lp-heyday-gold);
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}
.lp-nav-cta-mobile:hover {
  background: var(--lp-heyday-gold-hover);
  color: #ffffff !important;
}

.lp-nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  align-items: center;
  min-width: 44px;
  min-height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.lp-nav-toggle span {
  width: 24px;
  height: 2px;
  background: rgba(247, 246, 250, 0.92);
  transition:
    transform 0.25s ease,
    opacity 0.2s ease;
  transform-origin: center;
}

.lp-nav-cta {
  display: none;
  align-items: center;
  justify-content: center;
  height: 30px;
  padding: 0 0.9rem;
  border-radius: 3px;
  background: var(--lp-heyday-gold);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
  transition:
    background var(--lp-transition),
    transform var(--lp-transition),
    box-shadow var(--lp-transition);
}
.lp-nav-cta:hover {
  background: var(--lp-heyday-gold-hover);
  transform: translateY(-1px);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

/* Hamburger → Close (X) when menu is open */
.lp-nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.lp-nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.lp-nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile CTA bar - fixed at bottom, Enquire + Call Now */
.lp-mobile-cta {
  display: none;
  flex-direction: row;
  align-items: stretch;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: #ffffff;
  padding: 0.6rem 0.75rem;
  gap: 0.75rem;
  box-shadow: 0 -2px 16px rgba(var(--lp-brand-rgb), 0.1);
  border-top: 1px solid rgba(var(--lp-brand-rgb), 0.1);
}
.lp-mobile-cta .lp-mobile-cta-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--lp-heyday-green-deep);
  text-decoration: none;
  border-radius: var(--lp-radius);
  transition:
    background var(--lp-transition),
    color var(--lp-transition);
  border: 2px solid transparent;
}
.lp-mobile-cta .lp-mobile-cta-btn:first-child {
  background: var(--lp-heyday-gold);
  border-color: var(--lp-heyday-gold);
  color: #ffffff;
}
.lp-mobile-cta .lp-mobile-cta-btn:first-child:hover {
  background: var(--lp-heyday-gold-hover);
  border-color: var(--lp-heyday-gold-hover);
  color: #ffffff;
}
.lp-mobile-cta .lp-mobile-cta-btn.lp-mobile-call {
  background: transparent;
  border-color: rgba(36, 64, 36, 0.7);
  color: var(--lp-heyday-green-deep);
}
.lp-mobile-cta .lp-mobile-cta-btn.lp-mobile-call:hover {
  background: rgba(var(--lp-brand-rgb), 0.06);
  color: var(--lp-heyday-green-deep);
  border-color: var(--lp-heyday-green-deep);
}
.lp-cta-icon {
  flex-shrink: 0;
}

/* Hero — responsive web / mobile banner assets */
.lp-hero {
  position: relative;
  overflow: hidden;
  line-height: 0;
  margin: 0;
}

.lp-hero-picture {
  display: block;
  width: 100%;
}

.lp-hero-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center top;
}

/* Buttons */
.lp-btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--lp-radius);
  transition: all var(--lp-transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.lp-btn-primary {
  background: var(--lp-gold);
  color: var(--lp-white);
  border-color: var(--lp-gold);
}

.lp-btn-primary:hover {
  background: var(--lp-gold-light);
  border-color: var(--lp-gold-light);
  color: var(--lp-white);
  transform: translateY(-2px);
}

/* HeyDay — stats strip (top bar + 6 stats) */
.lp-stats-strip {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.lp-stats-topbar {
  background: #2C4A2C;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lp-stats-topbar-inner {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 1rem;
}

.lp-stats-topbar-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  width: 100%;
}

.lp-stats-topbar-item {
  position: relative;
  flex: 1 1 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  text-align: center;
  white-space: nowrap;
  padding: 0 0.75rem;
}

.lp-stats-topbar-item::before {
  content: "";
  width: 4px;
  height: 4px;
  background: #D4A843;
  border-radius: 999px;
}

/* dots now rendered via .lp-stats-topbar-item::after */

.lp-stats-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  background: #ffffff;
}

.lp-stat-item {
  padding: 1.25rem 0.75rem 1.1rem;
  text-align: center;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}
.lp-stat-item:first-child {
  border-left: none;
}

.lp-stat-big {
  font-family: "Yeseva One", serif;
  font-weight: 700;
  font-size: clamp(1.7rem, 2.2vw, 2.4rem);
  line-height: 1.05;
  color: #111;
}

.lp-stat-sub {
  margin-top: 0.25rem;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.55);
}

.lp-stat-caption {
  margin-top: 0.35rem;
  font-size: 0.72rem;
  color: rgba(0, 0, 0, 0.45);
}

/* HeyDay — "The Idea" section */
.lp-idea {
  background: #FAF7F2;
  padding: clamp(2.5rem, 5vw, 4.25rem) 0;
}

.lp-idea-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: center;
}

.lp-idea-kicker {
  margin: 0 0 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #D4A843;
}

.lp-idea-title {
  margin: 0 0 0.85rem;
  font-family: "Yeseva One", serif;
  font-weight: 400;
  font-size: clamp(2.1rem, 3.2vw, 3.1rem);
  line-height: 1.06;
  color: #1b1b1b;
}

.lp-idea-title-accent {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 700;
  color: #2C4A2C;
}

.lp-idea-subtitle {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.7);
}

.lp-idea-desc {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  color: rgba(0, 0, 0, 0.58);
  line-height: 1.55;
}

.lp-idea-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.55rem;
  margin: 0 0 1.5rem;
}

.lp-idea-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: rgba(0, 0, 0, 0.62);
  font-size: 0.78rem;
  white-space: nowrap;
}

.lp-idea-chip-break {
  flex-basis: 100%;
  height: 0;
}

.lp-idea-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  background: var(--lp-heyday-green);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  transition: transform var(--lp-transition), background var(--lp-transition);
}
.lp-idea-cta:hover {
  background: var(--lp-heyday-green-deep);
  transform: translateY(-1px);
  color: #ffffff;
}

.lp-idea-cta-arrow {
  display: inline-block;
  transform: translateY(-1px);
}

.lp-idea-card {
  position: relative;
  height: clamp(320px, 36vw, 440px);
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
}

.lp-idea-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.lp-idea-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  backdrop-filter: blur(6px);
}

/* Hide image arrows (requested) */
.lp-idea-nav {
  display: none !important;
}

.lp-idea-nav:hover {
  background: rgba(255, 255, 255, 0.38);
}

.lp-idea-nav-prev {
  left: 14px;
}
.lp-idea-nav-next {
  right: 14px;
}

@media (max-width: 991px) {
  .lp-idea-inner {
    grid-template-columns: 1fr;
  }
  .lp-idea-media {
    order: -1;
  }
}

@media (max-width: 767px) {
  .lp-idea-chips {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem 0.55rem;
    margin-bottom: 1.35rem;
  }

  .lp-idea-chip {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 100%;
    min-height: 2.85rem;
    white-space: normal;
    text-align: center;
    font-size: 0.76rem;
    line-height: 1.25;
    padding: 0.5rem 0.55rem;
    border-radius: 10px;
    overflow-wrap: break-word;
  }

  .lp-idea-chip:nth-last-child(1) {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc(50% - 0.275rem);
    max-width: 100%;
  }

  .lp-idea-chip-break {
    display: none;
  }
}

/* HeyDay — dark cards section */
.lp-difference {
  background: #1A2E1A;
  color: rgba(255, 255, 255, 0.9);
  padding: clamp(3rem, 6vw, 4.75rem) 0;
}

.lp-difference-head {
  max-width: 780px;
}

.lp-difference-kicker {
  margin: 0 0 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(212, 168, 67, 0.85);
}

.lp-difference-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: clamp(1.85rem, 2.9vw, 2.7rem);
  line-height: 1.08;
  color: rgba(255, 255, 255, 0.94);
}

.lp-difference-title-accent {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 700;
  color: #D4A843;
}

.lp-difference-cards {
  margin-top: clamp(1.5rem, 3vw, 2.35rem);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.lp-diff-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 1.35rem 1.3rem 1.25rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.lp-diff-num {
  font-family: "Yeseva One", serif;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  color: #D4A843;
  margin-bottom: 0.7rem;
}

.lp-diff-title {
  margin: 0 0 0.55rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.93);
}

.lp-diff-desc {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.lp-diff-highlight {
  color: #D4A843;
  font-weight: 700;
}

@media (max-width: 991px) {
  .lp-difference-cards {
    grid-template-columns: 1fr;
  }
  .lp-diff-card {
    padding: 1.25rem 1.15rem;
  }
}

/* HeyDay — project pills section */
.lp-project {
  background: #FAF7F2;
  padding: clamp(2.75rem, 5.5vw, 4.25rem) 0;
}

.lp-project-inner {
  text-align: center;
}

.lp-project-kicker {
  margin: 0 0 0.85rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(212, 168, 67, 0.9);
}

.lp-project-title {
  margin: 0 0 1.75rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: clamp(2rem, 3.1vw, 3rem);
  line-height: 1.08;
  color: #1b1b1b;
}

.lp-project-title-accent {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 700;
  color: #2C4A2C;
}

.lp-project-pills {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.9rem;
  align-items: stretch;
}

.lp-project-pill {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 0.95rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 58px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
}

.lp-project-bullet {
  width: 6px;
  height: 6px;
  background: #D4A843;
  border-radius: 999px;
  flex: 0 0 auto;
}

@media (max-width: 991px) {
  .lp-project-pills {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .lp-project-pills {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* HeyDay — details (text + spec table) */
.lp-details {
  background: #ffffff;
  padding: clamp(2.75rem, 5.5vw, 4.5rem) 0;
}

.lp-details-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: start;
}

.lp-details-kicker {
  margin: 0 0 0.85rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #B8922A;
}

.lp-details-title {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: clamp(2.1rem, 3.2vw, 3.2rem);
  line-height: 1.06;
  color: #1b1b1b;
}

.lp-details-title-accent {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 700;
  color: #B8922A;
}

.lp-details-desc {
  margin: 0 0 1.5rem;
  max-width: 34rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.58);
}

.lp-details-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  background: #1A2E1A;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  transition: transform var(--lp-transition), background var(--lp-transition);
}
.lp-details-cta:hover {
  background: #132313;
  transform: translateY(-1px);
  color: #ffffff;
}

.lp-details-table-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.lp-details-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem;
  padding: 0.7rem 0.95rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  align-items: center;
}
.lp-details-row:first-child {
  border-top: none;
}

.lp-details-key {
  font-size: 0.74rem;
  letter-spacing: 0.02em;
  color: rgba(0, 0, 0, 0.55);
}

.lp-details-val {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.72);
  text-align: right;
}

.lp-details-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  padding: 0 0.6rem;
  border-radius: 999px;
  background: rgba(44, 74, 44, 0.1);
  color: #2C4A2C;
  border: 1px solid rgba(44, 74, 44, 0.22);
  font-size: 0.72rem;
  font-weight: 700;
  margin-right: 0.4rem;
}

@media (max-width: 991px) {
  .lp-details-inner {
    grid-template-columns: 1fr;
  }
  .lp-details-val {
    text-align: left;
  }
}

/* HeyDay — residences section */
.lp-residences {
  background: #FAF7F2;
  padding: clamp(2.75rem, 5.5vw, 4.5rem) 0;
}

.lp-residences-head {
  text-align: center;
  margin-bottom: clamp(1.5rem, 3.2vw, 2.5rem);
}

.lp-residences-kicker {
  margin: 0 0 0.85rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(212, 168, 67, 0.9);
}

.lp-residences-title {
  margin: 0 0 0.6rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: clamp(2rem, 3.1vw, 3.1rem);
  line-height: 1.08;
  color: #1b1b1b;
}

.lp-residences-title-accent {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 700;
  color: #2C4A2C;
}

.lp-residences-subtitle {
  margin: 0.35rem auto 0;
  max-width: 46rem;
  font-size: 0.92rem;
  color: rgba(0, 0, 0, 0.55);
}

.lp-residences-after {
  margin: 0.75rem auto 0;
  max-width: 46rem;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.55;
  color: rgba(0, 0, 0, 0.62);
}

.lp-residences-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: clamp(1.5rem, 3.5vw, 3rem);
  align-items: start;
}

.lp-residences-right {
  align-self: center;
}

.lp-residences-left-title {
  margin: 0 0 1.25rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 2.2vw, 2.25rem);
  line-height: 1.1;
  color: #1b1b1b;
}

.lp-residences-left-accent {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 700;
  color: #2C4A2C;
}

.lp-suite-list {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.lp-suite-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 1.1rem 1.15rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
}

.lp-suite-meta {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  width: 100%;
}

.lp-suite-heading {
  font-family: "Yeseva One", Georgia, serif;
  font-weight: 400;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  line-height: 1.35;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1b1b1b;
}

.lp-suite-size-accent {
  color: #D4A843;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.lp-suite-copy {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.56);
  max-width: 40rem;
}

.lp-suite-line {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.45;
  color: rgba(0, 0, 0, 0.64);
}

.lp-suite-highlights {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.55;
  color: rgba(0, 0, 0, 0.52);
}

.lp-suite-foot {
  margin: 0;
  font-size: 0.8rem;
  font-style: italic;
  line-height: 1.45;
  color: rgba(0, 0, 0, 0.48);
}

.lp-suite-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  height: 34px;
  padding: 0 1rem;
  border-radius: 999px;
  background: #1A2E1A;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.78rem;
  white-space: nowrap;
}
.lp-suite-cta:hover {
  background: #132313;
  color: #ffffff;
}

.lp-residence-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
  height: clamp(320px, 38vw, 460px);
}

.lp-residence-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 1;
  transition: opacity 650ms ease;
}

.lp-residence-img.lp-residence-img-fadeout {
  opacity: 0;
}

.lp-residence-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  backdrop-filter: blur(6px);
}
.lp-residence-nav:hover {
  background: rgba(255, 255, 255, 0.38);
}
.lp-residence-nav-prev {
  left: 14px;
}
.lp-residence-nav-next {
  right: 14px;
}

.lp-residence-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  display: flex;
  justify-content: center;
  gap: 6px;
}
.lp-residence-dot {
  position: relative;
  width: 16px;
  height: 2px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 99px;
  overflow: hidden;
}
.lp-residence-dot-active {
  background: rgba(255, 255, 255, 0.45);
}

.lp-residence-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 0%;
  background: rgba(255, 255, 255, 0.85);
}

@keyframes lp-residence-progress {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

.lp-residence-dot.lp-residence-dot-active::after {
  animation: lp-residence-progress var(--lp-residence-progress, 4000ms) linear
    forwards;
}

@media (max-width: 991px) {
  .lp-residences-grid {
    grid-template-columns: 1fr;
  }
  .lp-residences-right {
    align-self: stretch;
  }
  .lp-suite-card {
    align-items: flex-start;
  }
  .lp-suite-cta {
    width: max-content;
  }
}

@media (max-width: 575px) {
  .lp-residence-media {
    height: 280px;
  }
}

/* HeyDay — leaf background banner (30+ reasons) */
.lp-reasons {
  position: relative;
  min-height: clamp(280px, 34vw, 420px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2.25rem, 5vw, 4rem) 0;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
  overflow: hidden;
}

.lp-reasons-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.lp-reasons-bg::before {
  content: "";
  position: absolute;
  inset: -14px;
  background: url("../images/leaf_image.webp") center center / cover no-repeat;
  filter: blur(2px);
  transform: scale(1.03);
}

.lp-reasons-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 46, 26, 0.45) 0%,
    rgba(26, 46, 26, 0.58) 100%
  );
}

.lp-reasons-inner {
  position: relative;
  z-index: 2;
  max-width: 980px;
}

.lp-reasons-title {
  margin: 0 0 0.85rem;
  font-family: "Yeseva One", Georgia, serif;
  font-weight: 400;
  font-size: clamp(2.1rem, 4.2vw, 3.6rem);
  line-height: 1.05;
  color: rgba(255, 255, 255, 0.96);
}

.lp-reasons-title-accent {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 700;
  color: #D4A843;
}

.lp-reasons-desc {
  margin: 0 auto 0.85rem;
  max-width: 56rem;
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.84);
}

.lp-reasons-after {
  margin: 0 auto 1.4rem;
  max-width: 56rem;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.94);
}

.lp-reasons-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  flex-wrap: wrap;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.lp-reasons-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.lp-reasons-tag-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #D4A843;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

@media (max-width: 575px) {
  .lp-reasons-desc {
    font-size: 0.86rem;
  }
  .lp-reasons-after {
    font-size: 0.88rem;
  }
  .lp-reasons-tags {
    gap: 1rem;
    letter-spacing: 0.14em;
  }
}

/* HeyDay — amenities section (tabs + grid + pool banner) */
.lp-amenities2 {
  background: #FAF7F2;
  padding: clamp(2.75rem, 5.5vw, 4.5rem) 0;
}

.lp-amenities2-inner {
  text-align: center;
}

.lp-amenities2-kicker {
  margin: 0 0 0.85rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(212, 168, 67, 0.9);
}

.lp-amenities2-title {
  margin: 0 0 0.85rem;
  font-family: "Yeseva One", Georgia, serif;
  font-weight: 400;
  font-size: clamp(2rem, 3.1vw, 3.1rem);
  line-height: 1.08;
  color: #1b1b1b;
}

.lp-amenities2-intro {
  max-width: 40rem;
  margin: 0 auto 1.35rem;
}

.lp-amenities2-desc {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  line-height: 1.62;
  color: rgba(0, 0, 0, 0.58);
}

.lp-amenities2-desc:last-child {
  margin-bottom: 0;
}

.lp-amenities2-tabs {
  display: inline-flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto 1.35rem;
}

.lp-amenities2-tab {
  height: 34px;
  padding: 0 1.05rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.65);
  color: rgba(0, 0, 0, 0.62);
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
  transition: background var(--lp-transition), color var(--lp-transition),
    transform var(--lp-transition);
}

.lp-amenities2-tab.active {
  background: #1A2E1A;
  border-color: #1A2E1A;
  color: #ffffff;
}

.lp-amenities2-tab:hover {
  transform: translateY(-1px);
}

.lp-amenities2-panel {
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

.lp-amenities2-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 0 auto 1.15rem;
}

.lp-amenities2-card {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.6rem;
  text-align: left;
  padding: 0.95rem 1rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: rgba(0, 0, 0, 0.7);
  font-weight: 600;
  font-size: 0.82rem;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.05);
  min-height: 54px;
}

.lp-amenities2-ico {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(212, 168, 67, 0.14);
  color: #D4A843;
  flex: 0 0 auto;
  font-size: 0.95rem;
}

.lp-amenities2-hero {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: clamp(150px, 18vw, 210px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
}

.lp-amenities2-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 46, 26, 0.62) 0%, rgba(26, 46, 26, 0.72) 100%),
    url("../images/pool_image.webp");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.lp-amenities2-hero-title {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 3.1vw, 2.75rem);
  line-height: 1.08;
  color: #FFFFFF;
  max-width: 52rem;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
}

.lp-amenities2-hero-accent {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 700;
  color: #D4A843;
  display: inline-block;
  font-size: 1.05em;
}

@media (max-width: 991px) {
  .lp-amenities2-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .lp-amenities2-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lp-amenities2-card {
    justify-content: flex-start;
  }
  .lp-amenities2-hero {
    padding: 1.6rem 1.1rem;
  }

  .lp-amenities2-hero-title {
    font-size: clamp(1.35rem, 5.2vw, 1.9rem);
  }
}

@media (max-width: 991px) {
  .lp-stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lp-stat-item:nth-child(4) {
    border-left: none;
  }
}

@media (max-width: 575px) {
  .lp-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lp-stat-item:nth-child(3),
  .lp-stat-item:nth-child(5) {
    border-left: none;
  }
}

@media (max-width: 900px) {
  .lp-stats-topbar-items {
    justify-content: center;
    flex-wrap: wrap;
  }
  .lp-stats-topbar-item {
    flex: 0 0 auto;
    padding: 0 0.75rem;
  }
}

@media (max-width: 767px) {
  .lp-stats-topbar-inner {
    padding: 0.3rem 0.75rem;
    min-height: 0;
  }

  .lp-stats-topbar-items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 0.45rem;
    row-gap: 0.28rem;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
  }

  .lp-stats-topbar-item {
    flex: none;
    width: 100%;
    min-height: 0;
    padding: 0.22rem 0.28rem;
    gap: 0.3rem;
    justify-content: center;
    white-space: normal;
    text-align: center;
    font-size: 0.625rem;
    line-height: 1.12;
    letter-spacing: 0.028em;
    overflow-wrap: break-word;
  }

  .lp-stats-topbar-item::before {
    width: 3px;
    height: 3px;
    flex-shrink: 0;
  }
}

.lp-btn-outline {
  background: transparent;
  color: var(--lp-white);
  border-color: var(--lp-beige);
}

.lp-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--lp-gold-light);
  color: var(--lp-gold-light);
}

.lp-btn-block {
  width: 100%;
  text-align: center;
}

/* Section CTA rows */
.lp-section-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.lp-section-ctas .lp-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Dark sections: outline buttons should be readable */
.lp-difference .lp-btn-outline,
.lp-reasons .lp-btn-outline,
.lp-serious .lp-btn-outline,
.lp-gallery-heyday .lp-btn-outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: rgba(255, 255, 255, 0.92);
}
.lp-difference .lp-btn-outline:hover,
.lp-reasons .lp-btn-outline:hover,
.lp-serious .lp-btn-outline:hover,
.lp-gallery-heyday .lp-btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.75);
  color: #ffffff;
}

/* Scrollbars */
html {
  scrollbar-color: rgba(44, 74, 44, 0.9) rgba(17, 29, 17, 0.18);
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: rgba(17, 29, 17, 0.18);
}
::-webkit-scrollbar-thumb {
  background: rgba(44, 74, 44, 0.9);
  border-radius: 999px;
  border: 2px solid rgba(17, 29, 17, 0.18);
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(30, 54, 30, 0.95);
}

/* Section titles */
.lp-section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--lp-green-dark);
  text-align: center;
  margin-bottom: 0.5rem;
}

.lp-section-subtitle {
  text-align: center;
  color: var(--lp-text-muted);
  margin-bottom: 2rem;
}

/* Gallery */
.lp-gallery {
  padding: 4rem 0;
  background: var(--lp-white);
}

.lp-gallery-heyday {
  background: #1A2E1A;
  padding: clamp(3rem, 6vw, 4.75rem) 0;
  color: rgba(255, 255, 255, 0.92);
}

.lp-gallery-kicker {
  margin: 0 0 0.7rem;
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(212, 168, 67, 0.85);
}

.lp-gallery-title {
  margin: 0;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: clamp(2rem, 3.2vw, 3.15rem);
  line-height: 1.08;
  color: rgba(255, 255, 255, 0.96);
}

.lp-gallery-subtitle {
  margin: 0.35rem 0 1.6rem;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.62);
}

.lp-gallery-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0 auto 1.4rem;
}

.lp-gallery-filter {
  height: 32px;
  padding: 0 1.05rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  transition:
    background var(--lp-transition),
    color var(--lp-transition),
    transform var(--lp-transition);
}

.lp-gallery-filter.active {
  background: rgba(255, 255, 255, 0.92);
  color: #1A2E1A;
  border-color: rgba(255, 255, 255, 0.9);
}

.lp-gallery-filter:hover {
  transform: translateY(-1px);
}

.lp-gallery-grid-heyday {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.lp-gallery-grid-heyday .lp-gallery-item {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.lp-gallery-grid-heyday .lp-gallery-item img {
  transform: none;
}

.lp-gallery-more-wrap {
  margin-top: 1.35rem;
}

.lp-gallery-heyday .lp-gallery-more {
  border-color: rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.86);
}

.lp-gallery-heyday .lp-gallery-more:hover {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.96);
}

@media (max-width: 991px) {
  .lp-gallery-grid-heyday {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  /* Mobile: show 3 images stacked (one by one down) */
  .lp-gallery-grid-heyday {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .lp-gallery-grid-heyday .lp-gallery-item {
    width: 100%;
  }
}

.lp-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

/* Force HeyDay gallery to 1-column on mobile */
@media (max-width: 900px) {
  .lp-gallery-grid.lp-gallery-grid-heyday {
    grid-template-columns: 1fr !important;
  }
}

.lp-gallery-item-extra {
  display: none;
}

.lp-gallery-item.lp-gallery-hidden {
  display: none !important;
}

/* Mobile "All" hiding handled by JS (so category filters still work). */

/* HeyDay — Why Heyday section */
.lp-why {
  background: #FAF7F2;
  padding: clamp(2.75rem, 5.5vw, 4.75rem) 0;
}

.lp-why-brochure {
  background: #2C4A2C;
  border-radius: 12px;
  padding: 1.75rem 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.lp-why-brochure-title {
  margin: 0 0 0.35rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: clamp(1.55rem, 1.9vw, 2.05rem);
  line-height: 1.1;
  color: #ffffff;
}

.lp-why-brochure-accent {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}

.lp-why-brochure-desc {
  margin: 0 0 0.65rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
}

.lp-why-brochure-meta {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.lp-why-brochure-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  height: 44px;
  padding: 0 1.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #1A2E1A;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
}

.lp-why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: clamp(1.5rem, 3.5vw, 3rem);
  align-items: start;
}

.lp-why-kicker {
  margin: 0 0 0.7rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #B8922A;
}

.lp-why-title {
  margin: 0 0 1.25rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 3.6vw, 3.35rem);
  line-height: 1.02;
  color: #1b1b1b;
}

.lp-why-title-accent {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 700;
  color: #D4A843;
}

.lp-why-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.lp-why-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.6);
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}
.lp-why-list li::before {
  content: "✓";
  color: #2C4A2C;
  font-weight: 900;
  margin-top: 0.1rem;
}

.lp-why-mosaic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}
.lp-why-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  aspect-ratio: 4 / 3;
  display: block;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

/* Mobile carousel (swipe) */
.lp-why-carousel {
  display: none;
}
.lp-why-carousel {
  position: relative;
}

.lp-why-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  backdrop-filter: blur(6px);
}
.lp-why-carousel-nav:hover {
  background: rgba(255, 255, 255, 0.38);
}
.lp-why-carousel-prev {
  left: 12px;
}
.lp-why-carousel-next {
  right: 12px;
}
.lp-why-carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 0;
  border-radius: 12px;
}
.lp-why-carousel-img {
  flex: 0 0 100%;
  scroll-snap-align: start;
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.lp-why-carousel-track {
  scrollbar-width: none;
}
.lp-why-carousel-track::-webkit-scrollbar {
  display: none;
}

@media (max-width: 991px) {
  .lp-why-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .lp-why-brochure {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 1.4rem 1.25rem;
  }
  .lp-why-mosaic-grid {
    display: none;
  }
  .lp-why-carousel {
    display: block;
  }
}

/* HeyDay — serious families section (image + trust stats) */
.lp-serious {
  background: #1A2E1A;
}

.lp-serious-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  min-height: clamp(320px, 34vw, 460px);
}

.lp-serious-media {
  position: relative;
  overflow: hidden;
}

.lp-serious-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lp-serious-panel {
  display: flex;
  align-items: center;
  background: #1A2E1A;
  color: rgba(255, 255, 255, 0.9);
  padding: clamp(1.75rem, 3.8vw, 3rem);
}

.lp-serious-content {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.lp-serious-title {
  margin: 0 0 0.75rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  line-height: 1.08;
  color: #ffffff;
}

.lp-serious-title-accent {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 700;
  color: #D4A843;
}

.lp-serious-desc {
  margin: 0 auto 1.35rem;
  max-width: 42rem;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.lp-serious-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.lp-serious-stat {
  padding: 0.75rem 0.5rem;
  position: relative;
}

/* Vertical dividers between stats (desktop/tablet) */
.lp-serious-stat + .lp-serious-stat {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.lp-serious-stat-top {
  font-family: "Yeseva One", Georgia, serif;
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.92);
}

.lp-serious-stat-mid {
  margin-top: 0.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(212, 168, 67, 0.85);
}

.lp-serious-stat-bot {
  margin-top: 0.4rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.4;
}

@media (max-width: 991px) {
  .lp-serious-wrap {
    grid-template-columns: 1fr;
  }
  .lp-serious-media {
    min-height: 240px;
  }
  .lp-serious-panel {
    padding: 1.75rem 1.25rem 2rem;
  }
  .lp-serious-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-top: 0.9rem;
  }
  .lp-serious-stat {
    padding: 0.55rem 0.4rem;
  }
  .lp-serious-stat-top {
    font-size: 1rem;
  }
  .lp-serious-stat-mid {
    font-size: 0.65rem;
    letter-spacing: 0.14em;
  }
  .lp-serious-stat-bot {
    font-size: 0.72rem;
  }
}

@media (max-width: 575px) {
  .lp-serious-title {
    font-size: 1.65rem;
  }
  .lp-serious-desc {
    font-size: 0.86rem;
    margin-bottom: 1rem;
  }
  .lp-serious-stat-bot {
    font-size: 0.68rem;
  }
}

/* HeyDay — Second innings timeline */
.lp-innings {
  background: #FAF7F2;
  padding: clamp(2.75rem, 5.5vw, 4.75rem) 0;
}

.lp-innings-inner {
  text-align: center;
}

.lp-innings-kicker {
  margin: 0 0 0.85rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #B8922A;
}

.lp-innings-title {
  margin: 0 0 2rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: clamp(2.1rem, 3.4vw, 3.35rem);
  line-height: 1.05;
  color: #1b1b1b;
}

.lp-innings-title-accent {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 700;
  color: #B8922A;
}

.lp-innings-timeline {
  --lp-innings-dot-size: 66px;
  /* Matches .lp-innings-step padding-top so lines meet dot centres */
  --lp-innings-step-pad-y: 0.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1fr minmax(0, 1fr) 1fr minmax(0, 1fr);
  align-items: start;
  gap: 0;
  max-width: 980px;
  margin: 0 auto;
}

.lp-innings-step {
  display: grid;
  justify-items: center;
  gap: 0;
  padding: var(--lp-innings-step-pad-y) 0.25rem;
  grid-template-rows: var(--lp-innings-dot-size) auto auto;
}

.lp-innings-dot {
  box-sizing: border-box;
  width: auto;
  min-width: var(--lp-innings-dot-size);
  height: var(--lp-innings-dot-size);
  padding: 0 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.78rem;
  line-height: 1.15;
  text-align: center;
  color: rgba(0, 0, 0, 0.7);
}

.lp-innings-dot-40 {
  background: rgba(255, 255, 255, 0.7);
}

.lp-innings-dot-50 {
  background: #E8E0D4;
  border-color: #7A9188;
  color: rgba(0, 0, 0, 0.72);
}

.lp-innings-dot-brand {
  background: #C4975A;
  border-color: #C4975A;
  color: #ffffff;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: none;
  padding: 0 0.65rem;
}

.lp-innings-line {
  height: 1px;
  width: 100%;
  margin: 0 1rem;
  box-sizing: border-box;
  align-self: start;
  /* Same vertical centre as pills (step top padding + half dot height) */
  margin-top: calc(
    var(--lp-innings-step-pad-y) + (var(--lp-innings-dot-size) - 1px) / 2
  );
  background: rgba(0, 0, 0, 0.18);
}

.lp-innings-step-title {
  font-family: "Yeseva One", Georgia, serif;
  font-weight: 400;
  font-size: 1.05rem;
  color: rgba(0, 0, 0, 0.78);
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin-top: 0.55rem; /* gap round → title — same for all three columns */
}

.lp-innings-step-sub {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.5);
  margin-top: 0; /* no gap from title → sub */
}

.lp-innings-step-sub-accent {
  color: #C4975A;
  font-weight: 600;
}

@media (max-width: 767px) {
  .lp-innings-title {
    margin-bottom: 1.5rem;
  }
  /* Mobile: vertical timeline (cleaner) */
  .lp-innings-timeline {
    --lp-innings-dot-size: 56px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
    position: relative;
    padding-left: 0.25rem;
  }

  .lp-innings-timeline::before {
    content: none;
  }

  .lp-innings-line {
    display: none;
  }

  .lp-innings-step {
    grid-template-columns: var(--lp-innings-dot-size) 1fr;
    grid-template-rows: auto auto;
    justify-items: start;
    align-items: center;
    column-gap: 0.95rem;
    row-gap: 0;
    padding: 0;
    text-align: left;
  }

  .lp-innings-dot {
    grid-row: 1 / span 2;
    font-size: 0.74rem;
    padding: 0 0.6rem;
  }

  .lp-innings-dot-brand {
    font-size: 0.68rem;
    padding: 0 0.55rem;
  }

  .lp-innings-step-title {
    font-size: 1.05rem;
    line-height: 1.15;
  }

  .lp-innings-step-sub {
    font-size: 0.78rem;
  }
}

.lp-gallery-item {
  position: relative;
  border: none;
  padding: 0;
  cursor: pointer;
  border-radius: var(--lp-radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--lp-beige);
}

.lp-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--lp-transition);
}

.lp-gallery-item:hover img {
  transform: scale(1.05);
}

.lp-gallery-more-wrap {
  margin-top: 1.5rem;
  text-align: center;
}

.lp-gallery-more {
  color: var(--lp-green-dark);
  border-color: var(--lp-green-mid);
}

.lp-gallery-more:hover {
  background: var(--lp-green-dark);
  color: var(--lp-white);
}

/* Gallery modal */
.lp-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0s linear var(--lp-modal-open-duration);
}
.lp-modal.lp-modal-visible {
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}
.lp-modal[hidden] {
  display: none !important;
  visibility: hidden !important;
}

.lp-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  cursor: pointer;
  opacity: 0;
  transition: opacity var(--lp-modal-open-duration) ease-out;
}
.lp-modal.lp-modal-visible .lp-modal-backdrop {
  opacity: 1;
}

.lp-modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  opacity: 0;
  transform: scale(0.96);
  transition:
    opacity var(--lp-modal-open-duration) ease-out,
    transform var(--lp-modal-open-duration) ease-out;
}
.lp-modal.lp-modal-visible .lp-modal-content {
  opacity: 1;
  transform: scale(1);
}

.lp-modal-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--lp-radius);
}

/* Gallery popup sizing (wider image) */
.lp-gallery-modal .lp-modal-content {
  width: 92vw;
  max-width: 1100px !important;
}
.lp-gallery-modal .lp-modal-content img {
  width: 100% !important;
  height: auto;
  max-height: 80vh;
}

.lp-modal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  border: none;
  color: var(--lp-white);
  font-size: 1.75rem;
  padding: 0.35rem 0.6rem;
  cursor: pointer;
  border-radius: 999px;
  z-index: 2;
}

.lp-modal-prev {
  left: -2.5rem;
}

.lp-modal-next {
  right: -2.5rem;
}

.lp-modal-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  background: none;
  border: none;
  color: var(--lp-white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}

.lp-modal-caption {
  text-align: center;
  color: var(--lp-white);
  margin-top: 0.5rem;
}

/* Enquiry modal popup - slow open */
.lp-enquiry-modal .lp-modal-backdrop {
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity var(--lp-modal-open-duration) ease-out;
}
.lp-enquiry-modal.lp-modal-visible .lp-modal-backdrop {
  opacity: 1;
}

.lp-enquiry-modal-box {
  position: relative;
  z-index: 1;
  max-width: 440px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: #ffffff;
  color: #111111;
  padding: 1.5rem 1.35rem 1.25rem;
  border-radius: 16px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: scale(0.96);
  transition:
    opacity var(--lp-modal-open-duration) ease-out,
    transform var(--lp-modal-open-duration) ease-out;
}

.lp-enquiry-modal-box::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--lp-heyday-green), var(--lp-heyday-gold));
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.lp-enquiry-modal.lp-modal-visible .lp-enquiry-modal-box {
  opacity: 1;
  transform: scale(1);
}

.lp-enquiry-modal-box .lp-section-title {
  color: var(--lp-heyday-green-deep);
  margin-bottom: 0.35rem;
  font-size: clamp(1.25rem, 3.4vw, 1.85rem);
}

.lp-enquiry-modal-box .lp-section-subtitle {
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 1.5rem;
}

.lp-enquiry-modal-box .lp-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-size: 1.75rem;
  color: rgba(36, 64, 36, 0.85);
  background: rgba(44, 74, 44, 0.08);
  border-radius: 10px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lp-enquiry-modal-box .lp-form-row label {
  color: rgba(0, 0, 0, 0.65);
  font-weight: 600;
}
.lp-enquiry-modal-box .lp-form-row input {
  border-color: rgba(0, 0, 0, 0.12);
  background: #ffffff;
  color: #111111;
}

.lp-enquiry-modal-box .lp-form-row input:focus {
  background: #ffffff;
  color: #111111;
}

/* Prevent browser autofill from changing background */
.lp-enquiry-modal-box input:-webkit-autofill,
.lp-enquiry-modal-box input:-webkit-autofill:hover,
.lp-enquiry-modal-box input:-webkit-autofill:focus,
.lp-enquiry-modal-box select:-webkit-autofill,
.lp-enquiry-modal-box select:-webkit-autofill:hover,
.lp-enquiry-modal-box select:-webkit-autofill:focus {
  -webkit-text-fill-color: #111111;
  transition: background-color 9999s ease-in-out 0s;
  box-shadow: 0 0 0px 1000px #ffffff inset;
}
.lp-enquiry-modal-box .lp-form-note {
  color: rgba(0, 0, 0, 0.55);
}

/* Amenities tab panels (JS toggles .active; layout from .lp-amenities2-panel) */
.lp-amenities-panel {
  display: none;
}

.lp-amenities-panel.active {
  display: block;
}

/* Location */
.lp-location {
  padding: 4rem 0;
  background: var(--lp-beige);
}

.lp-location-heyday {
  background: #FFFFFF;
  padding: clamp(2.25rem, 4.5vw, 3.75rem) 0;
}

.lp-location-kicker {
  margin: 0 0 0.85rem;
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #B8922A;
}

.lp-location-title {
  margin: 0;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: clamp(2rem, 3.2vw, 3.15rem);
  line-height: 1.08;
  color: #1b1b1b;
}

.lp-location-title-accent {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 700;
  color: #B8922A;
}

.lp-location-subtitle {
  margin: 0.45rem auto 1.25rem;
  text-align: center;
  max-width: 52rem;
  font-size: 0.92rem;
  color: rgba(0, 0, 0, 0.55);
  line-height: 1.55;
}

.lp-location-addressbar {
  background: #1A2E1A;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  margin-bottom: 1rem;
}

.lp-location-address-label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(212, 168, 67, 0.85);
  margin-bottom: 0.25rem;
}

.lp-location-address-text {
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
}

.lp-location-maps-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  height: 40px;
  padding: 0 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.82rem;
  white-space: nowrap;
}
.lp-location-maps-btn:hover {
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.96);
}

.lp-location-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}

.lp-loc-tabs {
  display: none;
  gap: 0.5rem;
  align-items: center;
  margin: 0.5rem 0 0.65rem;
  flex-wrap: wrap;
  justify-content: center;
  overflow: visible;
  padding-bottom: 0;
}

.lp-loc-tab {
  flex: 0 0 auto;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.85);
  color: rgba(0, 0, 0, 0.65);
  border-radius: 999px;
  padding: 0.5rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  white-space: nowrap;
}

.lp-loc-tab.is-active {
  border-color: rgba(184, 146, 42, 0.45);
  color: #B8922A;
}

.lp-loc-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 0.5rem 0.65rem 0.55rem;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
  text-align: left;
}

.lp-loc-card-title,
.lp-loc-card-sub {
  font-weight: 700;
  text-transform: uppercase;
}

.lp-loc-card-title {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: #B8922A;
  margin-bottom: 0.3rem;
}

.lp-loc-card-sub {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: rgba(26, 46, 26, 0.78);
  margin: 0.35rem 0 0.12rem;
}
.lp-loc-card-sub:first-of-type {
  margin-top: 0;
}

.lp-loc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.lp-loc-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.62);
  padding: 0.22rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.lp-loc-list li:last-child {
  border-bottom: none;
}

.lp-loc-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 18px;
  padding: 0 0.5rem;
  border-radius: 999px;
  background: #1A2E1A;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.7rem;
  font-weight: 700;
  white-space: nowrap;
}

@media (max-width: 991px) {
  .lp-location-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .lp-loc-tabs {
    display: flex;
  }
  .lp-location-cards {
    grid-template-columns: 1fr;
  }
  .lp-location-cards .lp-loc-card {
    display: none;
  }
  .lp-location-cards .lp-loc-card.is-active {
    display: block;
  }
}

@media (max-width: 575px) {
  .lp-location-addressbar {
    grid-template-columns: 1fr;
    justify-items: start;
  }
  .lp-location-cards {
    grid-template-columns: 1fr;
  }
}

/* HeyDay — Developer (House of Incor) */
.lp-dev {
  background: #FAF7F2;
  padding: clamp(2.75rem, 5.5vw, 4.75rem) 0;
}

.lp-dev-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: clamp(1.5rem, 3.5vw, 3rem);
  align-items: start;
}

.lp-dev-right {
  align-self: center;
}

.lp-dev-kicker {
  margin: 0 0 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #B8922A;
}

.lp-dev-logo {
  width: min(210px, 62vw);
  height: auto;
  display: block;
  margin: 0 0 1rem;
}

.lp-dev-desc {
  margin: 0 0 0.9rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.58);
  max-width: 34rem;
}

.lp-dev-accent {
  color: #B8922A;
  font-weight: 600;
}

.lp-dev-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.1rem;
}

.lp-dev-stat {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 0.9rem 0.85rem;
  text-align: center;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
}

.lp-dev-stat-num {
  font-family: "Yeseva One", serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: #1b1b1b;
  line-height: 1.1;
}

.lp-dev-stat-label {
  margin-top: 0.25rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.5);
}

.lp-dev-timeline {
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}

.lp-dev-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1rem;
  padding: 0.95rem 1.05rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  align-items: stretch;
}
.lp-dev-row:first-child {
  border-top: none;
}
.lp-dev-row:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.lp-dev-year {
  font-family: "Yeseva One", serif;
  font-weight: 700;
  color: #B8922A;
  font-size: 0.95rem;
  display: grid;
  place-items: center;
  text-align: center;
  align-self: stretch;
}

.lp-dev-event {
  font-size: 0.88rem;
  color: rgba(0, 0, 0, 0.62);
  line-height: 1.45;
}

@media (max-width: 991px) {
  .lp-dev-inner {
    grid-template-columns: 1fr;
  }
  .lp-dev-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .lp-dev-stats {
    grid-template-columns: 1fr;
  }
  .lp-dev-row {
    grid-template-columns: 64px 1fr;
    padding: 0.8rem 0.85rem;
  }
}

/* Contact / lead forms */
.lp-form {
  max-width: 480px;
  margin: 0 auto;
}

.lp-form-row {
  margin-bottom: 1.25rem;
}

.lp-form-row label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--lp-beige);
}

.lp-form-row input {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  min-height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--lp-radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--lp-white);
  transition: border-color var(--lp-transition);
}

/* Country code select should visually match inputs */
.lp-form-row select {
  width: 100%;
  padding: 0.85rem 0.75rem;
  font-family: inherit;
  font-size: 0.95rem;
  min-height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--lp-radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--lp-white);
  transition: border-color var(--lp-transition);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.lp-form-row select:focus {
  outline: none;
  border-color: var(--lp-gold-light);
}

.lp-form-row select option {
  background: var(--lp-green-dark);
  color: var(--lp-white);
}

/* White modal: selects should match white inputs */
.lp-enquiry-modal-box .lp-form-row select {
  border-color: rgba(0, 0, 0, 0.12);
  background: #ffffff;
  color: #111111;
}
.lp-enquiry-modal-box .lp-form-row select:focus {
  background: #ffffff;
  color: #111111;
}
.lp-enquiry-modal-box .lp-form-row select option {
  background: #ffffff;
  color: #111111;
}
@media (max-width: 767px) {
  .lp-form-row input,
  .lp-enquiry-modal-box .lp-form-row input {
    font-size: 16px;
  }
}

.lp-form-row input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.lp-enquiry-modal-box .lp-form-row input::placeholder {
  color: rgba(0, 0, 0, 0.38);
}

.lp-form-row input:focus {
  outline: none;
  border-color: var(--lp-gold-light);
}

.lp-form-row-split {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1rem;
}

.lp-required {
  color: var(--lp-gold-light);
}

.lp-form-note {
  font-size: 0.85rem;
  color: var(--lp-beige-dark);
  margin-bottom: 1.25rem;
}

.lp-form-note a {
  color: var(--lp-gold-light);
  text-decoration: underline;
}

/* FAQ */
.lp-faq {
  padding: 4rem 0;
  background: var(--lp-white);
}

.lp-accordion {
  max-width: 700px;
  margin: 0 auto;
}

.lp-accordion-item {
  border-bottom: 1px solid var(--lp-beige);
}

.lp-accordion-trigger {
  width: 100%;
  padding: 1.25rem 0;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  color: var(--lp-green-dark);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--lp-transition);
}

.lp-accordion-trigger::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--lp-gold);
}

.lp-accordion-trigger[aria-expanded="true"]::after {
  content: "−";
}

.lp-accordion-trigger:hover {
  color: var(--lp-gold);
}

.lp-accordion-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--lp-transition);
}

.lp-accordion-panel p {
  padding: 0 0 1.25rem 0;
  margin: 0;
  color: var(--lp-text-muted);
  font-size: 0.95rem;
}

/* HeyDay — FAQ (Questions answered) */
.lp-faq-heyday {
  background: #FFFFFF;
  padding: clamp(2.5rem, 5vw, 4.25rem) 0;
}

.lp-faq-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.35fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.lp-faq-left {
  padding-top: 0;
}

.lp-faq-kicker {
  margin: 0 0 0.9rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #B8922A;
}

.lp-faq-title {
  margin: 0 0 0.9rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(2.65rem, 4.6vw, 3.9rem);
  line-height: 0.9;
  color: #1b1b1b;
}

.lp-faq-title-accent {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 700;
  color: #B8922A;
}

.lp-faq-sub {
  margin: 0 0 1.25rem;
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(0, 0, 0, 0.55);
  max-width: 20rem;
}

.lp-faq-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  height: 42px;
  padding: 0 1.25rem;
  border-radius: 999px;
  background: #1A2E1A;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.86rem;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
}
.lp-faq-cta:hover {
  color: #ffffff;
  background: #132313;
}

.lp-faq-search {
  display: block;
  width: 100%;
}

.lp-faq-search input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.9);
  padding: 0.68rem 0.9rem;
  font-size: 0.88rem;
  outline: none;
  margin-bottom: 0.55rem;
}
.lp-faq-search input:focus {
  border-color: rgba(184, 146, 42, 0.5);
  box-shadow: 0 0 0 4px rgba(184, 146, 42, 0.12);
}

.lp-faq-heyday .lp-accordion {
  max-width: none;
  margin: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  border: none;
}

.lp-faq-heyday .lp-accordion-item {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 10px;
  margin-bottom: 0.45rem;
  overflow: hidden;
}

.lp-faq-heyday .lp-accordion-trigger {
  padding: 0.6rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.78);
  background: transparent;
}

.lp-faq-heyday .lp-accordion-trigger::after {
  content: "▾";
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.35);
}
.lp-faq-heyday .lp-accordion-trigger[aria-expanded="true"]::after {
  content: "▴";
}

.lp-faq-heyday .lp-accordion-panel p {
  padding: 0 0.85rem 0.6rem;
  margin: 0;
  font-size: 0.84rem;
  color: rgba(0, 0, 0, 0.58);
}

@media (max-width: 991px) {
  .lp-faq-inner {
    grid-template-columns: 1fr;
  }
  .lp-faq-sub {
    max-width: none;
  }
}

/* HeyDay — Private presentation */
.lp-present {
  background: #1A2E1A;
  padding: clamp(2.75rem, 5.5vw, 4.75rem) 0;
  color: rgba(255, 255, 255, 0.92);
}

.lp-present-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.lp-present-kicker {
  margin: 0 0 0.9rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #D4A843;
}

.lp-present-title {
  margin: 0 0 1.15rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(2.15rem, 3.9vw, 3.15rem);
  line-height: 1.02;
  color: rgba(255, 255, 255, 0.96);
}

.lp-present-title-accent {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 700;
  color: #B8922A;
  font-size: 0.9em;
}

.lp-present-points {
  margin: 0 0 1.1rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.lp-present-points li {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 0.65rem;
  align-items: start;
}
.lp-present-points li::before {
  content: "✦";
  width: 10px;
  height: 10px;
  border-radius: 0;
  background: transparent;
  margin-top: 0.1rem;
  color: #D4A843;
  font-size: 0.85rem;
  line-height: 1;
}

.lp-present-note {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.58);
}

.lp-present-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 1.1rem 1.15rem;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.32);
  color: rgba(0, 0, 0, 0.78);
}

.lp-present-card-head {
  margin-bottom: 0.9rem;
}

.lp-present-step {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.5);
}

.lp-present-privacy {
  margin-top: 0.15rem;
  font-size: 0.78rem;
  color: var(--lp-heyday-green);
}

.lp-present-form {
  display: grid;
  gap: 0.6rem;
}

.lp-present-input {
  width: 100%;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #ffffff;
  padding: 0 0.95rem;
  font-size: 0.9rem;
  outline: none;
}

.lp-present-input:focus {
  border-color: rgba(184, 146, 42, 0.55);
  box-shadow: 0 0 0 4px rgba(184, 146, 42, 0.12);
}

.lp-present-submit {
  height: 44px;
  border-radius: 10px;
  border: none;
  background: #1A2E1A;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
}
.lp-present-submit:hover {
  background: #132313;
}

@media (max-width: 991px) {
  .lp-present-inner {
    grid-template-columns: 1fr;
  }
  .lp-present-card {
    max-width: 640px;
    margin: 0 auto;
  }
}

/* Footer */
.lp-footer {
  padding: clamp(2.25rem, 4.5vw, 3.25rem) 0 1.1rem;
  background: #111D11;
  color: rgba(255, 255, 255, 0.78);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* (removed fixed footer strip) */

.lp-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) auto minmax(0, 0.85fr);
  gap: 1.2rem clamp(1.25rem, 3vw, 2.5rem);
  align-items: start;
  margin-bottom: 1.1rem;
}

.lp-footer-col-brand {
  padding-right: clamp(0rem, 2vw, 1.25rem);
}

.lp-footer-col-brand {
  text-align: left;
}

.lp-footer-brand-link {
  display: inline-block;
  line-height: 0;
  margin-bottom: 0.65rem;
}

.lp-footer-logo-heyday {
  display: block;
  width: 190px;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}

.lp-footer-desc {
  margin: 0 0 0.7rem;
  font-size: 0.84rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.6);
  max-width: 28rem;
}

.lp-footer-rera {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.lp-footer-col-title {
  margin: 0 0 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.lp-footer-col-links,
.lp-footer-col-contact {
  padding-top: 0.25rem;
}

.lp-footer-col-links {
  justify-self: center;
  width: max-content;
}

.lp-footer-col-contact {
  justify-self: end;
  text-align: left;
}

.lp-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.lp-footer-links a {
  color: rgba(247, 246, 250, 0.92);
  text-decoration: none;
  font-size: 0.86rem;
  transition: color var(--lp-transition);
}
.lp-footer-links a:hover {
  color: var(--lp-heyday-gold-hover);
  text-decoration: none;
}

.lp-footer-contact-line {
  margin: 0 0 0.55rem;
  font-size: 0.86rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.66);
}
.lp-footer-contact-line a {
  color: rgba(247, 246, 250, 0.92);
  text-decoration: none;
  font-weight: 700;
  transition: color var(--lp-transition);
}
.lp-footer-contact-line a:hover {
  color: var(--lp-heyday-gold-hover);
  text-decoration: none;
}

.lp-footer-partner {
  margin-top: 0.9rem;
}

.lp-footer-partner-title {
  margin: 0 0 0.45rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.lp-footer-partner-link {
  display: inline-block;
  line-height: 0;
}

.lp-footer-logo-ceyone {
  display: block;
  width: 150px;
  height: 50px;
  max-width: 100%;
  object-fit: contain;
  object-position: right center;
}

.lp-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-footer-copy {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
  line-height: 1.55;
  max-width: 58rem;
}

.lp-footer-legal {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.lp-footer-legal a {
  color: rgba(247, 246, 250, 0.92);
  text-decoration: none;
  transition: color var(--lp-transition);
}
.lp-footer-legal a:hover {
  color: var(--lp-heyday-gold-hover);
  text-decoration: none;
}

/* (removed fixed footer strip styles) */

/* Mobile only - CTA bar + gallery arrows + touch targets */
@media (max-width: 767px) {
  .lp-footer {
    padding: 2rem 0 calc(1.1rem + 84px);
  }

  .lp-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.1rem;
    justify-items: stretch;
    text-align: left;
    margin-bottom: 0.25rem;
  }

  .lp-footer-col-brand {
    grid-column: 1 / -1;
    text-align: center;
  }

  .lp-footer-brand-link,
  .lp-footer-logo-heyday {
    margin-left: auto;
    margin-right: auto;
  }

  .lp-footer-logo-heyday {
    width: min(190px, 80vw);
    height: auto;
    object-position: center;
  }

  .lp-footer-col-links,
  .lp-footer-col-contact {
    width: auto;
    text-align: left;
  }

  .lp-footer-links {
    justify-items: start;
  }

  .lp-footer-logo-ceyone {
    object-position: center;
    width: min(150px, 70vw);
    height: 50px;
    margin: 0 auto;
  }

  .lp-footer-copy {
    padding-top: 0;
  }

  .lp-footer-bottom {
    flex-direction: column;
    gap: 0.55rem;
    text-align: center;
  }

  .lp-footer-col-brand {
    padding-right: 0;
  }

  .lp-mobile-cta {
    display: flex;
    padding-bottom: max(0.6rem, env(safe-area-inset-bottom));
  }
  .lp-main {
    padding-bottom: 72px;
  }
  .lp-accordion-trigger {
    min-height: 44px;
    padding: 1rem 0;
  }
  .lp-gallery-modal .lp-modal-content {
    position: relative;
    z-index: 3;
  }
  .lp-gallery-modal .lp-modal-arrow {
    min-width: 48px;
    min-height: 48px;
    padding: 0.5rem;
    font-size: 1.5rem;
  }
  .lp-gallery-modal .lp-modal-prev {
    left: 0.5rem;
    right: auto;
  }
  .lp-gallery-modal .lp-modal-next {
    right: 0.5rem;
    left: auto;
  }
}

/* Tablet and up */
@media (min-width: 768px) {
  .lp-nav-toggle {
    display: none;
  }

  .lp-nav-menu {
    flex-direction: row;
    position: static;
    background: none;
    padding: 0;
    box-shadow: none;
    border-top: none;
    max-height: none;
    opacity: 1;
    overflow: visible;
    pointer-events: auto;
    transform: none;
    transition: none;
    gap: 1.5rem;
  }

  .lp-nav-menu.active {
    display: flex;
  }

  .lp-nav-menu a {
    color: rgba(247, 246, 250, 0.92);
    padding: 0.35rem 0;
    letter-spacing: 0.06em;
    font-size: 0.78rem;
    text-transform: uppercase;
  }

  .lp-nav-cta {
    display: inline-flex;
  }

  .lp-nav-cta-item {
    display: none;
  }

  .lp-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .lp-footer-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr) minmax(0, 0.9fr);
    gap: 1rem 1.25rem;
  }
}

/* iPad / Tablet (768px - 1024px) - touch-friendly, Enquire strip same as iPad Pro */
@media (min-width: 768px) and (max-width: 1024px) {
  .lp-nav-menu a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.25rem;
  }
  .lp-accordion-trigger {
    min-height: 44px;
    padding: 1rem 0;
  }
  .lp-form-row input,
  .lp-enquiry-modal-box .lp-form-row input {
    font-size: 16px;
    min-height: 48px;
  }
  .lp-gallery-modal .lp-modal-content {
    position: relative;
    z-index: 3;
  }
  .lp-gallery-modal .lp-modal-arrow {
    min-width: 48px;
    min-height: 48px;
    padding: 0.5rem;
    font-size: 1.5rem;
  }
  .lp-gallery-modal .lp-modal-prev {
    left: 0.75rem;
    right: auto;
  }
  .lp-gallery-modal .lp-modal-next {
    right: 0.75rem;
    left: auto;
  }
  .container {
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }
}

/* iPad Mini & iPad Air (768px - 900px) - narrower width, nav wrap, no overflow */
@media (min-width: 768px) and (max-width: 900px) {
  :root {
    /* Two-row nav only — not tied to logo size */
    --lp-header-height: 6rem;
  }
  .lp-nav {
    height: auto;
    min-height: 4rem;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    padding-left: 1rem;
    align-content: center;
    justify-content: space-between;
  }
  .lp-logo {
    position: static;
    transform: none;
  }
  .lp-nav-menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25rem 0.5rem;
    row-gap: 0.25rem;
  }
  .lp-nav-menu a {
    font-size: 0.8rem;
    padding: 0.4rem 0.35rem;
    min-height: 40px;
  }
  .lp-section-title {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
  }
  .container {
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .lp-gallery-grid {
    gap: 0.75rem;
  }
}

/* Desktop */
@media (min-width: 992px) {
  .lp-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}
