/* GMC Confluence - landing page styles */
:root {
  --lp-bg: #efede8;
  --lp-header-bg: #ebe9e3;
  --lp-nav-text: #585858;
  --lp-white: #ffffff;
  --lp-burgundy: #B3654F;
  --lp-burgundy-hover: #8F4D3C;
  --lp-burgundy-section: #A85848;
  --lp-burgundy-border: #945648;
  --lp-burgundy-accent: #9A5648;
  --lp-burgundy-ink: #4A2A21;
  --lp-orange: #FFDBB3;
  --lp-orange-rgb: 255, 219, 179;
  --lp-gold-btn: #FFDBB3;
  --lp-header-height: 78px;
}

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

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Scrollbar */
:root,
html,
body {
  scrollbar-color: #B3654F var(--lp-bg);
  scrollbar-width: thin;
}

html {
  overflow-y: auto;
  /* Fixed header: in-page anchors (#lp-…) stop with titles visible */
  scroll-padding-top: var(--lp-header-height);
}

/* Apply to any scroll container (Chromium/WebKit) */
*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

*::-webkit-scrollbar-track {
  background: var(--lp-bg);
}

*::-webkit-scrollbar-thumb {
  background: #B3654F;
  border-radius: 999px;
}

*::-webkit-scrollbar-thumb:hover {
  background: var(--lp-burgundy-hover);
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
.lp-body::-webkit-scrollbar,
:root::-webkit-scrollbar,
.lp-body::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track,
.lp-body::-webkit-scrollbar-track,
:root::-webkit-scrollbar-track,
.lp-body::-webkit-scrollbar-track {
  background: var(--lp-bg);
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb,
.lp-body::-webkit-scrollbar-thumb,
:root::-webkit-scrollbar-thumb,
.lp-body::-webkit-scrollbar-thumb {
  background: #B3654F;
  border-radius: 999px;
}

html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover,
.lp-body::-webkit-scrollbar-thumb:hover,
:root::-webkit-scrollbar-thumb:hover,
.lp-body::-webkit-scrollbar-thumb:hover {
  background: var(--lp-burgundy-hover);
}

.lp-body {
  font-family: "Poppins", sans-serif;
  background: var(--lp-bg);
  color: var(--lp-nav-text);
}

.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-header-bg);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.lp-nav {
  max-width: 1440px;
  margin: 0 auto;
  height: var(--lp-header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 0 1.2rem;
}

.lp-logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
}

.lp-logo-img {
  display: block;
  width: 135px;
  height: auto;
  max-height: 62px;
  object-fit: contain;
}

.lp-nav-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 1.2rem;
  flex-direction: column;
  position: absolute;
  top: var(--lp-header-height);
  left: 0;
  right: 0;
  background: var(--lp-header-bg);
  padding: 0.9rem 1.2rem 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition:
    max-height 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s ease,
    transform 0.45s ease;
}

.lp-nav-menu:not(.active) {
  transition:
    max-height 0.85s cubic-bezier(0.55, 0, 1, 0.45),
    opacity 0.45s ease,
    transform 0.45s ease;
}

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

.lp-nav-menu a {
  text-decoration: none;
  color: var(--lp-nav-text);
  text-transform: uppercase;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  font-weight: 500;
  transition: color 0.2s ease;
}

.lp-nav-menu a:hover,
.lp-nav-menu a:focus-visible {
  color: var(--lp-burgundy);
}

.lp-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #55301d;
  color: #ffffff !important;
  padding: 0.9rem 1.45rem;
  letter-spacing: 0.2em;
  line-height: 1;
  position: relative;
  overflow: hidden;
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.lp-nav-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%) skewX(-18deg);
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.18) 35%,
    rgba(255, 255, 255, 0.06) 55%,
    transparent 100%
  );
  pointer-events: none;
}

.lp-nav-cta:hover {
  background: #442718;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.lp-nav-cta:hover::after {
  transition: transform 0.55s ease;
  transform: translateX(120%) skewX(-18deg);
}

.lp-nav-toggle {
  border: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 6px;
  cursor: pointer;
}

.lp-nav-toggle span {
  width: 20px;
  height: 2px;
  background: #B3654F;
  transition:
    transform 0.22s ease,
    opacity 0.18s ease,
    background 0.22s ease;
  transform-origin: center;
}

.lp-nav-toggle.active span {
  background: #B3654F;
}

.lp-nav-toggle.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.lp-nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.lp-nav-toggle.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Hero: video teaser → banner image slider */
.lp-hero {
  margin: 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  height: unset;
  min-height: unset;
  line-height: 0;
}

.lp-hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #0a0a0a;
}

.lp-hero-slide {
  width: 100%;
}

.lp-hero-slide--video {
  position: relative;
  z-index: 2;
  transition: opacity 0.65s ease;
  width: 100%;
  height: auto;
  min-height: 0;
  margin: 0;
  padding: 0;
  line-height: 0;
}

/* Same wrapper model as banner <picture class="lp-hero-img"> */
.lp-hero-slide--video .lp-hero-img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  line-height: 0;
}

/* Same rules as .lp-hero-slide--image .lp-hero-img img when that slide is the visible “banner” */
.lp-hero-slide--video .lp-hero-img .lp-hero-video {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 0;
  object-fit: unset;
  object-position: unset;
  vertical-align: top;
}

.lp-hero-video-fallback {
  margin: 0;
  padding: 1rem;
  color: #fff;
  font-size: 0.85rem;
}

.lp-hero-slide--image {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.65s ease;
}

.lp-hero-slide--image .lp-hero-img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 0;
}

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

.lp-hero-slider--image .lp-hero-slide--video {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}

.lp-hero-slider--image .lp-hero-slide--video .lp-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.lp-hero-slider--image .lp-hero-slide--video .lp-hero-img .lp-hero-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% center;
}

.lp-hero-slider--image .lp-hero-slide--image {
  opacity: 1;
  pointer-events: auto;
  z-index: 3;
}

@media (min-width: 769px) {
  .lp-hero-slider--image .lp-hero-slide--image {
    position: relative;
    min-height: 1px;
  }

  .lp-hero-slider--image .lp-hero-slide--image .lp-hero-img,
  .lp-hero-slider--image .lp-hero-slide--image .lp-hero-img img {
    height: auto;
    object-fit: unset;
    object-position: unset;
  }

  /* Active video: intrinsic height like published banner */
  .lp-hero-slide--video .lp-hero-img,
  .lp-hero-slide--video .lp-hero-img .lp-hero-video {
    height: auto;
    object-fit: unset;
    object-position: unset;
  }
}

.lp-hero-slider-dots {
  position: absolute;
  left: 50%;
  bottom: clamp(0.65rem, 2vw, 1.1rem);
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 0.45rem;
  align-items: center;
  pointer-events: auto;
}

.lp-hero-slider-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    border-color 0.2s ease;
}

.lp-hero-slider-dot.is-active {
  background: rgba(212, 188, 130, 0.95);
  border-color: rgba(255, 255, 255, 0.85);
  transform: scale(1.15);
}

.lp-hero-slider-dot:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.lp-hero-slider-arrow {
  position: absolute;
  top: 50%;
  bottom: auto;
  z-index: 5;
  width: clamp(2.25rem, 5.5vw, 2.85rem);
  height: clamp(2.25rem, 5.5vw, 2.85rem);
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-hero-slider-arrow:hover {
  background: rgba(0, 0, 0, 0.42);
  border-color: rgba(212, 188, 130, 0.75);
  transform: translateY(-50%) scale(1.05);
}

.lp-hero-slider-arrow:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.lp-hero-slider-arrow-svg {
  display: block;
  flex-shrink: 0;
}

.lp-hero-slider-arrow--prev {
  left: clamp(0.45rem, 2.2vw, 1rem);
}

.lp-hero-slider-arrow--next {
  right: clamp(0.45rem, 2.2vw, 1rem);
}

.lp-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  padding-top: clamp(1.1rem, 5.8vh, 4rem);
  pointer-events: none;
}

.lp-hero-content {
  pointer-events: auto;
  margin-left: clamp(1rem, 5.2vw, 3rem);
  margin-top: 0;
  max-width: min(460px, 90vw);
  padding: clamp(1rem, 3.2vw, 1.5rem);
  background: transparent;
  line-height: 1.2;
  font-family: "Aboreto", cursive;
}

.lp-hero-eyebrow {
  margin: 0 0 0.7rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--lp-orange);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: clamp(0.54rem, 0.88vw, 0.68rem);
  font-weight: 400;
}

.lp-hero-eyebrow::before,
.lp-hero-eyebrow::after {
  content: "";
  width: clamp(40px, 8vw, 84px);
  height: 1px;
  background: rgba(var(--lp-orange-rgb), 0.65);
}

.lp-hero-title {
  margin: 0;
  font-family: "Aboreto", cursive;
  text-transform: uppercase;
  font-size: clamp(2.15rem, 5.95vw, 4.55rem);
  letter-spacing: 0.06em;
  line-height: 1.04;
  color: #2d2f33;
  font-weight: 400;
}

.lp-hero-title span {
  display: block;
}

.lp-hero-title-gold {
  color: var(--lp-orange);
}

.lp-hero-subtext {
  margin: 0.95rem 0 0;
  color: #2d2d2dcc;
  font-size: clamp(0.68rem, 1.05vw, 0.84rem);
  letter-spacing: 0.01em;
  line-height: 1.45;
  font-weight: 400;
}

.lp-hero-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.lp-hero-btn {
  pointer-events: auto;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: clamp(0.52rem, 0.86vw, 0.64rem);
  font-weight: 500;
  line-height: 1;
  padding: 0.82rem 1.1rem;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lp-hero-btn-primary {
  background: var(--lp-orange);
  color: #2d2d2dcc;
}

.lp-hero-btn-primary:hover {
  background: #F0C89A;
}

.lp-hero-btn-outline {
  border-color: #cfd1d4;
  color: #3e4147;
  background: rgba(255, 255, 255, 0.85);
}

.lp-hero-btn-outline:hover {
  border-color: #b8bcc2;
  background: #ffffff;
}

.lp-hero-btn-icon {
  display: inline-block;
  margin-right: 0.32rem;
  font-size: 0.56rem;
  line-height: 1;
}

.lp-hero-price-note {
  position: absolute;
  right: clamp(0.8rem, 3.2vw, 2.4rem);
  left: auto;
  bottom: clamp(3.2rem, 8vh, 5.4rem);
  transform: none;
  z-index: 2;
  margin: 0;
  padding: 0.76rem 1.2rem;
  border: 1px solid rgba(var(--lp-orange-rgb), 0.55);
  background: rgba(22, 10, 12, 0.7);
  color: var(--lp-orange);
  font-family: "Aboreto", cursive;
  font-size: clamp(1.02rem, 1.75vw, 1.4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.06em;
  text-transform: none;
  white-space: normal;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.lp-hero-price-label {
  font-size: clamp(0.72rem, 1.1vw, 0.96rem);
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lp-hero-price-value {
  margin-top: 0.16rem;
  font-size: clamp(1.26rem, 2.4vw, 2rem);
  font-weight: 400;
}

/* Stats strip */
.lp-stats-strip {
  background: #ebe8e1;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.lp-stats-strip-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.lp-stat-item {
  padding: 0.95rem 0.85rem 0.85rem;
  text-align: center;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.lp-stat-item:last-child {
  border-right: 0;
}

.lp-stat-number {
  margin: 0;
  color: #262626;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2.15rem);
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1;
}

.lp-stat-prefix {
  font-size: 0.42em;
  letter-spacing: 0.02em;
  font-weight: 400;
  text-transform: none;
  margin-right: 0.08em;
  vertical-align: middle;
}

.lp-stat-suffix {
  font-size: 0.55em;
  font-weight: 500;
  margin-left: 0.04em;
  vertical-align: 0.12em;
}

.lp-stat-unit {
  font-size: 0.35em;
  letter-spacing: 0.06em;
  font-weight: 500;
  text-transform: none;
  vertical-align: middle;
}

.lp-stat-label {
  margin: 0.22rem 0 0.32rem;
  text-transform: uppercase;
  color: #8d8d8d;
  font-size: 0.44rem;
  letter-spacing: 0.29em;
  font-weight: 500;
}

.lp-stat-copy {
  margin: 0;
  color: #5f5f5f;
  font-size: 0.67rem;
  line-height: 1.25;
  font-weight: 400;
}

/* Mobile enquiry form (after stats strip) — reuses .lp-enquiry-modal-box popup styles */
.lp-mobile-enquiry-strip {
  display: none;
}

.lp-mobile-enquiry-inner {
  max-width: 520px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* The Idea section */
.lp-idea-section {
  background: var(--lp-burgundy-section);
  padding: clamp(1.2rem, 3.2vw, 2.2rem) clamp(0.9rem, 2vw, 1.5rem);
  font-family: "Poppins", sans-serif;
}

.lp-idea-wrap {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
  gap: clamp(1rem, 2.4vw, 2.4rem);
  align-items: center;
}

.lp-idea-media {
  margin: 0;
  position: relative;
  overflow: hidden;
}

.lp-idea-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  position: relative;
  z-index: 1;
  transform-origin: center;
  transition: transform 0.35s ease;
}

.lp-idea-media:hover img {
  transform: scale(1.05);
}

.lp-idea-tag {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  margin: 0;
  z-index: 2;
  background: rgba(255, 255, 255, 0.94);
  color: #252525;
  font-size: 0.72rem;
  line-height: 1.2;
  padding: 0.46rem 0.62rem;
}

.lp-idea-tag span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.48rem;
  color: #7c7c7c;
  margin-bottom: 0.15rem;
}

.lp-idea-content {
  color: var(--lp-orange);
}

.lp-idea-eyebrow {
  margin: 0 0 0.72rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.36em;
  font-size: clamp(0.72rem, 0.66rem + 0.25vw, 0.9rem);
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.lp-idea-eyebrow::before {
  content: "";
  width: clamp(34px, 7vw, 64px);
  height: 1px;
  background: rgba(255, 255, 255, 0.85);
}

.lp-idea-title {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  font-weight: 300;
  font-size: clamp(1.45rem, 2.55vw, 2.2rem);
  line-height: 1.15;
}

.lp-idea-title span {
  display: block;
  color: var(--lp-orange);
  text-transform: uppercase;
  font-weight: 700;
}

.lp-idea-copy {
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: clamp(0.72rem, 1vw, 0.9rem);
  line-height: 1.45;
  max-width: 560px;
}

.lp-idea-stats {
  margin-top: 1rem;
  display: flex;
}

.lp-idea-cta-wrap {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  align-items: center;
}

.lp-idea-cta-wrap .lp-gallery-more-btn {
  font-size: clamp(0.64rem, 0.6rem + 0.22vw, 0.78rem);
  padding: 0.55rem 1.1rem;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  background-image: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.12) 35%,
    rgba(255, 255, 255, 0.05) 55%,
    transparent 100%
  );
}

.lp-idea-cta-wrap .lp-gallery-more-btn::before,
.lp-idea-cta-wrap .lp-gallery-more-btn::after {
  color: #fff;
}

.lp-idea-cta-wrap .lp-gallery-more-btn:hover,
.lp-idea-cta-wrap .lp-gallery-more-btn:focus-visible {
  color: var(--lp-orange);
  border-color: rgba(var(--lp-orange-rgb), 0.75);
  background-color: rgba(var(--lp-orange-rgb), 0.12);
}

.lp-idea-cta-wrap .lp-gallery-more-btn:hover::before,
.lp-idea-cta-wrap .lp-gallery-more-btn:hover::after,
.lp-idea-cta-wrap .lp-gallery-more-btn:focus-visible::before,
.lp-idea-cta-wrap .lp-gallery-more-btn:focus-visible::after {
  color: var(--lp-orange);
}

.lp-idea-cta-wrap .lp-idea-watch-video::before,
.lp-idea-cta-wrap .lp-idea-watch-video::after {
  content: none;
  margin: 0;
}

.lp-idea-watch-icon {
  display: inline-block;
  margin-right: 0.35rem;
  font-size: 0.65em;
  opacity: 0.95;
}

.lp-idea-stat {
  padding-right: 1.2rem;
  margin-right: 1.2rem;
  border-right: 1px solid rgba(var(--lp-orange-rgb), 0.25);
}

.lp-idea-stat:last-child {
  border-right: 0;
  margin-right: 0;
  padding-right: 0;
}

.lp-idea-stat-num {
  margin: 0;
  color: var(--lp-orange);
  font-size: clamp(1.65rem, 2.2vw, 2rem);
  font-weight: 300;
  line-height: 1;
}

.lp-idea-stat-plus {
  display: inline-block;
  margin-left: 0.06em;
  font-weight: 600;
  font-size: 0.72em;
  line-height: 1;
  vertical-align: 0.08em;
  color: var(--lp-orange);
}

.lp-idea-stat-label {
  margin: 0.3rem 0 0;
  color: rgba(245, 229, 202, 0.65);
  text-transform: uppercase;
  font-size: 0.5rem;
  letter-spacing: 0.3em;
}

/* Difference section */
.lp-difference-section {
  background: #efede8;
  padding: clamp(1.8rem, 4vw, 3.2rem) clamp(0.9rem, 2vw, 1.5rem)
    clamp(1.4rem, 3.5vw, 2.2rem);
  font-family: "Poppins", sans-serif;
}

.lp-difference-wrap {
  max-width: 1440px;
  margin: 0 auto;
}

.lp-difference-eyebrow {
  margin: 0;
  text-align: center;
  color: #4d4d4d;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.78rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.lp-difference-eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(77, 77, 77, 0.35);
}

.lp-difference-title {
  margin: 0.45rem 0 1.45rem;
  font-family: "Poppins", sans-serif;
  text-align: center;
  color: #2e2e2e;
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.1;
}

.lp-difference-title span {
  margin-right: 0.35rem;
}

.lp-difference-title strong {
  color: var(--lp-burgundy);
  text-transform: uppercase;
  font-weight: 700;
}

.lp-difference-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.lp-difference-card {
  position: relative;
  font-family: "Poppins", sans-serif;
  padding: 1.55rem 1.1rem 1.6rem;
  min-height: 160px;
}

.lp-difference-card:last-child {
  border-right: 0;
}

.lp-difference-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: calc(100% - 1.6rem);
  background: rgba(0, 0, 0, 0.08);
}

.lp-difference-card-no {
  position: absolute;
  top: 0.8rem;
  right: 0.75rem;
  color: rgba(0, 0, 0, 0.08);
  font-size: clamp(3.2rem, 5vw, 4.8rem);
  line-height: 1;
  font-weight: 300;
}

.lp-difference-card h3 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.5rem, 1.9vw, 1.9rem);
  line-height: 1.05;
  color: #1f1f1f;
  font-weight: 500;
}

.lp-difference-sub {
  margin: 0.45rem 0 0;
  font-family: "Poppins", sans-serif;
  color: #6f6f6f;
  font-size: 0.7rem;
  line-height: 1.32;
  font-weight: 400;
}

.lp-difference-copy {
  margin: 0.65rem 0 0;
  font-family: "Poppins", sans-serif;
  color: #8d8d8d;
  font-size: 0.66rem;
  line-height: 1.38;
  font-weight: 400;
  max-width: 93%;
}

.lp-difference-foot {
  margin: 1.15rem 0 0;
  text-align: center;
  color: #919191;
  font-size: 0.72rem;
}

/* Address section */
.lp-address-section {
  background: var(--lp-burgundy-section);
  padding: clamp(1.4rem, 3.4vw, 2.4rem) clamp(0.9rem, 2vw, 1.5rem);
  font-family: "Poppins", sans-serif;
}

.lp-address-wrap {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
  gap: clamp(1rem, 2.2vw, 2rem);
  align-items: center;
}

.lp-address-content {
  color: #ffffff;
}

.lp-address-eyebrow {
  margin: 0 0 0.72rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: clamp(0.72rem, 0.66rem + 0.25vw, 0.9rem);
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.lp-address-eyebrow::before {
  content: "";
  width: clamp(34px, 7vw, 64px);
  height: 1px;
  background: rgba(255, 255, 255, 0.85);
}

.lp-address-title {
  margin: 0;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: clamp(1.45rem, 2.6vw, 2.45rem);
  line-height: 1.15;
}

.lp-address-title span {
  display: block;
  color: var(--lp-orange);
  text-transform: uppercase;
  font-weight: 700;
}

.lp-address-copy {
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: clamp(0.72rem, 1vw, 0.9rem);
  line-height: 1.45;
  max-width: 560px;
}

.lp-address-copy-last {
  margin-top: 0.65rem;
  color: var(--lp-orange);
}

.lp-address-card {
  margin-top: 1rem;
  padding: 0.62rem 0.8rem 0.72rem;
  background: rgba(255, 255, 255, 0.08);
  max-width: 560px;
}

.lp-address-card-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.56rem;
  color: var(--lp-orange);
  font-weight: 500;
}

.lp-address-card-text {
  margin: 0.32rem 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  line-height: 1.4;
}

.lp-address-media {
  margin: 0;
  position: relative;
  overflow: hidden;
}

.lp-address-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.lp-address-media:hover img {
  transform: scale(1.05);
}

/* Project strip */
.lp-project-strip {
  background: #efede8;
  padding: clamp(1.6rem, 3.5vw, 2.4rem) clamp(0.9rem, 2vw, 1.5rem)
    clamp(1.2rem, 2.9vw, 2rem);
  font-family: "Poppins", sans-serif;
}

.lp-project-strip-wrap {
  max-width: 1320px;
  margin: 0 auto;
}

.lp-project-eyebrow {
  margin: 0;
  text-align: center;
  color: #3f3f3f;
  text-transform: uppercase;
  letter-spacing: 0.29em;
  font-size: 0.78rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.lp-project-eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: rgba(63, 63, 63, 0.35);
}

.lp-project-title {
  margin: 0.45rem 0 1.25rem;
  text-align: center;
  color: #2f2f2f;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.9rem, 4.4vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
}

.lp-project-title strong {
  color: var(--lp-burgundy);
  text-transform: uppercase;
  font-weight: 700;
}

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

.lp-project-item {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 0.9rem;
}

.lp-project-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lp-orange);
  flex: 0 0 auto;
}

.lp-project-item p {
  margin: 0;
  color: #404040;
  font-size: clamp(0.74rem, 0.95vw, 0.92rem);
  line-height: 1.28;
  text-align: center;
}

/* Details section */
.lp-details-section {
  background: #ffffff;
  padding: clamp(1.8rem, 3.8vw, 2.9rem) clamp(0.9rem, 2vw, 1.5rem)
    clamp(1.5rem, 3.2vw, 2.6rem);
  font-family: "Poppins", sans-serif;
}

.lp-details-wrap {
  max-width: 1180px;
}

.lp-details-eyebrow {
  margin: 0;
  text-align: center;
  color: #3f3f3f;
  text-transform: uppercase;
  letter-spacing: 0.29em;
  font-size: 0.78rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.lp-details-eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: rgba(63, 63, 63, 0.35);
}

.lp-details-title {
  margin: 0.45rem 0 1.2rem;
  text-align: center;
  color: #2f2f2f;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.9rem, 4.1vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
}

.lp-details-title strong {
  color: var(--lp-burgundy);
  text-transform: uppercase;
  font-weight: 700;
}

.lp-details-table {
  border: 1px solid #e3e0db;
  background: transparent;
}

.lp-details-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr 1.2fr;
}

.lp-details-row + .lp-details-row {
  border-top: 1px solid #e3e0db;
}

.lp-details-cell {
  padding: 0.9rem 1.2rem;
  border-right: 1px solid #e3e0db;
  min-height: 54px;
  display: flex;
  align-items: center;
}

.lp-details-cell:last-child {
  border-right: 0;
}

.lp-details-row .lp-details-cell:nth-child(1),
.lp-details-row .lp-details-cell:nth-child(3) {
  border-right: 0;
}

.lp-details-key {
  color: #a8a8a8;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.56rem;
  font-weight: 500;
}

.lp-details-value {
  color: #2f2f2f;
  font-size: 0.9rem;
  font-weight: 500;
  justify-content: flex-end;
  text-align: right;
}

.lp-details-cta-wrap {
  margin-top: 1.35rem;
  text-align: center;
}

.lp-details-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 164px;
  min-height: 30px;
  padding: 0.5rem 1.1rem;
  background-color: var(--lp-burgundy-accent);
  color: #ffffff;
  text-decoration: none;
  font-size: 0.86rem;
  letter-spacing: 0.03em;
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(
    120deg,
    transparent 0%,
    rgba(var(--lp-orange-rgb), 0.28) 35%,
    rgba(var(--lp-orange-rgb), 0.1) 55%,
    transparent 100%
  );
  background-size: 200% 100%;
  background-position: -100% 0;
  transition:
    background-color 0.2s ease,
    background-position 0.55s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease;
}

.lp-details-cta::before,
.lp-details-cta::after {
  content: "*";
  color: var(--lp-orange);
  font-size: 0.72rem;
  margin: 0 0.45rem;
}

.lp-details-cta:hover,
.lp-details-cta:focus-visible {
  background-color: var(--lp-burgundy-hover);
  background-position: 100% 0;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
}

/* Residences section */
.lp-residences-section {
  background: var(--lp-burgundy-section);
  padding: clamp(1.4rem, 3.3vw, 2.4rem) clamp(0.9rem, 2vw, 1.5rem);
  font-family: "Poppins", sans-serif;
}

.lp-residences-wrap {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
  gap: clamp(1rem, 2.2vw, 2rem);
  align-items: start;
}

.lp-residences-content {
  color: #ffffff;
}

.lp-residences-eyebrow {
  margin: 0 0 0.72rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: clamp(0.72rem, 0.66rem + 0.25vw, 0.9rem);
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.lp-residences-eyebrow::before {
  content: "";
  width: clamp(34px, 7vw, 64px);
  height: 1px;
  background: rgba(255, 255, 255, 0.85);
}

.lp-residences-title {
  margin: 0;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: clamp(1.45rem, 2.6vw, 2.45rem);
  line-height: 1.15;
}

.lp-residences-title span {
  display: block;
  color: var(--lp-orange);
  text-transform: uppercase;
  font-weight: 700;
}

.lp-residences-copy {
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: clamp(0.72rem, 1vw, 0.9rem);
  line-height: 1.45;
  max-width: 570px;
}

.lp-residences-unit-wrap {
  margin-top: 1rem;
}

.lp-residences-label {
  margin: 0 0 0.45rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.56rem;
}

.lp-residences-type-row,
.lp-residences-size-row {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.lp-residences-size-row {
  margin-top: 0.45rem;
}

.lp-residences-size-text {
  margin: 0;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.62rem, 0.58rem + 0.2vw, 0.72rem);
  line-height: 1.5;
  letter-spacing: 0.04em;
  user-select: text;
}

.lp-residences-type {
  appearance: none;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.65);
  min-width: 72px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.8rem;
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lp-residences-type.active {
  background: var(--lp-orange);
  border-color: var(--lp-orange);
  color: #3f2311;
  font-weight: 600;
}

.lp-residences-copy-gap {
  margin-top: 0.85rem;
}

.lp-residences-list {
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.25rem 0.8rem;
  max-width: 560px;
}

.lp-residences-list p {
  margin: 0;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.66rem;
}

.lp-residences-list p::before {
  content: "\2726";
  color: var(--lp-orange);
  margin-right: 0.42rem;
  font-size: 0.7rem;
  line-height: 1;
}

.lp-residences-link {
  margin-top: 0.9rem;
  display: inline-flex;
  align-items: center;
  color: var(--lp-orange);
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--lp-orange);
  padding-bottom: 0.22rem;
  letter-spacing: 0.21em;
  font-size: 0.66rem;
  font-weight: 600;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.lp-residences-link:hover,
.lp-residences-link:focus-visible {
  color: #ffffff;
  border-bottom-color: #ffffff;
  transform: translateY(-2px);
}

.lp-residences-link::after {
  content: "\2192";
  line-height: 1;
  margin-left: 0.5rem;
  text-decoration: none;
}

.lp-residences-foot {
  margin: 0.5rem 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.68rem;
}

.lp-residences-media {
  margin: 0;
  position: relative;
  overflow: hidden;
  align-self: start;
  width: 100%;
  aspect-ratio: 3 / 4;
  max-height: min(480px, 68vh);
}

.lp-residences-media img {
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 125%;
  object-fit: cover;
  object-position: center bottom;
  z-index: 1;
  transform-origin: center bottom;
  transition: transform 0.35s ease;
}

.lp-residences-media:hover img {
  transform: scale(1.05);
}

.lp-residences-tag {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  margin: 0;
  z-index: 2;
  background: rgba(22, 22, 22, 0.55);
  color: #f3f3f3;
  font-size: 0.72rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.5rem 0.6rem;
  text-align: right;
}

.lp-residences-tag span {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.44rem;
  margin-bottom: 0.12rem;
}

/* Feel section */
.lp-feel-section {
  position: relative;
  min-height: clamp(320px, 42vw, 430px);
  background-image: url("../images/gallery/swimming_image.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-family: "Poppins", sans-serif;
}

@media (max-width: 768px) {
  .lp-feel-section {
    min-height: clamp(410px, 60vw, 500px);
    margin-bottom: 2.5rem;
  }

  .lp-feel-overlay {
    padding-bottom: 0.75rem;
  }

  .lp-feel-points {
    margin-bottom: 0.75rem;
  }
}

.lp-feel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 20, 12, 0.78) 0%,
    rgba(5, 20, 12, 0.68) 45%,
    rgba(5, 20, 12, 0.8) 100%
  );
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(1rem, 2.8vw, 1.85rem) 1.2rem 1.2rem;
}

.lp-feel-content {
  width: min(980px, 96%);
  text-align: center;
  position: relative;
}

.lp-feel-eyebrow {
  margin: 0 0 0.35rem;
  position: relative;
  z-index: 2;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.76rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
}

.lp-feel-eyebrow::before,
.lp-feel-eyebrow::after {
  content: "";
  width: clamp(24px, 3.4vw, 46px);
  height: 1px;
  background: rgba(255, 255, 255, 0.75);
}

.lp-feel-headline-wrap {
  --feel-num-size: clamp(4.6rem, 13vw, 10rem);
  position: relative;
  width: 100%;
  text-align: center;
  margin: 0;
}

.lp-feel-bg-number {
  margin: 0;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255, 255, 255, 0.2);
  font-size: var(--feel-num-size);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.01em;
  pointer-events: none;
  user-select: none;
  text-shadow:
    0 0 36px rgba(var(--lp-orange-rgb), 0.18),
    0 3px 22px rgba(0, 0, 0, 0.35);
}

.lp-feel-title {
  margin: 0;
  padding-top: calc(var(--feel-num-size) * 0.68);
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.55rem, 3.35vw, 2.55rem);
  line-height: 1.1;
  font-weight: 300;
  position: relative;
  z-index: 2;
}

.lp-feel-title-gold {
  color: #fff;
}

.lp-feel-copy {
  margin: 0.62rem 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: clamp(0.72rem, 0.95vw, 0.86rem);
  line-height: 1.42;
  position: relative;
  z-index: 2;
}

.lp-feel-points {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  position: relative;
  z-index: 2;
}

.lp-feel-points span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.74);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.62rem;
  padding: 0.45rem 0.85rem;
  white-space: nowrap;
}

.lp-feel-points span::before {
  content: "\2726";
  color: var(--lp-orange);
  margin-right: 0.45rem;
  font-size: 0.72rem;
  line-height: 1;
}

/* Amenities section */
.lp-amenities-section {
  background: #efede8;
  padding: clamp(1.6rem, 3.6vw, 2.7rem) clamp(0.9rem, 2vw, 1.5rem);
  font-family: "Poppins", sans-serif;
}

.lp-amenities-wrap {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(1rem, 2.2vw, 2rem);
  align-items: center;
}

.lp-amenities-content {
  color: #2f2f2f;
}

.lp-amenities-eyebrow {
  margin: 0 0 0.72rem;
  color: #6f6f6f;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: clamp(0.72rem, 0.66rem + 0.25vw, 0.9rem);
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.lp-amenities-eyebrow::before {
  content: "";
  width: clamp(34px, 7vw, 64px);
  height: 1px;
  background: rgba(111, 111, 111, 0.42);
}

.lp-amenities-title {
  margin: 0;
  color: #2f2f2f;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: clamp(1.45rem, 2.6vw, 2.45rem);
  line-height: 1.15;
}

.lp-amenities-title span {
  color: var(--lp-burgundy);
  font-weight: 400;
}

.lp-amenities-copy {
  margin: 0.75rem 0 0;
  color: #666666;
  font-size: clamp(0.72rem, 1vw, 0.9rem);
  line-height: 1.45;
  font-weight: 400;
  max-width: 560px;
}

.lp-amenities-tabs {
  margin-top: 1rem;
  border-bottom: 1px solid #ddd9d3;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.35rem;
  padding-bottom: 0.55rem;
}

.lp-amenity-tab {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  color: #a3a3a3;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: clamp(0.75rem, 0.7rem + 0.2vw, 0.92rem);
  font-weight: 500;
  line-height: 1.2;
  font-family: inherit;
}

.lp-amenity-tab.active {
  color: var(--lp-burgundy-accent);
}

.lp-amenities-panels {
  margin-top: 0.8rem;
}

.lp-amenities-panel {
  display: none;
}

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

.lp-amenities-list-wrap {
  margin-top: 0.8rem;
}

.lp-amenities-list-wrap h3 {
  margin: 0;
  color: #2f2f2f;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
}

.lp-amenities-list {
  margin: 0.7rem 0 0;
  padding: 0;
  list-style: none;
}

.lp-amenities-list li {
  margin-top: 0.45rem;
  color: #4f4f4f;
  font-size: 0.72rem;
  line-height: 1.35;
  display: flex;
  align-items: center;
  font-weight: 400;
}

.lp-amenities-list li::before {
  content: "\2726";
  color: var(--lp-orange);
  margin-right: 0.4rem;
  font-size: 0.65rem;
  line-height: 1;
}

.lp-amenities-list-more {
  margin-top: 0.7rem !important;
  color: #9a9a9a !important;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.5rem !important;
}

.lp-amenities-media {
  margin: 0;
  position: relative;
  overflow: hidden;
}

.lp-amenities-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.lp-amenities-media:hover img {
  transform: scale(1.05);
}

.lp-amenities-tag {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  margin: 0;
  background: rgba(22, 22, 22, 0.55);
  color: #f3f3f3;
  font-size: 2.15rem;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 0.01em;
  padding: 0.42rem 0.6rem 0.5rem;
}

.lp-amenities-tag span {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.44rem;
  margin-bottom: 0.2rem;
}

@media (min-width: 992px) {
  .lp-nav-toggle {
    display: none;
  }

  .lp-nav-menu {
    position: static;
    max-height: none;
    overflow: visible;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 1.45rem;
    background: transparent;
    padding: 0;
    border-bottom: 0;
  }
}

@media (max-width: 768px) {
  .lp-hero {
    min-height: 0;
    height: auto;
    align-items: stretch;
  }

  .lp-hero-slider {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
  }

  .lp-hero-slide--video,
  .lp-hero-slide--image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .lp-hero-slide--video {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 0;
    margin: 0;
    padding: 0;
    line-height: 0;
  }

  .lp-hero-slide--video .lp-hero-img,
  .lp-hero-slide--video .lp-hero-img .lp-hero-video {
    height: auto;
    object-fit: unset;
    object-position: unset;
  }

  .lp-hero-slider--image .lp-hero-slide--video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    line-height: 0;
  }

  .lp-hero-slider--image .lp-hero-slide--video .lp-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .lp-hero-slider--image .lp-hero-slide--video .lp-hero-img .lp-hero-video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 72% center;
  }

  .lp-hero-slider--image .lp-hero-slide--image {
    position: relative;
    height: auto;
    min-height: 0;
    inset: auto;
  }

  .lp-hero-slide--image .lp-hero-img,
  .lp-hero-slide--image .lp-hero-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: 72% center;
  }

  .lp-hero-slider--image .lp-hero-slide--image .lp-hero-img,
  .lp-hero-slider--image .lp-hero-slide--image .lp-hero-img img {
    height: auto;
    object-fit: unset;
    object-position: unset;
  }

  .lp-hero-overlay {
    padding-top: 1rem;
  }

  .lp-hero-content {
    max-width: 96%;
    background: rgba(255, 255, 255, 0.78);
  }

  .lp-hero-price-note {
    right: 0.75rem;
    bottom: 2.6rem;
    padding: 0.56rem 0.85rem;
    letter-spacing: 0.03em;
  }

  .lp-hero-price-label {
    font-size: 0.66rem;
    letter-spacing: 0.12em;
  }

  .lp-hero-price-value {
    font-size: 1.12rem;
    margin-top: 0.1rem;
  }

  .lp-stats-strip-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-stat-item {
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .lp-stat-item:nth-child(2n) {
    border-right: 0;
  }

  .lp-stat-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .lp-mobile-enquiry-strip {
    display: block;
    background: #ebe8e1;
    padding: 1.15rem 0 1.35rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .lp-mobile-enquiry-strip .lp-enquiry-modal-box {
    background: #fff !important;
    background-color: #fff !important;
    max-height: none;
    overflow: hidden;
    box-shadow:
      0 16px 48px rgba(179, 101, 79, 0.12),
      0 0 0 1px rgba(179, 101, 79, 0.06);
    border: 0;
  }

  .lp-idea-wrap {
    grid-template-columns: 1fr;
  }

  .lp-idea-title {
    font-size: clamp(1.5rem, 7.2vw, 2.2rem);
  }

  .lp-idea-stats {
    gap: 0.8rem;
  }

  .lp-idea-stat {
    margin-right: 0;
    padding-right: 0.8rem;
    border-right-color: rgba(var(--lp-orange-rgb), 0.2);
  }

  .lp-difference-title {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
  }

  .lp-difference-grid {
    grid-template-columns: 1fr;
  }

  .lp-difference-card {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    min-height: 0;
  }

  .lp-difference-card:not(:last-child)::after {
    display: none;
  }

  .lp-difference-card:last-child {
    border-bottom: 0;
  }

  .lp-address-wrap {
    grid-template-columns: 1fr;
  }

  .lp-address-card {
    max-width: 100%;
  }

  .lp-project-strip {
    display: none !important;
  }

  .lp-residences-wrap {
    grid-template-columns: 1fr;
  }

  .lp-residences-media {
    order: -1;
    aspect-ratio: 16 / 10;
    max-height: none;
    min-height: clamp(240px, 56vw, 360px);
    margin: 0 0 1.15rem;
  }

  .lp-residences-content {
    order: 1;
  }

  .lp-residences-media img {
    height: 140%;
    object-position: center bottom;
  }

  .lp-residences-list {
    grid-template-columns: 1fr;
  }

  .lp-amenities-wrap {
    grid-template-columns: 1fr;
  }

  .lp-amenities-list-wrap h3 {
    font-size: 1.45rem;
  }

  .lp-feel-points span {
    width: 100%;
    white-space: normal;
  }

  .lp-details-title {
    font-size: clamp(1.45rem, 7vw, 2.3rem);
  }

  .lp-details-row {
    grid-template-columns: 1fr 1fr;
  }

  .lp-details-row + .lp-details-row {
    border-top: 0;
  }

  .lp-details-cell {
    border-right: 1px solid #e3e0db;
    border-bottom: 1px solid #e3e0db;
  }

  .lp-details-row + .lp-details-row .lp-details-cell:nth-child(-n + 2) {
    border-top: 1px solid #e3e0db;
  }

  .lp-details-row .lp-details-cell:nth-child(n + 3) {
    border-top: 1px solid #e3e0db;
  }

  .lp-details-row .lp-details-cell:nth-child(2n) {
    border-right: 0;
  }

  .lp-details-row:last-child .lp-details-cell {
    border-bottom: 0;
  }

  body {
    padding-bottom: 4.3rem;
  }

  .lp-mobile-fixed-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2400;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    padding: 0.55rem 0.7rem calc(0.55rem + env(safe-area-inset-bottom));
    background: var(--lp-burgundy-accent);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .lp-mobile-fixed-btn {
    min-height: 2.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.62rem;
    font-weight: 600;
    border: 1px solid transparent;
  }

  .lp-mobile-fixed-btn-icon {
    width: 0.95rem;
    height: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }

  .lp-mobile-fixed-btn-icon svg {
    width: 100%;
    height: 100%;
    display: block;
  }

  .lp-mobile-fixed-btn-call {
    background: var(--lp-orange);
    color: var(--lp-burgundy-ink);
    letter-spacing: 0.03em;
    font-size: 0.56rem;
  }

  .lp-mobile-fixed-btn-brochure {
    background: transparent;
    border-color: var(--lp-orange);
    color: var(--lp-orange);
  }
}

@media (min-width: 769px) {
  .lp-mobile-fixed-cta {
    display: none;
  }
}

/* ----- Gallery (burgundy reference layout) */
.lp-gallery {
  --lp-gal-bg: #B3654F;
  --lp-gal-border: var(--lp-burgundy-accent);
  --lp-gal-text: #ffffff;
  background: var(--lp-gal-bg);
  color: var(--lp-gal-text);
  padding: clamp(3rem, 8vw, 5.5rem) 0;
}

.lp-gallery-inner {
  max-width: 1120px;
}

.lp-gallery-header {
  text-align: center;
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.lp-gallery-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: clamp(0.72rem, 0.66rem + 0.25vw, 0.9rem);
  font-weight: 500;
  color: #fff;
}

.lp-gallery-kicker-line {
  display: block;
  width: 2.5rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.85);
  opacity: 0.9;
}

.lp-gallery-title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.85rem, 4.2vw, 2.85rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.lp-gallery-title-part {
  color: var(--lp-gal-text);
  font-weight: 400;
}

.lp-gallery-title-accent {
  color: var(--lp-orange);
  font-weight: 500;
}

.lp-gallery-sub {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.92);
}

.lp-gallery-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: clamp(1.35rem, 3vw, 2rem);
}

.lp-gallery-filter {
  appearance: none;
  margin: 0;
  cursor: pointer;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.55rem 0.95rem;
  border: 1px solid var(--lp-gal-border);
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.lp-gallery-filter:hover {
  color: var(--lp-orange);
  border-color: rgba(var(--lp-orange-rgb), 0.45);
}

.lp-gallery-filter.active {
  background: var(--lp-orange);
  color: var(--lp-burgundy-ink);
  border-color: var(--lp-orange);
}

.lp-gallery-filter:focus-visible {
  outline: 2px solid var(--lp-orange);
  outline-offset: 2px;
}

.lp-gallery-carousel-wrap {
  position: relative;
}

.lp-gallery-carousel-nav {
  display: none;
}

.lp-gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
}

.lp-gallery-item {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  overflow: hidden;
  background: var(--lp-burgundy-ink);
  line-height: 0;
  transition: opacity 0.2s ease;
}

.lp-gallery-item:hover img {
  opacity: 0.92;
  transform: scale(1.04);
}

.lp-gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition:
    transform 0.35s ease,
    opacity 0.2s ease;
}

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

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

.lp-gallery-more-wrap {
  margin-top: clamp(1.25rem, 3vw, 2rem);
  display: flex;
  justify-content: center;
}

.lp-gallery-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.72rem, 0.66rem + 0.25vw, 0.88rem);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lp-orange);
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 188, 130, 0.45);
  padding: 0.65rem 1.35rem;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition:
    background-color 0.2s ease,
    background-position 0.55s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
  background-image: linear-gradient(
    120deg,
    transparent 0%,
    rgba(212, 188, 130, 0.22) 35%,
    rgba(212, 188, 130, 0.08) 55%,
    transparent 100%
  );
  background-size: 200% 100%;
  background-position: -100% 0;
}

.lp-gallery .lp-gallery-more-btn {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  background-image: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.12) 35%,
    rgba(255, 255, 255, 0.05) 55%,
    transparent 100%
  );
}

.lp-gallery .lp-gallery-more-btn::before,
.lp-gallery .lp-gallery-more-btn::after {
  color: #fff;
}

.lp-gallery-more-btn::before,
.lp-gallery-more-btn::after {
  content: "*";
  color: var(--lp-orange);
  font-size: 0.72rem;
  margin: 0 0.45rem;
}

.lp-gallery-more-btn:hover {
  background-color: rgba(212, 188, 130, 0.12);
  background-position: 100% 0;
  border-color: rgba(212, 188, 130, 0.75);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.lp-gallery .lp-gallery-more-btn:hover,
.lp-gallery .lp-gallery-more-btn:focus-visible {
  color: var(--lp-orange);
  border-color: rgba(var(--lp-orange-rgb), 0.75);
  background-color: rgba(var(--lp-orange-rgb), 0.12);
}

.lp-gallery .lp-gallery-more-btn:hover::before,
.lp-gallery .lp-gallery-more-btn:hover::after,
.lp-gallery .lp-gallery-more-btn:focus-visible::before,
.lp-gallery .lp-gallery-more-btn:focus-visible::after {
  color: var(--lp-orange);
}

.lp-gallery-more-btn:focus-visible {
  outline: 2px solid var(--lp-orange);
  outline-offset: 3px;
}

/* Schedule a Visit — white outline (replaces lite gold on dark sections) */
a[href="#schedule-visit-modal"].lp-gallery-more-btn {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  background-image: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.12) 35%,
    rgba(255, 255, 255, 0.05) 55%,
    transparent 100%
  );
}

a[href="#schedule-visit-modal"].lp-gallery-more-btn::before,
a[href="#schedule-visit-modal"].lp-gallery-more-btn::after {
  color: #fff;
}

a[href="#schedule-visit-modal"].lp-gallery-more-btn:hover,
a[href="#schedule-visit-modal"].lp-gallery-more-btn:focus-visible {
  color: var(--lp-orange);
  border-color: rgba(var(--lp-orange-rgb), 0.75);
  background-color: rgba(var(--lp-orange-rgb), 0.12);
}

a[href="#schedule-visit-modal"].lp-gallery-more-btn:hover::before,
a[href="#schedule-visit-modal"].lp-gallery-more-btn:hover::after,
a[href="#schedule-visit-modal"].lp-gallery-more-btn:focus-visible::before,
a[href="#schedule-visit-modal"].lp-gallery-more-btn:focus-visible::after {
  color: var(--lp-orange);
}

.lp-gallery-item:focus-visible {
  outline: 2px solid var(--lp-orange);
  outline-offset: 2px;
  z-index: 1;
}

@media (max-width: 768px) {
  .lp-gallery-carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 2.25rem;
    height: 2.25rem;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(var(--lp-orange-rgb), 0.45);
    border-radius: 50%;
    background: rgba(42, 5, 8, 0.72);
    color: var(--lp-orange);
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    transition:
      background 0.2s ease,
      border-color 0.2s ease,
      color 0.2s ease;
  }

  .lp-gallery-carousel-nav:hover {
    background: rgba(212, 188, 130, 0.2);
    border-color: var(--lp-orange);
    color: #fff;
  }

  .lp-gallery-carousel-prev {
    left: 0.15rem;
  }

  .lp-gallery-carousel-next {
    right: 0.15rem;
  }

  .lp-gallery-grid {
    display: block;
    overflow: hidden;
    padding: 0 2.6rem;
  }

  .lp-gallery-item:not(.lp-gallery-item-hidden) {
    display: none;
    width: 100%;
  }

  .lp-gallery-item:not(.lp-gallery-item-hidden).lp-gallery-slide-active {
    display: block;
  }

  .lp-gallery-item:not(.lp-gallery-item-hidden):hover img {
    transform: none;
  }

  .lp-gallery-item-beyond-slot {
    display: block !important;
  }

  .lp-gallery-more-wrap {
    display: none;
  }
}

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

@media (min-width: 992px) {
  .lp-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Gallery lightbox */
.lp-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 2400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}

.lp-gallery-modal.lp-modal-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lp-gallery-modal .lp-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 2, 4, 0.88);
  cursor: pointer;
}

.lp-gallery-modal-panel {
  position: relative;
  z-index: 1;
  width: min(1100px, 100%);
  max-height: min(90vh, 900px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding-top: 2rem;
}

.lp-gallery-modal-figure {
  margin: 0;
  flex: 1;
  min-width: 0;
  text-align: center;
  overflow: hidden;
}

.lp-gallery-modal-figure img {
  display: block;
  max-width: 100%;
  max-height: min(78vh, 760px);
  width: auto;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

.lp-gallery-modal-caption {
  margin: 0.65rem 0 0;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.lp-gallery-modal .lp-modal-close {
  position: absolute;
  top: -0.25rem;
  right: 0;
  z-index: 2;
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.lp-gallery-modal .lp-modal-close:hover {
  opacity: 1;
}

.lp-gallery-modal-nav {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(212, 188, 130, 0.35);
  background: rgba(44, 5, 8, 0.6);
  color: var(--lp-orange);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.lp-gallery-modal-nav:hover {
  background: rgba(92, 6, 13, 0.85);
  border-color: rgba(212, 188, 130, 0.65);
}

@media (max-width: 575px) {
  .lp-gallery-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.2rem;
    height: 2.2rem;
    font-size: 1.2rem;
    z-index: 2;
  }

  .lp-gallery-modal .lp-modal-prev {
    left: 0.3rem;
  }

  .lp-gallery-modal .lp-modal-next {
    right: 0.3rem;
  }
}

@media (max-width: 768px) {
  .lp-gallery-title {
    font-size: clamp(1.65rem, 6.5vw, 2.35rem);
  }

  .lp-gallery-filters {
    gap: 0.35rem;
  }

  .lp-gallery-filter {
    padding: 0.45rem 0.65rem;
    letter-spacing: 0.12em;
  }
}

/* ----- Films (video cards) */
.lp-films {
  --lp-film-bg: #B3654F;
  --lp-film-text: #ffffff;
  background: var(--lp-film-bg);
  color: var(--lp-film-text);
  padding: clamp(1.25rem, 2.5vw, 1.75rem) 0 clamp(2.5rem, 6vw, 4.5rem);
}

.lp-films-inner {
  max-width: 1120px;
}

.lp-films-header {
  text-align: center;
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.lp-films-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: clamp(0.72rem, 0.66rem + 0.25vw, 0.9rem);
  font-weight: 500;
  color: #fff;
}

.lp-films-kicker-text {
  flex-shrink: 0;
}

.lp-films-kicker-line {
  flex: 1;
  max-width: 5rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.85);
  opacity: 0.9;
}

.lp-films-title {
  margin: 0;
  font-size: clamp(1.85rem, 4.2vw, 2.85rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.02em;
}

.lp-films-title-part {
  color: var(--lp-film-text);
  font-weight: 400;
}

.lp-films-title-accent {
  color: var(--lp-orange);
  font-weight: 500;
}

.lp-films-grid {
  display: grid;
  align-items: stretch;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.lp-film-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: 100%;
}

.lp-film-card-btn {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  text-align: left;
  color: inherit;
  background: transparent;
  cursor: pointer;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.lp-film-card-btn:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.lp-film-card-btn:focus-visible {
  outline: 2px solid var(--lp-orange);
  outline-offset: 3px;
}

.lp-film-thumb {
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  width: 100%;
  background: var(--lp-burgundy-ink);
}

.lp-film-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.lp-film-card-btn:hover .lp-film-thumb img {
  transform: scale(1.05);
}

.lp-film-thumb-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.45) 100%
  );
  pointer-events: none;
}

.lp-film-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  pointer-events: none;
}

.lp-film-play-icon {
  width: clamp(3rem, 8vw, 4rem);
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

.lp-film-duration {
  position: absolute;
  right: 0.65rem;
  bottom: 0.55rem;
  padding: 0.2rem 0.45rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
  color: #fff;
  background: rgba(0, 0, 0, 0.72);
  pointer-events: none;
}

.lp-film-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: #ffffff;
  padding: 1.35rem 1.5rem 1.5rem;
  min-height: 0;
}

.lp-film-title {
  margin: 0 0 0.45rem;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.28;
  color: #1a1a1a;
}

.lp-film-sub {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.45;
  color: #6a6a6a;
  transition: color 0.2s ease;
}

.lp-film-card-btn:hover .lp-film-sub,
.lp-film-card-btn:focus-visible .lp-film-sub {
  color: #B3654F;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

@media (min-width: 768px) {
  .lp-films-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .lp-films-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1.35rem;
  }

  .lp-film-card:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .lp-film-card:nth-child(2) {
    grid-column: 3 / 5;
    grid-row: 1;
  }

  .lp-film-card:nth-child(3) {
    grid-column: 5 / 7;
    grid-row: 1;
  }

  .lp-film-card:nth-child(4) {
    grid-column: 2 / 4;
    grid-row: 2;
  }

  .lp-film-card:nth-child(5) {
    grid-column: 4 / 6;
    grid-row: 2;
  }
}

/* Films video modal */
.lp-films-modal {
  position: fixed;
  inset: 0;
  z-index: 2450;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}

.lp-films-modal.lp-modal-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lp-films-modal .lp-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 2, 4, 0.9);
  cursor: pointer;
}

.lp-films-modal-panel {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  padding-top: 2.5rem;
}

.lp-films-modal .lp-modal-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.lp-films-modal .lp-modal-close:hover {
  opacity: 1;
}

.lp-films-modal-ratio {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.45);
}

.lp-films-modal-ratio iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ----- Dossier / brochure download */
.lp-dossier {
  background: var(--lp-bg, #efede8);
  color: var(--lp-nav-text, #585858);
  padding: clamp(2.25rem, 5vw, 3.75rem) 0;
}

.lp-dossier-inner {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: clamp(1.75rem, 4vw, 2.75rem);
  max-width: 1120px;
}

.lp-dossier-copy {
  text-align: left;
}

.lp-dossier-eyebrow {
  margin: 0 0 0.85rem;
  font-size: clamp(0.72rem, 0.66rem + 0.25vw, 0.9rem);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #7a7a7a;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.lp-dossier-eyebrow::before {
  content: "";
  width: clamp(34px, 7vw, 64px);
  height: 1px;
  background: rgba(0, 0, 0, 0.35);
}

.lp-dossier-title {
  margin: 0 0 1rem;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.85rem, 4.2vw, 2.65rem);
  font-weight: 200;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #2a2a2a;
}

.lp-dossier-title-line {
  display: block;
  font-weight: 200;
}

.lp-dossier-title-accent {
  display: block;
  margin-top: 0.12em;
  font-weight: 200;
  color: var(--lp-burgundy);
}

.lp-dossier-desc {
  margin: 0;
  max-width: 28rem;
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.55;
  color: #6f6f6f;
}

.lp-dossier-cta-wrap {
  min-width: 0;
  display: flex;
  justify-content: center;
}

.lp-dossier-cta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.9rem;
  width: min(325px, 100%);
  margin: 0 auto;
  padding: clamp(0.92rem, 2.2vw, 1.3rem) clamp(0.92rem, 2.2vw, 1.35rem);
  text-decoration: none;
  color: #ffffff;
  background: #0f1014;
  border: 0;
  border-radius: 0;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.12);
  transition:
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.lp-dossier-cta:hover {
  background: #16181f;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.16);
}

.lp-dossier-cta:focus-visible {
  outline: 2px solid #B3654F;
  outline-offset: 3px;
}

.lp-dossier-cta-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lp-orange);
}

.lp-dossier-cta-svg {
  display: block;
  width: clamp(1.35rem, 2.9vw, 1.7rem);
  height: auto;
}

.lp-dossier-cta-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  text-align: center;
  min-width: 0;
}

.lp-dossier-cta-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.lp-dossier-cta-sub {
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 640px) {
  .lp-dossier-copy {
    text-align: center;
  }

  .lp-dossier-desc {
    margin-left: auto;
    margin-right: auto;
    max-width: 34rem;
  }

  .lp-dossier-cta {
    width: fit-content;
    max-width: 100%;
    flex-direction: row;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.72rem 0.72rem;
  }

  .lp-dossier-cta-icon {
    margin-bottom: 0;
  }

  .lp-dossier-cta-text {
    align-items: center;
    gap: 0.12rem;
    text-align: center;
  }

  .lp-dossier-cta-title {
    font-size: 12px;
    white-space: normal;
  }

  .lp-dossier-cta-svg {
    width: 1.2rem;
  }

  .lp-dossier-cta-sub {
    display: block;
    font-size: 0.5rem;
    line-height: 1.2;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.75);
  }
}

@media (min-width: 992px) {
  .lp-dossier-inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(2rem, 4vw, 3.5rem);
  }
}

/* ----- Why buyers / buyer confidence (burgundy two-column) */
.lp-why-buyers {
  background: var(--lp-burgundy);
  color: var(--lp-white);
  padding: clamp(2.25rem, 5vw, 4rem) 0;
}

.lp-why-buyers-inner {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: clamp(1.75rem, 4vw, 2.75rem);
  width: 100%;
  max-width: min(1400px, 100%);
  margin: 0 auto;
  padding-left: clamp(0.85rem, 3vw, 1.25rem);
  padding-right: clamp(0.85rem, 3vw, 1.25rem);
}

.lp-why-buyers-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: clamp(0.72rem, 0.66rem + 0.25vw, 0.9rem);
  font-weight: 500;
  color: #fff;
}

.lp-why-buyers-kicker-line {
  display: block;
  width: 2.25rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.85);
  opacity: 0.95;
  flex-shrink: 0;
}

.lp-why-buyers-title {
  margin: 0 0 1.35rem;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.1rem, 1.35rem + 1.1vw, 2.1rem);
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: 0.02em;
}

@media (min-width: 640px) {
  .lp-why-buyers-title {
    white-space: nowrap;
  }
}

.lp-why-buyers-title-part {
  display: inline;
  color: rgba(255, 255, 255, 0.96);
  font-weight: 300;
}

.lp-why-buyers-title-accent {
  display: inline;
  color: var(--lp-orange);
  font-weight: 700;
}

.lp-why-buyers-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.lp-why-buyers-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.95);
}

.lp-why-buyers-check {
  flex-shrink: 0;
  margin-top: 0.08rem;
  color: #fff;
  line-height: 0;
}

.lp-why-buyers-check svg {
  display: block;
}

.lp-why-buyers-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: clamp(1.35rem, 3vw, 1.85rem) clamp(1.25rem, 3vw, 1.75rem);
  background: rgba(0, 0, 0, 0.08);
}

.lp-why-buyers-card-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.58rem;
  font-weight: 500;
  color: #fff;
}

.lp-why-buyers-card-title {
  margin: 0 0 1rem;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  font-weight: 500;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.98);
}

.lp-why-buyers-card-bullets {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}

.lp-why-buyers-card-bullets li + li {
  margin-top: 0.35rem;
}

.lp-why-buyers-card-note {
  margin: 0 0 1.35rem;
  font-size: 0.72rem;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
}

.lp-why-buyers-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.lp-why-buyers-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.lp-why-buyers-stat-value {
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--lp-orange);
  line-height: 1.1;
}

.lp-why-buyers-stat-label {
  font-size: 0.52rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

@media (min-width: 992px) {
  .lp-why-buyers-inner {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: clamp(2rem, 4.5vw, 3.25rem);
  }
}

.lp-why-buyers .lp-gallery-more-btn {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  background-image: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.12) 35%,
    rgba(255, 255, 255, 0.05) 55%,
    transparent 100%
  );
}

.lp-why-buyers .lp-gallery-more-btn::before,
.lp-why-buyers .lp-gallery-more-btn::after {
  color: #fff;
}

.lp-why-buyers .lp-gallery-more-btn:hover,
.lp-why-buyers .lp-gallery-more-btn:focus-visible {
  color: var(--lp-orange);
  border-color: rgba(var(--lp-orange-rgb), 0.75);
  background-color: rgba(var(--lp-orange-rgb), 0.12);
}

.lp-why-buyers .lp-gallery-more-btn:hover::before,
.lp-why-buyers .lp-gallery-more-btn:hover::after,
.lp-why-buyers .lp-gallery-more-btn:focus-visible::before,
.lp-why-buyers .lp-gallery-more-btn:focus-visible::after {
  color: var(--lp-orange);
}

/* ----- Growth story (cream + tabs + white card) */
.lp-growth {
  background: var(--lp-bg, #efede8);
  color: #3a3a3a;
  padding: clamp(2.5rem, 6vw, 4.25rem) 0;
}

.lp-growth-inner {
  width: 100%;
  max-width: min(1200px, 100%);
  margin: 0 auto;
  padding-left: clamp(0.85rem, 3vw, 1.25rem);
  padding-right: clamp(0.85rem, 3vw, 1.25rem);
  text-align: center;
}

.lp-growth-header {
  margin-bottom: clamp(1.35rem, 3vw, 2rem);
}

.lp-growth-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: clamp(0.72rem, 0.66rem + 0.25vw, 0.9rem);
  font-weight: 500;
  color: #8a8884;
}

.lp-growth-kicker-line {
  display: block;
  width: 2.25rem;
  height: 1px;
  background: #b8b6b1;
  flex-shrink: 0;
}

.lp-growth-title {
  margin: 0 0 1rem;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.65rem, 3.6vw, 2.45rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #2a2a2a;
}

.lp-growth-title-accent {
  color: var(--lp-burgundy);
  font-weight: 500;
}

.lp-growth-lede {
  margin: 0 auto;
  max-width: 38rem;
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.6;
  color: #6f6d6a;
}

.lp-growth-block {
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
  text-align: center;
}

.lp-growth-tabs {
  display: flex;
  width: 100%;
  max-width: min(25.5rem, calc(100% - 2rem));
  margin: 0 auto clamp(1.35rem, 2.8vw, 1.85rem);
  border: 1px solid #d9d6d0;
  overflow: hidden;
  background: #eceae5;
}

.lp-growth-tab {
  flex: 1 1 0;
  margin: 0;
  padding: 0.78rem 0.45rem;
  border: 0;
  border-left: 1px solid #d9d6d0;
  background: #faf9f7;
  color: #6f6d69;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: none;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.lp-growth-tab:first-child {
  border-left: 0;
}

.lp-growth-tab:hover:not(.active) {
  background: #f3f2ef;
  color: #4a4845;
}

.lp-growth-tab.active {
  background: var(--lp-burgundy);
  color: #ffffff;
}

.lp-growth-tab:focus-visible {
  outline: 2px solid var(--lp-burgundy);
  outline-offset: 2px;
  z-index: 1;
}

.lp-growth-panels {
  background: #ffffff;
}

.lp-growth-panel {
  padding: clamp(1.2rem, 3vw, 1.9rem) clamp(1rem, 3vw, 1.8rem)
    clamp(1.25rem, 3vw, 2rem);
}

.lp-growth-panel-title {
  margin: 0 auto;
  max-width: min(36rem, 100%);
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.05rem, 2.2vw, 1.28rem);
  font-weight: 500;
  line-height: 1.35;
  color: #1f1f1f;
}

.lp-growth-panel-body {
  margin: 0.85rem auto 0;
  max-width: min(34rem, 100%);
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.6;
  color: #6f6d6a;
}

.lp-growth-panel-highlight {
  display: block;
  margin-top: 0.5rem;
  font-weight: 600;
  font-style: italic;
  color: var(--lp-burgundy);
}

.lp-growth-summary {
  margin: 1.25rem auto 0;
  max-width: min(34rem, 100%);
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1.6;
  color: var(--lp-burgundy);
}

.lp-growth-footnote {
  margin: 1.25rem 0 0;
  font-size: 0.62rem;
  font-weight: 400;
  line-height: 1.45;
  color: #a5a29c;
}

/* ----- Location (burgundy + map/list card) */
.lp-location {
  --lp-loc-bg: var(--lp-burgundy);
  --lp-loc-border: var(--lp-burgundy-border);
  background: var(--lp-loc-bg);
  color: var(--lp-white);
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
}

.lp-location-inner {
  width: 100%;
  max-width: min(1200px, 100%);
  margin: 0 auto;
  padding-left: clamp(0.85rem, 3vw, 1.25rem);
  padding-right: clamp(0.85rem, 3vw, 1.25rem);
}

.lp-location-header {
  text-align: center;
  margin-bottom: clamp(1.4rem, 3vw, 2rem);
}

.lp-location-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: clamp(0.72rem, 0.66rem + 0.25vw, 0.9rem);
  font-weight: 500;
  color: #fff;
}

.lp-location-kicker-line {
  display: block;
  width: 2.25rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.85);
  opacity: 0.9;
}

.lp-location-title {
  margin: 0 0 0.75rem;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.65rem, 3.6vw, 2.75rem);
  font-weight: 400;
  line-height: 1.22;
}

.lp-location-title-part {
  color: rgba(255, 255, 255, 0.96);
}

.lp-location-title-accent {
  color: var(--lp-orange);
  font-weight: 500;
}

.lp-location-sub {
  margin: 0 auto;
  max-width: 34rem;
  font-size: 0.75rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.lp-location-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.lp-location-map-card,
.lp-location-info-card {
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.lp-location-map-card {
  min-height: clamp(300px, 40vw, 430px);
  overflow: hidden;
}

.lp-location-map-embed {
  width: 100%;
  height: 100%;
  min-height: clamp(300px, 40vw, 430px);
  border: 0;
  display: block;
}

.lp-location-map-center {
  text-align: center;
  max-width: 18rem;
  padding: 1rem;
}

.lp-location-pin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  border: 1px solid rgba(var(--lp-orange-rgb), 0.5);
  border-radius: 999px;
  color: var(--lp-orange);
  font-size: 0.8rem;
  margin-bottom: 0.65rem;
}

.lp-location-project {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 500;
}

.lp-location-address-line {
  margin: 0.2rem 0 0;
  font-size: 0.66rem;
  color: rgba(255, 255, 255, 0.64);
}

.lp-location-map-btn {
  display: inline-block;
  margin-top: 0.85rem;
  padding: 0.48rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.78);
}

.lp-location-info-card {
  display: flex;
  flex-direction: column;
}

.lp-location-accordion {
  --lp-faq-line: rgba(255, 255, 255, 0.08);
  flex: 1;
  min-height: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-location-accordion .lp-accordion-item:last-child {
  border-bottom: 0;
}

.lp-location-accordion .lp-accordion-trigger {
  padding: 0.72rem 0.9rem;
  font-size: clamp(0.88rem, 0.82rem + 0.2vw, 0.98rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--lp-orange);
  grid-template-columns: auto minmax(0, 1fr) auto;
  column-gap: 0.6rem;
  align-items: center;
}

.lp-location-acc-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.88rem;
  flex-shrink: 0;
  color: var(--loc-acc-mark, var(--lp-orange));
  font-size: clamp(0.58rem, 0.52rem + 0.2vw, 0.68rem);
  line-height: 1;
}

.lp-location-acc-mark::before {
  content: "\2726";
}

.lp-location-acc-label {
  min-width: 0;
  text-align: left;
}

.lp-location-accordion .lp-accordion-trigger:hover,
.lp-location-accordion .lp-accordion-trigger:focus-visible {
  color: #fff;
}

.lp-location-accordion .lp-accordion-trigger:hover .lp-faq-plus,
.lp-location-accordion .lp-accordion-trigger:focus-visible .lp-faq-plus {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.lp-location-accordion .lp-accordion-trigger:hover .lp-location-acc-mark,
.lp-location-accordion
  .lp-accordion-trigger:focus-visible
  .lp-location-acc-mark {
  filter: brightness(1.12);
}

.lp-location-accordion .lp-faq-plus {
  width: 0.88rem;
  height: 0.88rem;
  border-color: rgba(var(--lp-orange-rgb), 0.45);
  color: rgba(var(--lp-orange-rgb), 0.95);
}

.lp-location-accordion .lp-accordion-panel ul.lp-location-places {
  margin: 0;
  padding: 0 clamp(0.7rem, 2vw, 1rem) 0.5rem clamp(1.2rem, 0.85rem + 2vw, 2rem);
  max-width: none;
  list-style: none;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

.lp-location-accordion .lp-location-places li {
  padding-left: clamp(1rem, 0.75rem + 1vw, 1.35rem);
  padding-right: clamp(0.7rem, 2vw, 1rem);
}

.lp-location-accordion .lp-location-dot {
  --dot: var(--lp-orange);
  background: var(--lp-orange);
}

.lp-location-acc-label.lp-location-acc-long-title {
  text-wrap: balance;
  padding-right: 0.35rem;
  line-height: 1.35;
}

.lp-location-places {
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-location-places li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.65rem;
  padding: 0.72rem 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-location-places li:first-child {
  border-top: 0;
}

.lp-location-dot {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--dot, var(--lp-orange));
}

.lp-location-place-name {
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.9);
}

.lp-location-place-distance {
  font-size: 0.66rem;
  color: rgba(255, 255, 255, 0.58);
}

.lp-location-card-address {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.8rem 0.9rem 0.9rem;
}

.lp-location-address-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.52rem;
  color: rgba(255, 255, 255, 0.52);
}

.lp-location-address-text {
  margin: 0.45rem 0 0;
  font-size: 0.72rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.84);
}

.lp-location-card-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.7rem;
}

.lp-location-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 7.5rem;
  padding: 0.48rem 0.82rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.56rem;
  color: rgba(255, 255, 255, 0.86);
  position: relative;
  overflow: hidden;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.lp-location-card-btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%) skewX(-18deg);
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.22) 35%,
    rgba(255, 255, 255, 0.08) 55%,
    transparent 100%
  );
  pointer-events: none;
}

.lp-location-card-btn-primary:hover::after,
.lp-location-card-btn-primary:focus-visible::after {
  transition: transform 0.55s ease;
  transform: translateX(120%) skewX(-18deg);
}

@media (prefers-reduced-motion: reduce) {
  .lp-nav-cta,
  .lp-details-cta,
  .lp-gallery-more-btn,
  .lp-location-card-btn {
    transition: none !important;
  }

  .lp-nav-cta:hover,
  .lp-details-cta:hover,
  .lp-gallery-more-btn:hover,
  .lp-location-card-btn:hover {
    transform: none !important;
    box-shadow: none !important;
  }

  .lp-nav-cta::after,
  .lp-location-card-btn-primary::after {
    display: none !important;
  }
}

.lp-location-card-btn:hover,
.lp-location-card-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
}

.lp-location-card-btn:hover:not(.lp-location-card-btn-primary),
.lp-location-card-btn:focus-visible:not(.lp-location-card-btn-primary) {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.98);
}

.lp-location-card-btn-primary {
  border-color: var(--lp-orange);
  background: var(--lp-orange);
  color: var(--lp-burgundy-ink);
}

@media (min-width: 992px) {
  .lp-location-wrap {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0.95rem;
  }
}

/* ----- Developer profile / credentials block */
.lp-developer {
  background: var(--lp-bg, #efede8);
  color: #2f2f2f;
  padding: clamp(2.75rem, 6vw, 4.75rem) 0;
}

.lp-developer-inner {
  width: 100%;
  max-width: min(1200px, 100%);
  margin: 0 auto;
  padding-left: clamp(0.85rem, 3vw, 1.25rem);
  padding-right: clamp(0.85rem, 3vw, 1.25rem);
}

.lp-developer-header {
  text-align: center;
}

.lp-developer-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin: 0 0 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.66rem;
  font-weight: 500;
  color: #66625c;
}

.lp-developer-kicker-line {
  display: block;
  width: 3.75rem;
  height: 1px;
  background: #c7c1b8;
}

.lp-developer-logo {
  display: block;
  width: min(18rem, 70vw);
  height: auto;
  margin: 0 auto 1.55rem;
  object-fit: contain;
}

.lp-developer-brand {
  margin: 0 auto 1.55rem;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #2f2f2f;
  text-align: center;
}

.lp-developer-copy {
  max-width: 60rem;
  margin: 0 auto;
  font-size: 0.76rem;
  line-height: 1.95;
  color: #56524d;
}

.lp-developer-copy + .lp-developer-copy {
  margin-top: 0.45rem;
}

.lp-developer-header .lp-residences-link {
  display: inline-block;
  margin-top: clamp(1rem, 2.6vw, 1.45rem);
  color: #B3654F;
  border-bottom-color: #B3654F;
}

.lp-developer-header .lp-residences-link:hover,
.lp-developer-header .lp-residences-link:focus-visible {
  color: var(--lp-orange);
  border-bottom-color: var(--lp-orange);
  transform: translateY(-2px);
}

.lp-developer-divider {
  height: 1px;
  margin: clamp(1.8rem, 4vw, 2.6rem) auto clamp(2rem, 4vw, 2.8rem);
  width: 100%;
  max-width: 60rem;
  background: #d8d2c7;
}

.lp-developer-address-block {
  text-align: center;
}

.lp-developer-address-title {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.7rem, 3.2vw, 3rem);
  line-height: 1.24;
  font-weight: 400;
  color: #222;
}

.lp-developer-address-sub {
  margin: 0.65rem auto 0;
  font-size: 0.78rem;
  color: #8a8680;
}

.lp-developer-tags {
  margin-top: clamp(1.45rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.lp-developer-tag {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 3rem;
  padding: 0.75rem 1rem;
  border: 1px solid #ddd7cb;
  background: transparent;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.64rem;
  font-weight: 600;
  color: #66625c;
}

@media (min-width: 640px) {
  .lp-developer-tags {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .lp-developer-tags {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }
}

/* ----- FAQ (burgundy accordion) */
.lp-faq {
  --lp-faq-bg: var(--lp-burgundy);
  --lp-faq-line: rgba(255, 255, 255, 0.08);
  background: var(--lp-faq-bg);
  color: var(--lp-white);
  padding: clamp(2.75rem, 6vw, 4.5rem) 0;
}

.lp-faq-inner {
  width: 100%;
  max-width: min(1200px, 100%);
  margin: 0 auto;
  padding-left: clamp(0.85rem, 3vw, 1.25rem);
  padding-right: clamp(0.85rem, 3vw, 1.25rem);
}

.lp-faq-header {
  text-align: center;
  margin-bottom: clamp(1.1rem, 2.5vw, 1.75rem);
}

.lp-faq-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: clamp(0.72rem, 0.66rem + 0.25vw, 0.9rem);
  color: #fff;
}

.lp-faq-kicker-line {
  display: block;
  width: 2.2rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.85);
  opacity: 0.85;
}

.lp-faq-title {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.85rem, 4vw, 3rem);
  line-height: 1.2;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
}

.lp-faq-title-gold {
  color: var(--lp-orange);
}

.lp-faq-title::after {
  content: ".";
  color: var(--lp-orange);
}

.lp-faq-accordion {
  border-top: 1px solid var(--lp-faq-line);
}

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

.lp-accordion-trigger {
  width: 100%;
  margin: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  font: inherit;
  font-size: 1.05rem;
  line-height: 1.4;
  font-weight: 400;
  padding: 0.95rem 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  text-align: left;
  cursor: pointer;
}

.lp-faq-plus {
  width: 1rem;
  height: 1rem;
  border: 1px solid rgba(var(--lp-orange-rgb), 0.35);
  position: relative;
  flex-shrink: 0;
  color: rgba(var(--lp-orange-rgb), 0.85);
}

.lp-faq-plus::before,
.lp-faq-plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease;
}

.lp-faq-plus::before {
  width: 0.52rem;
  height: 1px;
}

.lp-faq-plus::after {
  width: 1px;
  height: 0.52rem;
}

.lp-accordion-trigger[aria-expanded="true"] .lp-faq-plus::after {
  opacity: 0;
}

.lp-faq-accordion .lp-accordion-trigger[aria-expanded="true"] {
  color: var(--lp-orange);
}

.lp-faq-accordion .lp-accordion-trigger[aria-expanded="true"] .lp-faq-plus {
  border-color: rgba(var(--lp-orange-rgb), 0.55);
  color: var(--lp-orange);
}

.lp-accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.lp-accordion-panel p {
  margin: 0;
  padding: 0 0 1rem;
  max-width: 65rem;
  font-size: 0.8rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}

.lp-accordion-panel ul {
  margin: 0 0 1rem;
  padding: 0 0 0 1.2rem;
  max-width: 65rem;
  font-size: 0.8rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}

.lp-accordion-panel ul li + li {
  margin-top: 0.35rem;
}

@media (max-width: 640px) {
  .lp-accordion-trigger {
    font-size: 0.95rem;
  }
}

/* ----- Private presentation form block */
.lp-private {
  --lp-private-bg: var(--lp-burgundy);
  background: var(--lp-private-bg);
  color: var(--lp-white);
  padding: clamp(2.5rem, 6vw, 4.75rem) 0;
}

.lp-private-inner {
  width: 100%;
  max-width: min(1200px, 100%);
  margin: 0 auto;
  padding-left: clamp(0.85rem, 3vw, 1.25rem);
  padding-right: clamp(0.85rem, 3vw, 1.25rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.lp-private-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: clamp(0.72rem, 0.66rem + 0.25vw, 0.9rem);
  color: var(--lp-orange);
}

.lp-private-kicker-line {
  display: block;
  width: 2.25rem;
  height: 1px;
  background: var(--lp-orange);
}

.lp-private-title {
  margin: 0;
  font-size: clamp(1.5rem, 3.5vw, 2.45rem);
  font-weight: 400;
  line-height: 1.22;
  max-width: 30rem;
}

.lp-private-sub {
  margin: 1rem 0 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.76);
  max-width: 30rem;
}

.lp-private-points {
  list-style: none;
  margin: 1.35rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  max-width: 30rem;
}

.lp-private-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.lp-private-dot {
  width: 0.85rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
  color: var(--lp-orange);
  line-height: 1;
}

.lp-private-dot::before {
  content: "\2726";
  display: inline-block;
  font-size: 0.56rem;
  color: var(--lp-orange);
}

.lp-private-points strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.94);
}

.lp-private-points span {
  display: block;
  margin-top: 0.18rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.74);
}

.lp-private-form-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--lp-burgundy);
  padding: clamp(1rem, 2.5vw, 1.4rem);
}

.lp-private-form-card h3 {
  margin: 0 0 0.9rem;
  font-size: 1.65rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.94);
}

.lp-private-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.lp-private-input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.14);
  color: rgba(255, 255, 255, 0.95);
  font: inherit;
  font-size: 0.82rem;
  line-height: 1.35;
  padding: 0.65rem 0.75rem;
}

.lp-private-input::placeholder {
  color: rgba(255, 255, 255, 0.56);
}

.lp-private-input:focus {
  outline: none;
  background: rgba(0, 0, 0, 0.2);
  color: rgba(255, 255, 255, 0.95);
  border-color: rgba(var(--lp-orange-rgb), 0.55);
  box-shadow: 0 0 0 1px rgba(var(--lp-orange-rgb), 0.22);
}

/* Prevent browser autofill/focus from changing field background */
.lp-private-input:-webkit-autofill,
.lp-private-input:-webkit-autofill:hover,
.lp-private-input:-webkit-autofill:focus,
.lp-private-input:-webkit-autofill:active {
  -webkit-text-fill-color: rgba(255, 255, 255, 0.95) !important;
  transition: background-color 99999s ease-out 0s;
  box-shadow: 0 0 0px 1000px rgba(0, 0, 0, 0.14) inset !important;
}

.lp-private-textarea {
  min-height: 3rem;
  resize: vertical;
}

.lp-private-submit {
  margin-top: 0.1rem;
  width: 100%;
  border: 0;
  background: #fff;
  color: #B3654F;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.6rem;
  font-weight: 600;
  padding: 0.75rem 0.9rem;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.lp-private-submit:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--lp-orange);
}

.lp-private-note {
  margin: 0.55rem 0 0;
  font-size: 0.62rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.64);
}

@media (min-width: 992px) {
  .lp-private-inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: start;
    gap: 1.2rem;
  }
}

/* ----- Footer (cream three-column) */
.lp-footer {
  background: var(--lp-bg, #efede8);
  color: #4f4d49;
  border-top: 1px solid #e5e0d6;
  padding: clamp(2rem, 4vw, 2.85rem) 0 clamp(1.5rem, 3vw, 2.1rem);
}

.lp-footer-inner {
  width: 100%;
  max-width: min(1200px, 100%);
  margin: 0 auto;
  padding-left: clamp(0.85rem, 3vw, 1.25rem);
  padding-right: clamp(0.85rem, 3vw, 1.25rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
}

@media (max-width: 640px) {
  .lp-footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 1rem;
  }

  .lp-footer-brand {
    grid-column: 1 / -1;
  }
}

.lp-footer-logo {
  width: min(7.5rem, 42vw);
  height: auto;
  display: block;
}

.lp-footer-brand-name {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #2f2f2f;
}

.lp-footer-brand-text {
  margin: 0.75rem 0 0;
  max-width: 18rem;
  font-size: 0.72rem;
  line-height: 1.65;
  color: #595752;
}

.lp-footer-rera-label {
  color: var(--lp-burgundy);
  font-weight: 600;
}

.lp-footer-disclaimer {
  margin: 0.55rem 0 0;
  max-width: 26rem;
  font-size: 0.56rem;
  line-height: 1.55;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #7d7973;
}

.lp-footer-heading {
  margin: 0 0 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.56rem;
  color: #8b867d;
}

.lp-footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.38rem;
}

.lp-footer-links a {
  text-decoration: none;
  font-size: 0.67rem;
  color: #53504b;
  line-height: 1.4;
}

.lp-footer-links a:hover,
.lp-footer-links a:focus-visible {
  color: var(--lp-burgundy);
}

.lp-footer-address {
  margin: 0;
  font-style: normal;
  font-size: 0.67rem;
  line-height: 1.55;
  color: #5a5752;
}

.lp-footer-phone {
  display: inline-block;
  margin-top: 0.45rem;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #B3654F;
}

.lp-footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.8rem;
  min-width: 7.4rem;
  padding: 0.55rem 1rem;
  border: 0;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.56rem;
  font-weight: 600;
  color: #ffffff;
  background: #55301d;
}

.lp-footer-cta:hover {
  background: #442718;
}

.lp-footer-partners-mobile {
  display: none;
}

.lp-footer-partners-desktop {
  display: block;
}

@media (min-width: 769px) {
  .lp-footer-partners-mobile {
    display: none !important;
  }

  .lp-footer-partners-desktop {
    display: block;
  }
}

.lp-footer-partners {
  margin-top: 1.25rem;
}

.lp-footer-partners-label {
  margin: 0 4px -0.4rem;
  text-transform: none;
  letter-spacing: 0.08em;
  font-size: 0.56rem;
  font-weight: 600;
  color: #B3654F;
}

.lp-footer-partners-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.lp-footer-promoter-logo {
  display: block;
  width: min(7.5rem, 42vw);
  height: auto;
  object-fit: contain;
}

.lp-footer-ceyone-logo {
  display: block;
  width: min(7.5rem, 38vw);
  height: auto;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .lp-footer-partners-mobile {
    display: block;
    grid-column: 1 / -1;
    margin-top: 0.5rem;
    width: 100%;
  }

  .lp-footer-partners-desktop {
    display: none;
  }

  .lp-footer-partners-mobile .lp-footer-partners-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 0.75rem;
    width: 100%;
  }

  .lp-footer-partners-mobile .lp-footer-promoter-logo {
    display: block;
    width: auto;
    max-width: min(7rem, 38vw);
    height: auto;
    margin: 0;
    flex: 0 1 auto;
    object-fit: contain;
    object-position: left center;
  }

  .lp-footer-partners-mobile .lp-footer-partners-row a {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 0 1 auto;
    margin-left: auto;
  }

  .lp-footer-partners-mobile .lp-footer-ceyone-logo {
    display: block;
    width: auto;
    max-width: min(7rem, 38vw);
    height: auto;
    margin: 0;
    object-fit: contain;
    object-position: right center;
  }
}

.lp-footer-copyright {
  margin: clamp(1.1rem, 2vw, 1.5rem) auto 0;
  width: 100%;
  max-width: min(1200px, 100%);
  padding-left: clamp(0.85rem, 3vw, 1.25rem);
  padding-right: clamp(0.85rem, 3vw, 1.25rem);
  text-align: center;
  font-size: 0.56rem;
  color: #8a857c;
}

.lp-footer-divider {
  width: 100%;
  height: 1px;
  background: #e5e0d6;
  margin: 1rem 0 0;
}

@media (min-width: 920px) {
  .lp-footer-inner {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr) minmax(0, 1fr);
    align-items: start;
    gap: clamp(1.5rem, 3vw, 2.75rem);
  }
}

/* ----- Enquiry modal (shared popup form) */
.lp-enquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  visibility: hidden;
  pointer-events: none;
}

.lp-enquiry-modal.lp-modal-visible {
  visibility: visible;
  pointer-events: auto;
}

.lp-enquiry-modal .lp-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(179, 101, 79, 0.62);
}

.lp-enquiry-modal-box {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  background: #fff !important;
  background-color: #fff !important;
  border: 1px solid rgba(179, 101, 79, 0.12);
  border-radius: 18px;
  padding: 0;
  box-shadow:
    0 24px 80px rgba(179, 101, 79, 0.28),
    0 0 0 1px rgba(179, 101, 79, 0.06);
  max-height: min(82vh, 620px);
  overflow: hidden;
  color: #2d2d2d;
  display: flex;
  flex-direction: column;
}

.lp-enquiry-modal .lp-enquiry-modal-box {
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease;
}

.lp-enquiry-modal.lp-modal-visible .lp-enquiry-modal-box {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.lp-enquiry-modal-box::before {
  display: block;
  content: "";
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--lp-burgundy) 0%,
    var(--lp-burgundy) 42%,
    var(--lp-orange) 42%,
    var(--lp-orange) 58%,
    var(--lp-burgundy) 58%,
    var(--lp-burgundy) 100%
  );
  flex-shrink: 0;
}

.lp-enquiry-modal-box .lp-section-title,
.lp-enquiry-modal-box .lp-enquiry-sub,
.lp-enquiry-modal-box .app-lead-form {
  padding-left: 1.15rem;
  padding-right: 1.15rem;
}

.lp-enquiry-modal-box .lp-section-title {
  margin: 0.85rem 0 0.2rem;
  padding-top: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.38rem;
  line-height: 1.15;
  color: var(--lp-burgundy) !important;
  text-align: left;
  letter-spacing: 0.01em;
}

.lp-enquiry-modal-box .lp-section-title::after {
  content: "";
  display: block;
  width: 2.25rem;
  height: 2px;
  margin-top: 0.4rem;
  background: var(--lp-orange);
  border-radius: 2px;
}

.lp-enquiry-sub {
  margin: 0 0 0.75rem;
  padding-bottom: 0.7rem;
  font-size: 0.76rem;
  line-height: 1.45;
  color: rgba(45, 45, 45, 0.72);
  text-align: left;
  border-bottom: 1px solid rgba(179, 101, 79, 0.08);
}

.lp-enquiry-modal .lp-modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(179, 101, 79, 0.14);
  border-radius: 50%;
  background: #fff;
  color: var(--lp-burgundy);
  font-size: 1.35rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  opacity: 1;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.lp-enquiry-modal .lp-modal-close:hover {
  background: rgba(179, 101, 79, 0.06);
  border-color: rgba(179, 101, 79, 0.22);
  transform: scale(1.04);
}

/* ----- app_form_template styles (used in enquiry popup) ----- */
.app-lead-form {
  margin: 0;
  padding: 0;
}

.app-lead-form .row-form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.app-lead-form .row-form-split {
  display: grid;
  grid-template-columns: minmax(72px, 88px) minmax(0, 1fr);
  gap: 0.5rem;
  align-items: stretch;
}

.app-lead-form .row-form-phone-inline .col-form {
  gap: 0;
}

.app-lead-form .col-form-phone-group > .app-field-label {
  margin-bottom: 0.25rem;
}

.lp-enquiry-modal-box .app-lead-form .col-form-phone-group > .app-field-label {
  margin-bottom: 0.15rem;
}

.app-lead-form .row-form-phone-inline .col-form-code,
.app-lead-form .row-form-phone-inline .col-form-phone {
  min-width: 0;
}

.app-lead-form .app-field-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(45, 45, 45, 0.9);
}

.app-lead-form .app-required {
  color: var(--lp-orange);
}

.app-lead-form .app-privacy-note {
  margin: 0.25rem 0 0;
  font-size: 0.7rem;
  line-height: 1.5;
  color: rgba(45, 45, 45, 0.6);
}

/* Reduce space between privacy note and button */
.app-lead-form .col-form-btn {
  margin-top: 0.4rem !important;
}

.lp-enquiry-modal-box .app-lead-form .col-form-btn {
  margin-top: 0.35rem !important;
}

@media (max-width: 480px) {
  .app-lead-form .app-privacy-note {
    margin-top: 0.2rem;
  }
  .lp-enquiry-modal-box .app-lead-form .col-form-btn {
    margin-top: 0.3rem !important;
  }
}

.app-lead-form .app-privacy-note a {
  color: var(--lp-orange);
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.app-lead-form .col-form {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 0;
}

.app-lead-form .sm-form-control {
  width: 100%;
  border-radius: 0;
  border: 1px solid rgba(0, 0, 0, 0.25);
  background: #ffffff;
  color: #2d2d2d;
  font: inherit;
  font-size: 0.84rem;
  padding: 0.5rem 0.65rem;
}

.app-lead-form .sm-form-control::placeholder {
  color: rgba(45, 45, 45, 0.55);
}

.app-lead-form select.sm-form-control {
  padding-right: 0.9rem;
}

.app-lead-form .app-error-msg {
  min-height: 0.9rem;
}

.app-lead-form .submitBtn {
  width: 100%;
  border-radius: 0;
  border: 0;
  background: var(--lp-gold-btn, #FFDBB3);
  color: var(--lp-burgundy-ink);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.78rem 1rem;
  cursor: pointer;
  display: block;
  text-align: center;
}

.app-lead-form .submitBtn:hover {
  background: #c3a15c;
}

/* Stronger override inside the enquiry modal */
.lp-enquiry-modal-box .app-lead-form {
  margin: 0;
  padding: 0 1.15rem 1rem;
  overflow: auto;
  flex: 1 1 auto;
  min-height: 0;
}

.lp-enquiry-modal-box .app-lead-form .row-form {
  gap: 0.55rem;
}

.lp-enquiry-modal-box .app-lead-form .col-form {
  gap: 0.2rem;
}

.lp-enquiry-modal-box .app-lead-form .app-error-msg {
  min-height: 0.45rem;
  font-size: 0.68rem;
  line-height: 1.2;
}

.lp-enquiry-modal-box .app-lead-form .app-field-label {
  color: var(--lp-burgundy);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lp-enquiry-modal-box .app-lead-form .app-required {
  color: var(--lp-orange);
}

.lp-enquiry-modal-box .app-lead-form .app-privacy-note {
  margin: 0.05rem 0 0;
  padding: 0.5rem 0.6rem;
  font-size: 0.64rem;
  line-height: 1.4;
  color: rgba(45, 45, 45, 0.65);
  background: rgba(179, 101, 79, 0.04);
  border-radius: 10px;
  border: 1px solid rgba(179, 101, 79, 0.08);
}

.lp-enquiry-modal-box .app-lead-form .app-privacy-note a {
  color: var(--lp-burgundy);
  font-weight: 600;
}

.lp-enquiry-modal-box .app-lead-form .col-form-btn {
  margin-top: 0.3rem !important;
}

.lp-enquiry-modal-box .app-lead-form .submitBtn,
.lp-enquiry-modal-box .app-lead-form .submitBtn.white-btn,
.lp-enquiry-modal-box .app-lead-form .submitBtn.theme-btn,
.lp-enquiry-modal-box .app-lead-form button.submitBtn {
  border-radius: 10px !important;
  border: 0 !important;
  appearance: none;
  -webkit-appearance: none;
  background: var(--lp-burgundy) !important;
  background-color: var(--lp-burgundy) !important;
  color: #fff !important;
  padding: 0.68rem 0.9rem !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase;
  box-shadow: 0 10px 28px rgba(179, 101, 79, 0.22) !important;
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.lp-enquiry-modal-box .app-lead-form .sm-form-control {
  border-radius: 10px !important;
  background: #fff !important;
  border: 1px solid rgba(179, 101, 79, 0.18) !important;
  color: #2d2d2d !important;
  padding: 0.58rem 0.8rem !important;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.lp-enquiry-modal-box .app-lead-form .sm-form-control:focus,
.lp-enquiry-modal-box .app-lead-form .sm-form-control:active {
  background: #fff !important;
  color: #2d2d2d !important;
  outline: none;
  border-color: var(--lp-burgundy) !important;
  box-shadow:
    0 0 0 3px rgba(179, 101, 79, 0.1),
    inset 3px 0 0 var(--lp-orange);
}

.lp-enquiry-modal-box .app-lead-form .row-form-phone-inline {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  gap: 0.5rem;
}

.lp-enquiry-modal-box .app-lead-form .row-form-phone-inline:focus-within {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.lp-enquiry-modal-box .app-lead-form .row-form-phone-inline .sm-form-control {
  min-height: 2.45rem;
  background: #fff !important;
  border: 1px solid rgba(179, 101, 79, 0.18) !important;
  box-shadow: none !important;
  padding: 0.58rem 0.65rem !important;
}

.lp-enquiry-modal-box .app-lead-form .row-form-phone-inline .sm-form-control:focus,
.lp-enquiry-modal-box .app-lead-form .row-form-phone-inline .sm-form-control:active {
  border-color: var(--lp-burgundy) !important;
  box-shadow:
    0 0 0 3px rgba(179, 101, 79, 0.1),
    inset 3px 0 0 var(--lp-orange) !important;
}

/* Prevent browser autofill from changing background */
.lp-enquiry-modal-box .app-lead-form .sm-form-control:-webkit-autofill,
.lp-enquiry-modal-box .app-lead-form .sm-form-control:-webkit-autofill:hover,
.lp-enquiry-modal-box .app-lead-form .sm-form-control:-webkit-autofill:focus,
.lp-enquiry-modal-box .app-lead-form .sm-form-control:-webkit-autofill:active {
  -webkit-text-fill-color: #2d2d2d !important;
  transition: background-color 99999s ease-out 0s;
  box-shadow: 0 0 0px 1000px #fff inset !important;
}

.lp-enquiry-modal-box .app-lead-form .sm-form-control::placeholder {
  color: rgba(45, 45, 45, 0.55) !important;
}

.lp-enquiry-modal-box .app-lead-form select.sm-form-control {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff !important;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--lp-burgundy) 50%),
    linear-gradient(135deg, var(--lp-burgundy) 50%, transparent 50%);
  background-position:
    calc(100% - 15px) calc(50% - 2px),
    calc(100% - 10px) calc(50% - 2px);
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
  padding-right: 2rem !important;
  min-height: 0;
  line-height: 1.25;
}

.lp-enquiry-modal-box .app-lead-form .row-form-phone-inline select.sm-form-control {
  background-color: #fff !important;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--lp-burgundy) 50%),
    linear-gradient(135deg, var(--lp-burgundy) 50%, transparent 50%);
}

/* Ensure dropdown option text is visible (OS renders the menu) */
.lp-enquiry-modal-box .app-lead-form select.sm-form-control,
.lp-enquiry-modal-box .app-lead-form select.sm-form-control option {
  color: #2d2d2d;
}

.lp-enquiry-modal-box .app-lead-form select.sm-form-control option {
  color: #1f1f1f;
  background: #ffffff;
  font-size: 0.9rem;
}

@media (max-width: 480px) {
  .lp-enquiry-modal {
    padding: 0.6rem;
  }

  .lp-enquiry-modal-box {
    width: min(380px, 100%);
    border-radius: 16px;
    max-height: 78vh;
  }

  .lp-enquiry-modal-box .lp-section-title,
  .lp-enquiry-modal-box .lp-enquiry-sub,
  .lp-enquiry-modal-box .app-lead-form {
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }

  .lp-enquiry-modal-box .app-lead-form {
    padding-bottom: 0.85rem;
  }

  .lp-enquiry-modal-box .lp-section-title {
    font-size: 1.25rem;
    margin-top: 0.75rem;
  }

  .app-lead-form .row-form-split,
  .app-lead-form .row-form-phone-inline {
    grid-template-columns: minmax(68px, 80px) minmax(0, 1fr);
    gap: 0.35rem;
  }

  .lp-enquiry-modal-box .app-lead-form select.sm-form-control {
    font-size: 16px !important;
  }

  .lp-enquiry-modal-box .app-lead-form .row-form-phone-inline .sm-form-control {
    min-height: 2.35rem;
  }

  .lp-enquiry-modal-box .app-lead-form .submitBtn {
    padding: 0.72rem 0.9rem !important;
  }
}

.lp-enquiry-modal-box .app-lead-form .submitBtn:hover,
.lp-enquiry-modal-box .app-lead-form .submitBtn.white-btn:hover,
.lp-enquiry-modal-box .app-lead-form .submitBtn.theme-btn:hover,
.lp-enquiry-modal-box .app-lead-form button.submitBtn:hover {
  background: var(--lp-burgundy-hover) !important;
  background-color: var(--lp-burgundy-hover) !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(179, 101, 79, 0.28) !important;
}

/* Enquiry popup — white panel theme */
.lp-enquiry-modal.lp-modal .lp-enquiry-modal-box,
.lp-enquiry-modal .lp-enquiry-modal-box,
.lp-mobile-enquiry-strip .lp-enquiry-modal-box {
  background: #fff !important;
  background-color: #fff !important;
}

/* ----- Scroll reveal animation (left/right to center) */
.lp-animate {
  opacity: 0;
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  will-change: transform, opacity;
}

.lp-animate-left {
  transform: translateX(-46px);
}

.lp-animate-right {
  transform: translateX(46px);
}

.lp-animate.lp-animate-in {
  opacity: 1;
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .lp-animate,
  .lp-animate-left,
  .lp-animate-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ----- Desktop fixed footer enquiry strip */
.lp-desktop-enquiry-strip {
  display: none;
}

@media (min-width: 769px) {
  :root {
    --lp-desktop-enquiry-height: 4.35rem;
  }

  .lp-desktop-enquiry-strip {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2350;
    background: var(--lp-burgundy);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 -6px 24px rgba(74, 42, 33, 0.18);
  }

  body.lp-body {
    padding-bottom: var(--lp-desktop-enquiry-height);
  }

  .lp-desktop-enquiry-form {
    margin: 0;
  }

  .lp-desktop-enquiry-inner {
    max-width: 1240px;
    margin: 0 auto;
    min-height: var(--lp-desktop-enquiry-height);
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1rem, 2.4vw, 2rem);
  }

  .lp-desktop-enquiry-field-wrap {
    flex: 1 1 0;
    max-width: 220px;
    min-width: 0;
  }

  .lp-desktop-enquiry-field-wrap--phone {
    max-width: 280px;
  }

  .lp-desktop-enquiry-phone-row {
    display: flex;
    align-items: flex-end;
    gap: 0.55rem;
    padding-bottom: 0;
  }

  .lp-desktop-enquiry-code-picker {
    position: relative;
    flex: 0 0 auto;
  }

  .lp-desktop-enquiry-code-trigger {
    display: inline-flex;
    align-items: center;
    min-width: 3.35rem;
    padding: 0.35rem 1rem 0.5rem 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.88);
    border-radius: 0;
    background: transparent;
    color: var(--lp-orange);
    font-family: "Poppins", sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    line-height: 1.35;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23FFDBB3' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.05rem center;
    background-size: 0.55rem auto;
    box-shadow: none;
    outline: none;
  }

  .lp-desktop-enquiry-code-trigger:hover,
  .lp-desktop-enquiry-code-trigger:focus-visible,
  .lp-desktop-enquiry-code-picker.is-open .lp-desktop-enquiry-code-trigger {
    color: #fff;
    border-bottom-color: var(--lp-orange);
    outline: none;
  }

  .lp-desktop-enquiry-code-menu {
    position: absolute;
    left: 0;
    bottom: calc(100% + 0.35rem);
    z-index: 10;
    list-style: none;
    margin: 0;
    padding: 0.25rem 0;
    min-width: 4.6rem;
    width: max-content;
    max-width: 5.25rem;
    overflow-y: auto;
    border: 1px solid rgba(255, 219, 179, 0.35);
    background: var(--lp-burgundy-hover);
    box-shadow: 0 -8px 24px rgba(74, 42, 33, 0.28);
  }

  .lp-desktop-enquiry-code-menu[hidden] {
    display: none;
  }

  .lp-desktop-enquiry-code-menu li {
    padding: 0.38rem 0.7rem;
    color: var(--lp-orange);
    font-family: "Poppins", sans-serif;
    font-size: 0.74rem;
    font-weight: 500;
    line-height: 1.2;
    cursor: pointer;
    white-space: nowrap;
  }

  .lp-desktop-enquiry-code-menu li:hover,
  .lp-desktop-enquiry-code-menu li:focus {
    background: var(--lp-burgundy-section);
    color: #fff;
    outline: none;
  }

  .lp-desktop-enquiry-code-menu li[aria-selected="true"] {
    background: var(--lp-burgundy);
    color: #fff;
  }

  .lp-desktop-enquiry-phone-row .lp-desktop-enquiry-input.phone {
    flex: 1 1 auto;
    min-width: 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.88);
  }

  .lp-desktop-enquiry-phone-row:focus-within .lp-desktop-enquiry-input.phone {
    border-bottom-color: var(--lp-orange);
  }

  .lp-desktop-enquiry-phone-row .lp-desktop-enquiry-input.phone:focus {
    border-bottom-color: var(--lp-orange);
  }

  .lp-desktop-enquiry-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin: 0;
    min-width: 0;
  }

  .lp-desktop-enquiry-label {
    color: rgba(255, 255, 255, 0.82);
    font-family: "Poppins", sans-serif;
    font-size: 0.68rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.02em;
  }

  .lp-desktop-enquiry-input {
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.88);
    border-radius: 0;
    background: transparent;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 0.78rem;
    font-weight: 400;
    line-height: 1.35;
    padding: 0.35rem 0 0.5rem;
    outline: none;
    box-shadow: none;
  }

  .lp-desktop-enquiry-input::placeholder {
    color: rgba(255, 255, 255, 0.45);
  }

  .lp-desktop-enquiry-input:focus {
    border-bottom-color: var(--lp-orange);
  }

  .lp-desktop-enquiry-input:-webkit-autofill,
  .lp-desktop-enquiry-input:-webkit-autofill:hover,
  .lp-desktop-enquiry-input:-webkit-autofill:focus {
    -webkit-text-fill-color: #fff;
    box-shadow: 0 0 0 1000px var(--lp-burgundy) inset;
    transition: background-color 9999s ease-out 0s;
  }

  .lp-desktop-enquiry-error {
    display: block;
    min-height: 0;
    margin: 0;
    padding: 0;
    font-size: 0.58rem;
    line-height: 1.2;
    color: #ffd8d0;
  }

  .lp-desktop-enquiry-error:empty {
    display: none;
  }

  .lp-desktop-enquiry-submit {
    flex: 0 0 auto;
    min-width: 7.5rem;
    min-height: 2.35rem;
    margin: 0;
    padding: 0.55rem 1.5rem;
    border: 0;
    border-radius: 0;
    background: #fff;
    color: var(--lp-burgundy-ink);
    font-family: "Poppins", sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .lp-desktop-enquiry-submit:hover,
  .lp-desktop-enquiry-submit:focus-visible {
    background: var(--lp-orange);
    color: var(--lp-burgundy-ink);
    outline: none;
  }

  .lp-desktop-enquiry-submit:disabled {
    opacity: 0.72;
    cursor: not-allowed;
  }

  /* Reset global .app-lead-form / .submitBtn rules if present on footer form */
  .lp-desktop-enquiry-form .submitBtn,
  .lp-desktop-enquiry-form .lp-desktop-enquiry-submit {
    width: auto;
    min-width: 7.5rem;
    max-width: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--lp-burgundy-ink);
    padding: 0.55rem 1.5rem;
    letter-spacing: 0.14em;
    font-size: 0.68rem;
    text-align: center;
  }

  .lp-desktop-enquiry-form .lp-desktop-enquiry-submit:hover,
  .lp-desktop-enquiry-form .lp-desktop-enquiry-submit:focus-visible {
    background: var(--lp-orange);
    color: var(--lp-burgundy-ink);
  }

  .lp-desktop-enquiry-form .app-error-msg {
    min-height: 0;
  }
}
