/* ============================================================
   BASE & RESET
   ============================================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--f-ar), sans-serif;
  background: var(--bg-body);
  color: var(--text-primary);
  transition: background 0.3s ease, color 0.3s ease;
  line-height: 1.6;
  overflow-x: hidden;
}
body[data-lang="en"] {
  font-family: var(--f-en), serif;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--gold);
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
}
.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-ivory {
  background: var(--bg-body);
}
.section-white {
  background: var(--bg-surface);
}
.section-dark {
  background: var(--ink);
  color: var(--ivory);
}
html.dark-mode .section-dark {
  background: var(--dark-bg);
  color: var(--dark-text);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.lc-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 12px;
}
.lc-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
.lc-eyebrow--light {
  color: var(--gold);
}
.lc-section-title {
  font-family: var(--f-h), serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 600;
}
.lc-section-title em {
  font-style: italic;
  color: var(--gold);
}
.lc-section-title--light {
  color: var(--ivory);
}
html.dark-mode .lc-section-title--light {
  color: var(--dark-text);
}
.lc-body {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 640px;
}
.lc-body--dim {
  opacity: 0.75;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 30px;
  border-radius: var(--r);
  font-weight: 600;
  transition: all 0.3s var(--ease);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  font-size: 0.95rem;
}
.btn-gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  box-shadow: 0 4px 15px rgba(232, 160, 48, 0.25);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(232, 160, 48, 0.4);
}
.btn-gold:active {
  transform: translateY(0);
}
html.dark-mode .btn-gold {
  color: var(--dark-text);
}
.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border-color: var(--ivory);
}
.btn-ghost:hover {
  background: var(--ivory);
  color: var(--ink);
}
.btn-outline-dark {
  border-color: var(--ink);
  color: var(--ink);
}
.btn-outline-dark:hover {
  background: var(--ink);
  color: var(--ivory);
}
html.dark-mode .btn-outline-dark {
  border-color: var(--dark-text);
  color: var(--dark-text);
}
html.dark-mode .btn-outline-dark:hover {
  background: var(--dark-text);
  color: var(--dark-bg);
}
.btn-outline-light {
  border-color: var(--ivory);
  color: var(--ivory);
}
.btn-outline-light:hover {
  background: var(--ivory);
  color: var(--ink);
}
.w-full {
  width: 100%;
  justify-content: center;
}
.btn .spin {
  animation: spin 1s linear infinite;
}
@keyframes spin {
  100% { transform: rotate(360deg); }
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.lc-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  height: var(--nav-h);
  background: color-mix(in srgb, var(--bg-body), transparent 20%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: background 0.3s, backdrop-filter 0.3s;
}
html.dark-mode .lc-nav {
  background: color-mix(in srgb, var(--dark-bg), transparent 30%);
}
.lc-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.lc-nav__logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.lc-nav__logo-img {
  max-height: 48px;
  width: auto;
}
.lc-nav__logo-txt {
  font-family: var(--f-h), serif;
  letter-spacing: 0.05em;
}
.lc-nav__links {
  display: flex;
  gap: 24px;
  font-size: 0.9rem;
}
.lc-nav__links a {
  color: var(--text-primary);
  transition: color 0.2s;
}
.lc-nav__links a:hover {
  color: var(--gold);
}
.lc-nav__right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lc-nav__dark-toggle {
  background: none;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background 0.2s;
}
.lc-nav__dark-toggle:hover {
  background: var(--gold);
}
html.dark-mode .lc-nav__dark-toggle .light-icon {
  display: inline;
}
html.dark-mode .lc-nav__dark-toggle .dark-icon {
  display: none;
}
.lc-nav__dark-toggle .light-icon {
  display: none;
}
.lc-nav__lang {
  font-weight: 600;
  color: var(--text-secondary);
}
.lc-nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
}
.lc-nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: 0.3s;
}
/* Mobile nav */
.lc-mob-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 360px;
  height: 100%;
  background: var(--bg-surface);
  box-shadow: var(--shadow-lg);
  transition: right 0.3s var(--ease);
  z-index: 1000;
  padding: 24px;
  overflow-y: auto;
}
.lc-mob-nav.open {
  right: 0;
}
.lc-mob-nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lc-mob-nav__overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.lc-mob-nav__hd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.lc-mob-nav__x {
  font-size: 1.5rem;
}
.lc-mob-nav__links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.lc-mob-link {
  font-size: 1.1rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
  display: block;
  color: var(--text-primary);
}
.lc-mob-nav__ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ============================================================
   HERO
   ============================================================ */
.lc-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: calc(var(--nav-h) + 40px) 0 0;
  overflow: hidden;
}
.lc-hero__vid,
.lc-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.lc-hero__bg {
  background-size: cover;
  background-position: center;
}
.lc-hero__bg--default {
  background: var(--ink);
}
.lc-hero__ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,49,66,0.7) 0%, rgba(11,49,66,0.4) 100%);
  z-index: 1;
}
html.dark-mode .lc-hero__ov {
  background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 100%);
}
.lc-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 1;
}
.lc-hero__glare {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 70% 30%, rgba(232,160,48,0.08) 0%, transparent 60%);
  z-index: 1;
}
.lc-hero__content {
  position: relative;
  z-index: 2;
  color: var(--ivory);
  max-width: 720px;
  padding: 40px 0;
}
.lc-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.8;
}
.lc-hero__eyebrow-line {
  width: 40px;
  height: 2px;
  background: var(--gold);
}
.lc-hero__title {
  font-family: var(--f-h), serif;
  font-size: clamp(2.8rem, 10vw, 5.5rem);
  line-height: 1.1;
  margin-bottom: 16px;
  font-weight: 600;
}
.lc-hero__sub {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  opacity: 0.9;
  max-width: 560px;
  margin-bottom: 32px;
}
.lc-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.lc-hero__strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: color-mix(in srgb, var(--ink), transparent 30%);
  backdrop-filter: blur(8px);
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
html.dark-mode .lc-hero__strip {
  background: color-mix(in srgb, var(--dark-bg), transparent 40%);
}
.lc-hero__strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.lc-hero__stat {
  text-align: center;
  color: var(--ivory);
}
.lc-hero__stat-v {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}
.lc-hero__stat-l {
  font-size: 0.8rem;
  opacity: 0.7;
}

/* ============================================================
   ABOUT
   ============================================================ */
.lc-about {
  padding: 80px 0;
}
.lc-about__g {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.lc-about__media {
  position: relative;
}
.lc-about__img {
  border-radius: var(--r);
  box-shadow: var(--shadow-md);
}
.lc-about__img-ph {
  background: var(--border-color);
  padding: 60px 20px;
  text-align: center;
  border-radius: var(--r);
  color: var(--text-secondary);
}
.lc-about__corner {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 80px;
  height: 80px;
  border: 2px solid var(--gold);
  border-radius: var(--r);
  opacity: 0.3;
  z-index: -1;
}
.lc-about__copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lc-about__specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 16px 0;
}
.lc-spec {
  background: var(--bg-surface);
  padding: 16px;
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.lc-spec__v {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
}
.lc-spec__l {
  font-size: 0.8rem;
  opacity: 0.7;
}
.lc-about__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================================
   UNITS
   ============================================================ */
.lc-units {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.lc-units__wm {
  position: absolute;
  right: -5%;
  top: 10%;
  font-size: 20rem;
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  pointer-events: none;
  white-space: nowrap;
  transform: rotate(-8deg);
}
.lc-units__head {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.lc-units__g {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}
.lc-unit-card {
  background: color-mix(in srgb, var(--ivory), transparent 90%);
  border: 1px solid var(--border-color);
  border-radius: var(--r);
  padding: 24px;
  text-align: center;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  color: var(--ivory);
}
html.dark-mode .lc-unit-card {
  background: color-mix(in srgb, var(--dark-surface), transparent 50%);
}
.lc-unit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.lc-unit-card__ico {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  color: var(--gold);
}
.lc-unit-card__name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.lc-unit-card__spec {
  font-size: 0.85rem;
  opacity: 0.6;
}
.lc-unit-card__arrow {
  display: inline-block;
  margin-top: 12px;
  color: var(--gold);
  transition: transform 0.3s;
}
.lc-unit-card:hover .lc-unit-card__arrow {
  transform: translateX(6px);
}
.lc-units__footer {
  text-align: center;
}

/* ============================================================
   AMENITIES
   ============================================================ */
.lc-amen {
  padding: 80px 0;
}
.lc-amen__head {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.lc-amen__g {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 20px;
}
.lc-amen-item {
  background: var(--bg-surface);
  border-radius: var(--r);
  padding: 24px 12px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
  border: 1px solid transparent;
}
.lc-amen-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.lc-amen-item__ico {
  width: 32px;
  height: 32px;
  margin: 0 auto 8px;
  color: var(--gold);
}
.lc-amen-item__lbl {
  font-size: 0.85rem;
  font-weight: 500;
}

/* ============================================================
   MASTER PLAN
   ============================================================ */
.lc-mp {
  padding: 80px 0;
}
.lc-mp__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.lc-mp__main-img {
  margin-bottom: 40px;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.lc-mp__tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
}
.lc-mp-tab {
  padding: 10px 24px;
  border-radius: var(--r);
  background: color-mix(in srgb, var(--ivory), transparent 80%);
  color: var(--ivory);
  font-weight: 600;
  transition: 0.3s;
}
html.dark-mode .lc-mp-tab {
  background: color-mix(in srgb, var(--dark-surface), transparent 50%);
  color: var(--dark-text);
}
.lc-mp-tab.active {
  background: var(--gold);
  color: var(--ink);
}
.lc-mp-panel {
  display: none;
}
.lc-mp-panel.active {
  display: block;
}
.lc-mp-panel__g {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.lc-mp-panel__img img {
  border-radius: var(--r);
  box-shadow: var(--shadow-md);
}
.lc-mp-panel__ph {
  background: color-mix(in srgb, var(--ivory), transparent 90%);
  padding: 60px 20px;
  text-align: center;
  border-radius: var(--r);
}
.lc-mp-panel__name {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}
.lc-mp-panel__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}
.lc-tag {
  background: color-mix(in srgb, var(--gold), transparent 80%);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--gold);
}

/* ============================================================
   LOCATION
   ============================================================ */
.lc-loc {
  padding: 80px 0;
}
.lc-loc__g {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  margin-top: 40px;
}
.lc-loc__landmarks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lc-lm {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  background: var(--bg-surface);
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
}
.lc-lm__ico {
  font-size: 1.2rem;
}
.lc-lm__name {
  flex: 1;
}
.lc-lm__badge {
  font-size: 0.7rem;
  text-transform: uppercase;
  padding: 2px 10px;
  border-radius: 20px;
}
.lc-lm__badge--next {
  background: var(--gold);
  color: var(--ink);
}
.lc-lm__badge--near {
  background: var(--stone);
  color: var(--ivory);
}
.lc-loc__map iframe {
  width: 100%;
  height: 400px;
  border-radius: var(--r);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   PARTNERS
   ============================================================ */
.lc-pt {
  padding: 80px 0;
}
.lc-pt__g {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.lc-partner {
  background: var(--bg-surface);
  border-radius: var(--r);
  padding: 32px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: 0.3s;
}
.lc-partner:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.lc-partner__logo {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.lc-partner__logo img {
  max-height: 100%;
  object-fit: contain;
}
.lc-partner__logo-fb {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}
.lc-partner__name {
  font-weight: 600;
  margin-bottom: 4px;
}
.lc-partner__role {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* ============================================================
   BROCHURE BAND
   ============================================================ */
.lc-bband {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.lc-bband__glow {
  position: absolute;
  top: -50%;
  left: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(232,160,48,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.lc-bband__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.lc-bband__t {
  font-size: 1.8rem;
  font-weight: 700;
}
.lc-bband__s {
  opacity: 0.7;
}

/* ============================================================
   CONTACT
   ============================================================ */
.lc-contact {
  padding: 80px 0;
}
.lc-contact__g {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.lc-contact__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}
.lc-clink {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-surface);
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  transition: 0.3s;
}
.lc-clink:hover {
  box-shadow: var(--shadow-md);
}
.lc-clink__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.lc-clink__lbl {
  font-weight: 600;
  min-width: 80px;
}
.lc-clink__val {
  color: var(--text-secondary);
}

/* ============================================================
   FORM
   ============================================================ */
.lc-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lc-form__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.lc-form__field label {
  font-weight: 600;
  font-size: 0.9rem;
}
.lc-form__field input,
.lc-form__field select {
  padding: 12px 16px;
  border-radius: var(--r);
  border: 1px solid var(--border-color);
  background: var(--bg-surface);
  color: var(--text-primary);
  transition: border 0.3s;
}
.lc-form__field input:focus,
.lc-form__field select:focus {
  border-color: var(--gold);
  outline: none;
}
.lc-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.lc-form__submit {
  margin-top: 8px;
}
.lc-form__ok {
  text-align: center;
  padding: 40px 20px;
  background: var(--bg-surface);
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
}
.lc-form__ok-ring {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

/* ============================================================
   FLOATING CTA BAR
   ============================================================ */
.lc-float {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: color-mix(in srgb, var(--bg-body), transparent 20%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-color);
  padding: 8px 0;
  transition: transform 0.3s var(--ease), background 0.3s;
}
.lc-float--compact {
  transform: translateY(calc(100% - 48px));
}
.lc-float--compact .lc-float__left {
  opacity: 0;
  pointer-events: none;
}
.lc-float__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.lc-float__left {
  display: flex;
  align-items: center;
  gap: 16px;
  transition: opacity 0.3s;
}
.lc-float__pulse {
  width: 12px;
  height: 12px;
  background: #e74c3c;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}
.lc-float__pre {
  font-weight: 700;
  color: var(--gold);
}
.lc-float__addr {
  font-size: 0.8rem;
  opacity: 0.7;
}
.lc-float__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lc-float__action {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--r);
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  transition: 0.3s;
  color: var(--text-primary);
}
.lc-float__action:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}
.lc-float__action-lbl {
  font-size: 0.8rem;
}
.lc-float__cta {
  padding: 8px 20px;
  font-size: 0.9rem;
}

/* ============================================================
   SCROLL TOP
   ============================================================ */
.lc-scroll-top {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 997;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  border: none;
}
.lc-scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.lc-scroll-top:hover {
  transform: translateY(-4px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
  .lc-nav__links {
    display: none;
  }
  .lc-nav__burger {
    display: flex;
  }
  .lc-about__g,
  .lc-mp-panel__g,
  .lc-contact__g {
    grid-template-columns: 1fr;
  }
  .lc-loc__g {
    grid-template-columns: 1fr;
  }
  .lc-units__head,
  .lc-amen__head {
    grid-template-columns: 1fr;
  }
  .lc-hero__strip-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .lc-float__left {
    display: none;
  }
  .lc-float__actions {
    width: 100%;
    justify-content: space-around;
  }
  .lc-float__action span {
    display: none;
  }
  .lc-float__cta {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
  .lc-about__specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .lc-form__row {
    grid-template-columns: 1fr;
  }
  .lc-mp__head {
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .lc-hero__title {
    font-size: 2.2rem;
  }
  .lc-hero__ctas .btn {
    width: 100%;
    justify-content: center;
  }
  .lc-amen__g {
    grid-template-columns: repeat(2, 1fr);
  }
  .lc-float__cta {
    font-size: 0.7rem;
    padding: 6px 12px;
  }
}

/* ============================================================
   SCROLL ANIMATIONS (rv)
   ============================================================ */
.rv {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.rv.visible {
  opacity: 1;
  transform: translateY(0);
}
.rv.d1 { transition-delay: 0.1s; }
.rv.d2 { transition-delay: 0.2s; }
.rv.d3 { transition-delay: 0.3s; }
.rv.d4 { transition-delay: 0.4s; }