/* ═══════════════════════════════════════════════════════════
   LUXURY MEMORY — Main Stylesheet
   Black & Gold | Romantic | Elegant
   ═══════════════════════════════════════════════════════════ */

:root {
  --lm-black:       #080808;
  --lm-black-soft:  #111111;
  --lm-black-card:  #161616;
  --lm-gold:        #C9A96E;
  --lm-gold-light:  #E8D5A3;
  --lm-gold-dark:   #9A7A42;
  --lm-white:       #F5F0E8;
  --lm-gray:        #888;
  --lm-border:      rgba(201,169,110,0.15);
  --transition:     0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}

/* ─── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--lm-black);
  color: var(--lm-white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
  cursor: none;
}

body.mobile { cursor: auto; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── Custom Cursor ──────────────────────────────────────────── */
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--lm-gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 99999;
  transform: translate(-50%,-50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid var(--lm-gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 99998;
  transform: translate(-50%,-50%);
  transition: width 0.3s, height 0.3s, border-color 0.2s;
}
body.cursor-hover .cursor-dot  { width: 4px; height: 4px; opacity: 0; }
body.cursor-hover .cursor-ring { width: 56px; height: 56px; border-width: 2px; }

/* ─── Page Transition ────────────────────────────────────────── */
.page-transition {
  position: fixed; inset: 0;
  background: var(--lm-black);
  z-index: 99990;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.page-transition.active { opacity: 1; pointer-events: all; }

/* ─── Container ──────────────────────────────────────────────── */
.lm-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ─── Typography ─────────────────────────────────────────────── */
.lm-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--lm-white);
}
.lm-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.15;
  color: var(--lm-white);
  margin-bottom: 1.5rem;
}
.lm-h2--italic { font-style: italic; font-weight: 300; }

.lm-script {
  font-family: 'Great Vibes', cursive;
  color: var(--lm-gold);
  display: block;
}
.lm-script--sm { font-size: 1.6rem; margin-bottom: 0.5rem; }

.lm-p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(245,240,232,0.8);
  margin-bottom: 1.5rem;
}
.lm-p--wide { max-width: 680px; margin-left: auto; margin-right: auto; }

.lm-gold { color: var(--lm-gold); }
.lm-text-center { text-align: center; }

/* ─── Gold Line ──────────────────────────────────────────────── */
.lm-gold-line {
  width: 80px; height: 1px;
  background: var(--lm-gold);
  margin: 0 auto 1.5rem;
  opacity: 0.6;
  transform-origin: left;
}

/* ─── Buttons ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--lm-gold);
  color: var(--lm-black);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border: 1px solid var(--lm-gold);
  border-radius: 0;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary:hover {
  background: transparent;
  color: var(--lm-gold);
}
.btn-primary--lg { padding: 1.2rem 3rem; font-size: 0.82rem; }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--lm-gold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border: 1px solid var(--lm-gold);
  border-radius: 0;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.btn-ghost:hover { background: var(--lm-gold); color: var(--lm-black); }
.btn-ghost--sm { padding: 0.7rem 1.5rem; font-size: 0.72rem; }

/* ─── Sections ───────────────────────────────────────────────── */
.lm-section {
  padding: 8rem 0;
}
.lm-section--alt { background: var(--lm-black-soft); }
.lm-section__head { margin-bottom: 4rem; }

/* ─── Header / Navbar ────────────────────────────────────────── */
.lm-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: background var(--transition), padding var(--transition), border-bottom var(--transition);
  border-bottom: 1px solid transparent;
}
.lm-header.scrolled {
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(12px);
  padding: 1rem 0;
  border-bottom-color: rgba(201,169,110,0.2);
}
.lm-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.lm-logo img { height: 48px; width: auto; object-fit: contain; }

.lm-nav__list {
  display: flex; gap: 2.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.lm-nav__list a {
  position: relative;
  color: var(--lm-white);
  transition: color 0.2s;
  padding-bottom: 3px;
}
.lm-nav__list a::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--lm-gold);
  transition: width 0.3s ease;
}
.lm-nav__list a:hover { color: var(--lm-gold); }
.lm-nav__list a:hover::after { width: 100%; }

.lm-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.lm-hamburger span {
  display: block;
  width: 26px; height: 1px;
  background: var(--lm-gold);
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile Menu */
.lm-mobile-menu {
  position: fixed; inset: 0;
  background: var(--lm-black);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.lm-mobile-menu.open { opacity: 1; pointer-events: all; }
.lm-mobile-menu__close {
  position: absolute; top: 2rem; right: 2rem;
  background: none; border: none;
  color: var(--lm-gold); font-size: 1.5rem; cursor: pointer;
}
.lm-mobile-menu__nav {
  display: flex; flex-direction: column; align-items: center; gap: 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 300; color: var(--lm-white);
}
.lm-mobile-menu__nav a { transition: color 0.2s; }
.lm-mobile-menu__nav a:hover { color: var(--lm-gold); }

/* ─── Hero ───────────────────────────────────────────────────── */
.lm-hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  text-align: center;
}
.lm-hero__canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 2;
}
.lm-hero__bg {
  position: absolute; inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  z-index: 0;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.lm-hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.75) 100%);
}
.lm-hero__content {
  position: relative; z-index: 3;
  max-width: 800px; padding: 0 2rem;
}
.lm-hero__label {
  font-family: 'Great Vibes', cursive;
  color: var(--lm-gold);
  font-size: 1.6rem;
  display: block;
  margin-bottom: 1rem;
  opacity: 0;
}
.lm-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.08;
  color: var(--lm-white);
  margin-bottom: 1.5rem;
  opacity: 0;
}
.lm-hero__title em {
  font-style: italic;
  color: var(--lm-gold);
  display: block;
}
.lm-hero__sub {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 1.05rem;
  color: rgba(245,240,232,0.85);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
  opacity: 0;
}
.lm-hero__btns {
  display: flex; gap: 1rem;
  justify-content: center; flex-wrap: wrap;
  opacity: 0;
  margin-bottom: 3rem;
}
.lm-hero__scroll {
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  opacity: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--lm-gold);
  text-transform: uppercase;
  animation: pulseScroll 2.5s ease-in-out infinite 2s;
}
.lm-hero__scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, transparent, var(--lm-gold));
}
@keyframes pulseScroll {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; }
}

/* ─── Positioning / Stats ────────────────────────────────────── */
.lm-positioning { background: var(--lm-black-soft); }
.lm-stats {
  display: flex; justify-content: center; gap: 5rem;
  margin: 3.5rem 0;
  flex-wrap: wrap;
}
.lm-stat { text-align: center; }
.lm-stat__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem; font-weight: 700;
  color: var(--lm-gold);
  line-height: 1;
  display: inline;
}
.lm-stat__plus {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; color: var(--lm-gold); font-weight: 700;
}
.lm-stat__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5);
  margin-top: 0.5rem;
}

/* ─── Cards ──────────────────────────────────────────────────── */
.lm-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
}
.lm-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--lm-black-card);
  cursor: pointer;
}
.lm-card__img {
  position: absolute; inset: 0;
  background: center/cover no-repeat var(--lm-black-card);
  transition: transform 0.8s ease;
}
.lm-card:hover .lm-card__img { transform: scale(1.06); }
.lm-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
  transition: background 0.4s ease;
}
.lm-card:hover .lm-card__overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.97) 0%, rgba(0,0,0,0.5) 100%);
}
.lm-card__content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2.5rem 2rem;
  z-index: 2;
}
.lm-card__icon { margin-bottom: 1rem; }
.lm-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 600;
  color: var(--lm-white);
  margin-bottom: 0.75rem;
}
.lm-card__text {
  font-size: 0.88rem; font-weight: 300;
  color: rgba(245,240,232,0.75);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.4s ease;
  opacity: 0;
}
.lm-card:hover .lm-card__text { max-height: 200px; opacity: 1; }

/* ─── Steps ──────────────────────────────────────────────────── */
.lm-how { background: var(--lm-black); }
.lm-steps {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0;
  position: relative;
  margin-top: 4rem;
}
.lm-step {
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  border: 1px solid var(--lm-border);
}
.lm-step__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem; font-weight: 300;
  color: var(--lm-gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1rem;
}
.lm-step__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 600;
  color: var(--lm-white);
  margin-bottom: 1rem;
}
.lm-step__text { font-size: 0.9rem; color: rgba(245,240,232,0.7); }

/* ─── Gallery Preview ────────────────────────────────────────── */
.lm-gallery-preview { background: var(--lm-black-soft); }
.lm-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 3px;
}
.lm-gallery-item { position: relative; overflow: hidden; aspect-ratio: 3/4; }
.lm-gallery-item:first-child { grid-row: span 2; aspect-ratio: unset; }
.lm-gallery-item__img {
  width: 100%; height: 100%;
  background: center/cover no-repeat var(--lm-black-card);
  transition: transform 0.6s ease;
}
.lm-gallery-item:hover .lm-gallery-item__img { transform: scale(1.05); }
.lm-gallery-item__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.4s ease;
}
.lm-gallery-item:hover .lm-gallery-item__overlay { opacity: 1; }
.lm-gallery-item__plus {
  font-size: 2.5rem; color: var(--lm-gold); font-weight: 300;
  line-height: 1; margin-bottom: 0.5rem;
}
.lm-gallery-item__type {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--lm-gold-light);
}
.lm-gallery-item__placeholder {
  width: 100%; height: 100%;
  background: var(--lm-black-card);
  border: 1px solid var(--lm-border);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  min-height: 200px;
}

/* ─── Beach Teaser ───────────────────────────────────────────── */
.lm-beach-teaser {
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
}
.lm-beach-teaser__bg {
  position: absolute; inset: 0;
  background: url('../images/beach-bg.jpg') center/cover no-repeat;
  z-index: 0;
}
.lm-beach-teaser__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 100%);
}

/* ─── Badge ──────────────────────────────────────────────────── */
.lm-badge {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--lm-black);
  background: var(--lm-gold);
  padding: 0.4rem 1.2rem;
  font-weight: 600;
}
.lm-badge-sm {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lm-gold);
  border: 1px solid var(--lm-gold);
  padding: 0.3rem 1rem;
  margin-bottom: 1.5rem;
}

/* ─── Waitlist Form ──────────────────────────────────────────── */
.lm-waitlist-form { max-width: 680px; margin: 2.5rem auto 0; }
.lm-waitlist-form__fields {
  display: flex; gap: 0.75rem; flex-wrap: wrap;
  justify-content: center;
}
.lm-waitlist-form--lg .lm-waitlist-form__fields--lg {
  flex-direction: column; align-items: center; max-width: 480px; margin: 0 auto;
}
.lm-input {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,169,110,0.3);
  color: var(--lm-white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  padding: 0.9rem 1.3rem;
  outline: none;
  transition: border-color 0.3s;
  border-radius: 0;
  flex: 1;
  min-width: 200px;
}
.lm-input:focus { border-color: var(--lm-gold); }
.lm-input::placeholder { color: rgba(245,240,232,0.4); }
.lm-textarea { width: 100%; min-height: 140px; resize: vertical; margin-bottom: 1rem; }
.lm-waitlist-success {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-style: italic;
  color: var(--lm-gold);
  text-align: center;
  padding: 2rem;
}
.lm-waitlist-note {
  font-size: 0.75rem;
  color: rgba(201,169,110,0.6);
  margin-top: 1rem;
  text-align: center;
  font-weight: 300;
  letter-spacing: 0.05em;
}
.lm-form-error { color: #ff6b6b; font-size: 0.88rem; text-align: center; }

/* ─── Testimonials ───────────────────────────────────────────── */
.lm-testimonials { background: var(--lm-black-soft); }
.lm-testimonials__track { overflow: hidden; position: relative; margin-top: 3rem; }
.lm-testimonials__inner {
  display: flex; gap: 1.5rem;
  transition: transform 0.5s ease;
}
.lm-testimonial-card {
  min-width: 380px;
  background: var(--lm-black-card);
  border-left: 3px solid var(--lm-gold);
  padding: 2.5rem;
  flex-shrink: 0;
}
.lm-testimonial-card__stars { color: var(--lm-gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 1.25rem; }
.lm-testimonial-card__quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--lm-white);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.lm-testimonial-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600; font-size: 1.1rem; color: var(--lm-gold);
}
.lm-testimonial-card__type {
  font-size: 0.72rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(245,240,232,0.5);
  margin-top: 0.25rem;
}
.lm-testimonials__dots {
  display: flex; justify-content: center; gap: 0.5rem;
  margin-top: 2rem;
}
.lm-testimonials__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(201,169,110,0.3);
  cursor: pointer; transition: background 0.3s;
  border: none;
}
.lm-testimonials__dot.active { background: var(--lm-gold); }

/* ─── Final CTA ──────────────────────────────────────────────── */
.lm-cta-final { background: var(--lm-black); }
.lm-cta-box {
  max-width: 820px; margin: 0 auto;
  border: 1px solid rgba(201,169,110,0.2);
  padding: 5rem 4rem;
  text-align: center;
}

/* ─── FAQ ────────────────────────────────────────────────────── */
.lm-faq { background: var(--lm-black-soft); }
.lm-faq-item {
  border-bottom: 1px solid var(--lm-border);
  max-width: 860px; margin: 0 auto;
}
.lm-faq-item__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  background: none; border: none; color: var(--lm-white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 400;
  padding: 1.75rem 0;
  cursor: pointer; text-align: left; gap: 1rem;
  transition: color 0.2s;
}
.lm-faq-item__q:hover { color: var(--lm-gold); }
.lm-faq-item__chevron { flex-shrink: 0; transition: transform 0.3s ease; }
.lm-faq-item.open .lm-faq-item__chevron { transform: rotate(180deg); }
.lm-faq-item__a {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
}
.lm-faq-item__a p {
  padding-bottom: 1.75rem;
  font-size: 0.92rem; font-weight: 300;
  color: rgba(245,240,232,0.7);
  line-height: 1.8;
}

/* ─── Page Hero ──────────────────────────────────────────────── */
.lm-page-hero {
  position: relative;
  min-height: 55vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.5)), url('../images/hero-bg.jpg') center/cover no-repeat;
  padding-top: 6rem;
}
.lm-page-hero--short { min-height: 40vh; }
.lm-page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.4));
}
.lm-breadcrumb {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.15em;
  color: var(--lm-gold); text-transform: uppercase;
  margin-bottom: 1rem;
}
.lm-breadcrumb a { color: rgba(245,240,232,0.6); }

/* ─── Alt Section (experiences, about) ─────────────────────── */
.lm-alt-section { padding: 6rem 0; }
.lm-alt-section--dark { background: var(--lm-black-soft); }
.lm-alt-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.lm-alt-section__grid--imgright { direction: ltr; }
.lm-alt-section__img {
  aspect-ratio: 4/5;
  background: center/cover no-repeat var(--lm-black-card);
  min-height: 500px;
}
.lm-alt-section__content { padding: 2rem 0; }
.lm-features { margin: 1.5rem 0 2rem; }
.lm-features li {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem; font-weight: 300;
  color: rgba(245,240,232,0.8);
  padding: 0.5rem 0;
  letter-spacing: 0.02em;
}

/* ─── Beach Hero ─────────────────────────────────────────────── */
.lm-beach-hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: url('../images/beach-bg.jpg') center/cover no-repeat;
  padding-top: 6rem;
}
.lm-beach-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.55) 100%);
}

/* ─── Beach Waitlist section ─────────────────────────────────── */
.lm-beach-waitlist {
  background: var(--lm-black-soft);
  padding: 8rem 0;
}

/* ─── Feature Cards ──────────────────────────────────────────── */
.lm-feature-card {
  background: var(--lm-black-card);
  border: 1px solid var(--lm-border);
  padding: 3rem 2rem; text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.lm-feature-card:hover {
  border-color: rgba(201,169,110,0.5);
  transform: translateY(-4px);
}
.lm-feature-card__icon { font-size: 2.5rem; margin-bottom: 1.25rem; }
.lm-feature-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 600; color: var(--lm-white);
  margin-bottom: 0.75rem;
}
.lm-feature-card__text { font-size: 0.9rem; color: rgba(245,240,232,0.7); }

/* ─── Gallery Full ───────────────────────────────────────────── */
.lm-filter-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 2.5rem; justify-content: center; }
.lm-filter-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.6rem 1.4rem; border: 1px solid rgba(201,169,110,0.4);
  background: none; color: var(--lm-gold); cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.lm-filter-btn.active,
.lm-filter-btn:hover { background: var(--lm-gold); color: var(--lm-black); }

.lm-gallery-full {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 3px;
}
.lm-gallery-full__item { position: relative; overflow: hidden; aspect-ratio: 3/4; }
.lm-gallery-full__img { width: 100%; height: 100%; background: center/cover no-repeat var(--lm-black-card); transition: transform 0.6s; }
.lm-gallery-full__item:hover .lm-gallery-full__img { transform: scale(1.05); }
.lm-gallery-full__overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.6);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.4s;
}
.lm-gallery-full__item:hover .lm-gallery-full__overlay { opacity: 1; }
.lm-gallery-full__placeholder {
  width: 100%; height: 100%; background: var(--lm-black-card);
  border: 1px solid var(--lm-border);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}

/* ─── Contact ────────────────────────────────────────────────── */
.lm-contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
}
.lm-contact-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; color: var(--lm-gold);
  margin-top: 1rem;
}
.lm-contact-card {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--lm-black-card);
  border: 1px solid var(--lm-border);
  margin-bottom: 0.75rem;
  transition: border-color 0.3s;
}
.lm-contact-card:hover { border-color: rgba(201,169,110,0.4); }
.lm-contact-card__icon { font-size: 1.25rem; flex-shrink: 0; }
.lm-contact-card__label {
  font-size: 0.7rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(245,240,232,0.5);
  margin-bottom: 0.25rem;
}
.lm-contact-card__value { font-size: 0.95rem; color: var(--lm-white); transition: color 0.2s; }
.lm-contact-card a.lm-contact-card__value:hover { color: var(--lm-gold); }
.lm-contact-form .lm-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 0.75rem; }

/* ─── Footer ─────────────────────────────────────────────────── */
.lm-footer { background: var(--lm-black); border-top: 1px solid var(--lm-border); }
.lm-footer__body { padding: 5rem 2rem 4rem; }
.lm-footer__logo { text-align: center; margin-bottom: 4rem; }
.lm-footer__logo img { margin: 0 auto; }
.lm-footer__cols {
  display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 4rem;
}
.lm-footer__tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 300; color: var(--lm-gold);
  line-height: 1.4; margin-bottom: 1rem;
}
.lm-footer__desc { font-size: 0.85rem; color: rgba(245,240,232,0.5); line-height: 1.8; }
.lm-footer__col-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--lm-gold);
  margin-bottom: 1.5rem; font-weight: 500;
}
.lm-footer__links li { margin-bottom: 0.6rem; }
.lm-footer__links a, .lm-footer__contact li {
  font-size: 0.87rem; color: rgba(245,240,232,0.55);
  transition: color 0.2s;
}
.lm-footer__links a:hover { color: var(--lm-gold); }
.lm-footer__contact li { margin-bottom: 0.75rem; }
.lm-footer__contact a { color: rgba(245,240,232,0.55); transition: color 0.2s; }
.lm-footer__contact a:hover { color: var(--lm-gold); }
.lm-footer__social { display: flex; gap: 1rem; margin-top: 1.5rem; }
.lm-footer__social a {
  color: rgba(201,169,110,0.6);
  transition: color 0.2s;
}
.lm-footer__social a:hover { color: var(--lm-gold); }
.lm-footer__bottom {
  border-top: 1px solid var(--lm-border);
  padding: 1.5rem 2rem;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(245,240,232,0.35);
  letter-spacing: 0.05em;
}

/* ─── Reveal animations (initial state) ─────────────────────── */
.lm-reveal { opacity: 0; transform: translateY(30px); }
.lm-reveal.visible { opacity: 1; transform: translateY(0); transition: opacity 0.8s ease, transform 0.8s ease; }
.lm-stagger { opacity: 0; transform: translateY(20px); }
.lm-stagger.visible { opacity: 1; transform: translateY(0); }

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1023px) {
  .lm-nav { display: none; }
  .lm-header__cta { display: none; }
  .lm-hamburger { display: flex; }

  .lm-cards, .lm-steps { grid-template-columns: 1fr; }
  .lm-gallery-grid { grid-template-columns: repeat(2,1fr); }
  .lm-gallery-item:first-child { grid-row: auto; aspect-ratio: 3/4; }
  .lm-alt-section__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .lm-alt-section__img { min-height: 300px; order: -1; }
  .lm-alt-section__grid--imgright .lm-alt-section__img { order: -1; }
  .lm-footer__cols { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .lm-contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .lm-stats { gap: 2.5rem; }
  .lm-cta-box { padding: 3rem 2rem; }
  .lm-gallery-full { grid-template-columns: repeat(2,1fr); }
  .lm-section { padding: 5rem 0; }
}

@media (max-width: 767px) {
  .lm-section { padding: 4rem 0; }
  .lm-stats { flex-direction: column; gap: 2rem; }
  .lm-gallery-grid { grid-template-columns: 1fr; }
  .lm-gallery-full { grid-template-columns: 1fr; }
  .lm-footer__cols { grid-template-columns: 1fr; gap: 2rem; }
  .lm-waitlist-form__fields { flex-direction: column; }
  .lm-input { min-width: 100%; }
  .lm-contact-form .lm-form-row { grid-template-columns: 1fr; }
  .lm-testimonial-card { min-width: 280px; }
  .lm-hero__btns { flex-direction: column; align-items: center; }
}
