/* =========================================================================
   LOCATION MASTER TEMPLATE (PIXEL PERFECT FIX)
   ========================================================================= */

:root {
  --lm-gold: #C5A46D;
  --lm-gold-light: rgba(197, 164, 109, 0.15);
  --lm-dark: #121212;
  --lm-dark-alt: #1A1A1A;
  --lm-text-light: #F9F9F9;
  --lm-text-dark: #222222;
  --lm-text-muted: #555555;
  --lm-bg-light: #FFFFFF;
  --lm-bg-alt: #FAFAFA;
  
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Jost', sans-serif;
}

/* OVERRIDES FOR GLOBAL INTERFERENCE */
main#main-content {
    background-color: var(--lm-bg-light);
    color: var(--lm-text-dark);
}

.lm-hero {
  position: relative;
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-color: var(--lm-dark);
  overflow: hidden;
  padding-top: 80px;
}
.lm-hero__bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 1;
}
.lm-hero__overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(90deg, rgba(18,18,18,0.95) 0%, rgba(18,18,18,0.7) 40%, rgba(18,18,18,0.2) 100%);
  z-index: 2;
}
.lm-hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.lm-hero__overline {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lm-gold);
  display: block;
  margin-bottom: 1rem;
}
.lm-hero__heading {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--lm-text-light);
}
.lm-hero__heading em {
  font-style: italic;
  color: var(--lm-gold);
}
.lm-hero__sub {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 2.5rem;
  color: rgba(255,255,255,0.8);
}
.lm-hero__actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

/* BUTTONS */
.lm-btn {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.lm-btn--primary {
  background-color: var(--lm-gold);
  color: var(--lm-dark) !important;
  font-weight: 500;
}
.lm-btn--primary:hover {
  background-color: #d1b482;
  color: var(--lm-dark) !important;
}
.lm-btn--outline {
  border: 1px solid var(--lm-text-light);
  color: var(--lm-text-light) !important;
}
.lm-btn--outline:hover {
  background-color: rgba(255,255,255,0.1);
}

/* TRUST BAR */
.lm-trust-bar {
  background-color: var(--lm-dark-alt);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
  z-index: 5;
}
.lm-trust-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.5rem 2rem 4rem; /* Extra bottom padding for floating quick info */
}
.lm-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  flex: 1;
}
.lm-trust-item__icon {
  color: var(--lm-gold);
  margin-bottom: 0.5rem;
}
.lm-trust-item__title {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--lm-text-light);
  margin: 0;
}
.lm-trust-item__sub {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

/* QUICK INFO (FLOATING) */
.lm-quick-info {
  background-color: var(--lm-bg-light);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  max-width: 1000px;
  margin: -3rem auto 4rem; /* Floats over trust bar */
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border: 1px solid rgba(197, 164, 109, 0.2);
}
.lm-quick-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.lm-quick-item__icon {
  color: var(--lm-gold);
}
.lm-quick-item__text {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--lm-text-dark);
  line-height: 1.3;
}
.lm-quick-item__text span {
  font-size: 0.75rem;
  color: var(--lm-text-muted);
  font-weight: 400;
}

/* SECTIONS */
.lm-section {
  padding: 6rem 0;
  background-color: var(--lm-bg-light);
}
.lm-section--alt {
  background-color: var(--lm-bg-alt);
}
.lm-section--dark {
  background-color: var(--lm-dark);
  color: var(--lm-text-light);
}
.lm-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.lm-header {
  text-align: center;
  margin-bottom: 4rem;
}
.lm-header--left {
  text-align: left;
}
.lm-overline {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lm-gold);
  display: block;
  margin-bottom: 1rem;
}
.lm-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--lm-text-dark);
  margin: 0;
}
.lm-section--dark .lm-heading {
  color: var(--lm-text-light);
}
.lm-heading em {
  font-style: italic;
  color: var(--lm-gold);
}
p.lm-desc {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--lm-text-muted);
  margin-bottom: 1.5rem;
}

/* SPLIT LAYOUT (ABOUT & TRENDS) */
.lm-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.lm-image-wrapper {
  position: relative;
}
.lm-image-wrapper img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* EXPERTISE / WHY CHOOSE CARDS */
.lm-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.lm-card {
  background-color: var(--lm-bg-light);
  border: 1px solid rgba(197, 164, 109, 0.2);
  padding: 3rem 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lm-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
  border-color: var(--lm-gold);
}
.lm-card__icon {
  color: var(--lm-gold);
  margin-bottom: 1.5rem;
}
.lm-card__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--lm-text-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}
.lm-card__desc {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--lm-text-muted);
  margin: 0;
}

/* TRENDS LIST */
.lm-trends-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}
.lm-trends-list li {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  color: var(--lm-text-dark);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.lm-trends-list li svg {
  color: var(--lm-gold);
  flex-shrink: 0;
}
.lm-quote-box {
  background-color: var(--lm-bg-alt);
  padding: 2.5rem;
  border-left: 3px solid var(--lm-gold);
  position: relative;
  margin-top: 2rem;
}
.lm-quote-box p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--lm-text-dark);
  margin: 0;
}

/* CHIPS */
.lm-chip-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.lm-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.8rem;
  border: 1px solid rgba(197, 164, 109, 0.4);
  border-radius: 6px;
  background-color: #ffffff;
  color: #333333;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}
.lm-chip svg { color: var(--lm-gold); transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.lm-chip:hover {
  border-color: var(--lm-gold);
  background-color: #ffffff;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(197, 164, 109, 0.1);
}
.lm-chip:hover svg { transform: scale(1.1); }

/* RELATED STRIP */
.lm-related-bar {
  background-color: var(--lm-dark);
  padding: 5rem 0;
  color: var(--lm-text-light);
}
.lm-related-bar__inner {
  display: flex;
  gap: 4rem;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}
.lm-related-header {
  flex: 0 0 300px;
}
.lm-related-header h3 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  margin: 0.5rem 0 0 0;
  color: var(--lm-text-light);
  line-height: 1.2;
}
.lm-related-cards {
  display: flex;
  gap: 1.5rem;
  flex: 1;
  overflow-x: auto;
  padding-bottom: 1rem;
}
.lm-related-cards::-webkit-scrollbar { height: 4px; }
.lm-related-cards::-webkit-scrollbar-thumb { background: var(--lm-gold); border-radius: 4px; }
.lm-related-card {
  flex: 0 0 220px;
  text-decoration: none;
  color: var(--lm-text-light);
  display: block;
}
.lm-related-card img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}
.lm-related-card:hover img {
  transform: scale(1.03);
}
.lm-related-card h4 {
  font-family: var(--font-sans);
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  color: var(--lm-text-light);
}

/* EDITORIAL SECTION */
.lm-editorial {
  max-width: 850px;
  margin: 0 auto;
}
.lm-editorial-prose {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--lm-text-muted);
  margin-bottom: 2rem;
}
.lm-editorial-prose--dropcap::first-letter {
  font-family: var(--font-serif);
  font-size: 5rem;
  float: left;
  line-height: 0.8;
  padding-right: 1rem;
  color: var(--lm-gold);
}
.lm-editorial-image {
  margin: 3rem 0;
}
.lm-editorial-image img {
  width: 100%;
  height: auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.lm-checklist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}
.lm-checklist-grid .lm-card {
  padding: 2.5rem 1.5rem;
  background-color: var(--lm-bg-light);
  border: 1px solid rgba(197, 164, 109, 0.2);
}
.lm-checklist-grid .lm-card__title {
  font-family: var(--font-sans);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* FAQ SECTION */
.lm-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.lm-faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding: 1.5rem 0;
}
.lm-faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--lm-text-light);
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 500;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 0;
}
.lm-faq-question span:first-child {
  padding-right: 2rem;
}
.lm-faq-icon {
  color: var(--lm-gold);
  font-size: 1.5rem;
}
.lm-faq-answer {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  padding-top: 1rem;
  display: none;
}

/* FINAL CTA */
.lm-final-cta {
  background-color: var(--lm-dark);
  color: var(--lm-text-light);
}
.lm-cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 600px;
}
.lm-cta-content {
  padding: 6rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lm-cta-image {
  position: relative;
  width: 100%;
  height: 100%;
}
.lm-cta-image img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.lm-cta-image::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(90deg, var(--lm-dark) 0%, rgba(18,18,18,0.2) 100%);
}
.lm-cta-features {
  position: absolute;
  right: 3rem;
  bottom: 3rem;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 2;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.lm-cta-features li {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  letter-spacing: 1px;
  color: var(--lm-text-light);
}
.lm-cta-features li svg {
  color: var(--lm-gold);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .lm-split { grid-template-columns: 1fr; gap: 3rem; }
  .lm-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .lm-checklist-grid { grid-template-columns: repeat(2, 1fr); }
  .lm-faq-grid { grid-template-columns: 1fr; gap: 0; }
  .lm-related-bar__inner { flex-direction: column; align-items: flex-start; }
  .lm-cta-split { grid-template-columns: 1fr; }
  .lm-cta-image { min-height: 400px; }
}
@media (max-width: 768px) {
  .lm-quick-info { flex-direction: column; align-items: flex-start; gap: 0.75rem; margin-top: 1rem; }
  .lm-trust-bar__inner { flex-direction: column; gap: 2rem; padding-bottom: 2rem; }
  .lm-grid-4 { grid-template-columns: 1fr; }
  .lm-checklist-grid { grid-template-columns: 1fr; }
}

/* FAQ Accordion Logic */
.lm-faq-item.is-open .lm-faq-answer { display: block; animation: luxFadeIn 0.3s ease; }
.lm-faq-icon { transition: transform 0.3s ease; }
.lm-faq-item.is-open .lm-faq-icon { transform: rotate(45deg); }
