:root {
  color-scheme: light;
  --lm-body-bg: #f8f9fa;
  --lm-surface-bg: #ffffff;
  --lm-surface-solid: #ffffff;
  --lm-muted-bg: #f1f3f4;
  --lm-border: #dadce0;
  --lm-text: #202124;
  --lm-text-muted: #5f6368;
  --lm-accent: #2563eb;
  --lm-shadow-1: 0 1px 2px rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
  --lm-shadow-2: 0 1px 3px rgba(60, 64, 67, 0.3), 0 4px 8px 3px rgba(60, 64, 67, 0.15);
  --lm-radius-sm: 8px;
  --lm-radius-md: 12px;
  --lm-radius-lg: 16px;
}

[data-theme="dark"] {
  color-scheme: dark;
  --lm-body-bg: #1a1b1e;
  --lm-surface-bg: #292a2d;
  --lm-surface-solid: #292a2d;
  --lm-muted-bg: #3c4043;
  --lm-border: #5f6368;
  --lm-text: #e8eaed;
  --lm-text-muted: #9aa0a6;
  --lm-accent: #8ab4f8;
  --lm-shadow-1: 0 1px 2px rgba(0, 0, 0, 0.6), 0 1px 3px 1px rgba(0, 0, 0, 0.3);
  --lm-shadow-2: 0 1px 3px rgba(0, 0, 0, 0.6), 0 4px 8px 3px rgba(0, 0, 0, 0.3);
}

html {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  background: var(--lm-body-bg);
  color: var(--lm-text);
  transition: background 200ms ease, color 200ms ease;
}

.lm-body {
  font-family: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.is-hidden {
  display: none;
}

.lm-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.lm-header {
  position: sticky;
  top: 0;
  z-index: 40;
  width: 100%;
  border-bottom: 1px solid var(--lm-border);
  background: var(--lm-surface-solid);
}

.lm-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}

.lm-logo img {
  max-height: 36px;
  width: auto;
  display: block;
}

.lm-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.lm-nav-panel {
  display: none;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid var(--lm-border);
  padding: 0 1rem 1rem;
  width: 100%;
}

.lm-nav-panel.is-open {
  display: flex;
}

.lm-header__search {
  flex: 1 1 auto;
  min-width: 140px;
  max-width: 420px;
}

.lm-button--icon {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  padding: 0.25rem 0.45rem;
}

.lm-hamburger {
  border: 1px solid var(--lm-border);
  border-radius: var(--lm-radius-sm);
  padding: 0.4rem 0.7rem;
  background: var(--lm-muted-bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 150ms ease;
}

.lm-hamburger:active {
  transform: scale(0.97);
}

.lm-icon {
  width: 18px;
  height: 18px;
}

.lm-nav-link {
  color: var(--lm-text-muted);
  text-decoration: none;
}

.lm-nav-link:hover {
  color: var(--lm-text);
}

.lm-main {
  flex: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.lm-footer {
  border-top: 1px solid var(--lm-border);
}

.lm-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.9rem;
}

.lm-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (min-width: 640px) {
  .lm-footer__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.lm-card {
  background: var(--lm-surface-solid);
  border-radius: var(--lm-radius-md);
  border: 1px solid var(--lm-border);
  transition: box-shadow 200ms ease, border-color 200ms ease;
}

a.lm-card:hover {
  box-shadow: var(--lm-shadow-1);
  border-color: transparent;
}

.lm-card--elevated {
  box-shadow: var(--lm-shadow-1);
  border-color: transparent;
}

.lm-card--padded {
  padding: 1.5rem;
}

.lm-card--padded-lg {
  padding: 2rem;
}

.lm-card--padded-sm {
  padding: 1rem;
}

.lm-stack-sm {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.lm-stack-lg {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.lm-stack-md {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.lm-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--lm-accent);
}

.lm-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lm-accent);
}

.lm-tip-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--lm-text-muted);
}

.lm-chiplist {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.lm-chiplist--center {
  justify-content: center;
}

@media (min-width: 640px) {
  .lm-chiplist--center {
    justify-content: flex-start;
  }
}

.lm-grid-two {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.lm-grid-three {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

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

@media (min-width: 900px) {
  .lm-grid-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.lm-hero {
  padding: 2.5rem 2rem;
  text-align: center;
}

@media (min-width: 640px) {
  .lm-hero {
    text-align: left;
    padding: 3rem 3rem;
  }
}

.lm-section-header {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

@media (min-width: 640px) {
  .lm-section-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.lm-section-note {
  font-size: 0.9rem;
  color: var(--lm-text-muted);
}

.lm-map {
  width: 100%;
  border-radius: var(--lm-radius-md);
  overflow: hidden;
  height: 340px;
}

@media (min-width: 640px) {
  .lm-map {
    height: 420px;
  }
}

@media (min-width: 1024px) {
  .lm-map {
    height: 520px;
  }
}

.lm-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--lm-accent);
}

.lm-meta__sep {
  color: var(--lm-text-muted);
  font-weight: 400;
}

.lm-top-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.lm-top-item p {
  margin: 0.2rem 0 0;
}

.lm-footer__links .lm-link {
  font-size: 0.9rem;
}

.lm-heading-lg {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 400;
  letter-spacing: -0.01em;
}

.lm-heading-md {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.lm-card-title {
  font-size: 1.15rem;
  font-weight: 500;
  margin: 0;
}

.lm-text-small {
  font-size: 0.9rem;
  color: var(--lm-text-muted);
}

.lm-search {
  width: 100%;
}

.lm-search__field {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid var(--lm-border);
  border-radius: var(--lm-radius-sm);
  padding: 0.55rem 0.75rem 0.55rem 0.85rem;
  height: 48px;
  box-sizing: border-box;
  background: var(--lm-surface-solid);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.lm-search__field:focus-within {
  border-color: var(--lm-accent);
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

[data-theme="dark"] .lm-search__field:focus-within {
  box-shadow: 0 0 0 2px rgba(138, 180, 248, 0.25);
}

.lm-search__icon {
  color: var(--lm-text-muted);
  display: inline-flex;
}

.lm-search__icon svg {
  width: 20px;
  height: 20px;
}

.lm-search__input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  font-size: 0.9rem;
  color: var(--lm-text);
  outline: none;
}

.lm-search__input::placeholder {
  color: var(--lm-text-muted);
}

.lm-search__button {
  border: none;
  background: transparent;
  color: var(--lm-accent);
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.lm-search__button svg {
  width: 18px;
  height: 18px;
}

.lm-search--hero {
  max-width: 520px;
  width: 100%;
}

.lm-search--hero .lm-search__field {
  height: 56px;
  border-radius: var(--lm-radius-md);
}

.lm-search--header {
  max-width: 360px;
  width: 100%;
}

@media (max-width: 520px) {
  .lm-search--header {
    max-width: 200px;
  }
}

.lm-surface {
  background: var(--lm-surface-bg);
}

.lm-text-muted {
  color: var(--lm-text-muted);
}

.lm-border-color {
  border-color: var(--lm-border);
}

.lm-button {
  background: var(--lm-muted-bg);
  border: 1px solid var(--lm-border);
  border-radius: var(--lm-radius-sm);
  padding: 0.45rem 1rem;
  color: var(--lm-text);
  font-weight: 500;
  transition: background 150ms ease, transform 150ms ease;
}

.lm-button:active {
  transform: scale(0.97);
}

.lm-link {
  color: var(--lm-accent);
  font-weight: 600;
  transition: opacity 150ms ease;
}

.lm-link:hover {
  opacity: 0.85;
}

.lm-section-title {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.lm-subtext {
  font-size: 0.95rem;
  line-height: 1.6;
}

.lm-subtext p + p {
  margin-top: 1rem;
}

/* Breadcrumbs */
.lm-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--lm-text-muted);
}

.lm-breadcrumb a {
  color: var(--lm-text-muted);
  text-decoration: none;
  transition: color 150ms ease;
}

.lm-breadcrumb a:hover {
  color: var(--lm-accent);
}

.lm-breadcrumb [aria-current="page"] {
  color: var(--lm-text);
  font-weight: 500;
}

/* Content sections */
.lm-content-section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Seasonality chart */
.lm-seasonality {
  width: 100%;
  max-width: 400px;
}

.lm-seasonality__svg {
  width: 100%;
  height: auto;
}

.lm-seasonality__bar {
  fill: var(--lm-border);
  transition: fill 200ms ease;
}

.lm-seasonality__bar--peak {
  fill: #3ca49e;
}

.lm-seasonality__label {
  font-size: 10px;
  fill: var(--lm-text-muted);
  font-family: inherit;
}

/* FAQ */
.lm-faq-item {
  border: 1px solid var(--lm-border);
  border-radius: var(--lm-radius-sm);
  transition: border-color 200ms ease;
}

.lm-faq-item[open] {
  border-color: var(--lm-accent);
}

.lm-faq-item summary {
  padding: 0.85rem 1rem;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.lm-faq-item summary::-webkit-details-marker {
  display: none;
}

.lm-faq-item summary::after {
  content: "+";
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--lm-text-muted);
  flex-shrink: 0;
  transition: transform 200ms ease;
}

.lm-faq-item[open] summary::after {
  content: "\2212";
}

.lm-faq-item p {
  padding: 0 1rem 0.85rem;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--lm-text-muted);
}

/* Area cards (where to stay breakdown) */
.lm-areas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .lm-areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .lm-areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.lm-area-card {
  border: 1px solid var(--lm-border);
  border-radius: var(--lm-radius-sm);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  border-top: 3px solid var(--lm-accent);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.lm-area-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--lm-shadow-2);
}

.lm-area-card__name {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0;
}

.lm-area-card__best-for {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--lm-accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0;
}

.lm-area-card__price {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: var(--lm-muted-bg);
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--lm-text-muted);
  margin: 0.25rem 0 0;
}

/* ── Admin panel ─────────────────────────────────────────── */

.lm-admin-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.lm-admin-header {
  background: var(--lm-surface-solid);
  border-bottom: 1px solid var(--lm-border);
  position: sticky;
  top: 0;
  z-index: 40;
}

.lm-admin-header__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.6rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.lm-admin-brand {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.lm-admin-nav {
  display: flex;
  gap: 1rem;
}

.lm-admin-nav-link {
  font-size: 0.85rem;
  color: var(--lm-text-muted);
  text-decoration: none;
  font-weight: 500;
}

.lm-admin-nav-link:hover {
  color: var(--lm-text);
}

.lm-admin-header__right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lm-admin-main {
  flex: 1;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Flash messages */
.lm-admin-flash {
  padding: 0.75rem 1rem;
  border-radius: var(--lm-radius-sm);
  font-size: 0.9rem;
}

.lm-admin-flash--notice {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.lm-admin-flash--alert {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* Inputs */
.lm-admin-input {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
  border: 1px solid var(--lm-border);
  border-radius: var(--lm-radius-sm);
  background: var(--lm-surface-solid);
  color: var(--lm-text);
  box-sizing: border-box;
}

.lm-admin-input:focus {
  outline: none;
  border-color: var(--lm-accent);
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

textarea.lm-admin-input {
  min-height: 80px;
  resize: vertical;
}

select.lm-admin-input {
  appearance: auto;
}

.lm-admin-checkbox {
  width: 1rem;
  height: 1rem;
  accent-color: var(--lm-accent);
}

/* Buttons */
.lm-admin-button--primary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  background: var(--lm-accent);
  border: none;
  border-radius: var(--lm-radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: opacity 150ms ease;
}

.lm-admin-button--primary:hover {
  opacity: 0.9;
}

.lm-admin-button--secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--lm-text);
  background: var(--lm-muted-bg);
  border: 1px solid var(--lm-border);
  border-radius: var(--lm-radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: background 150ms ease;
}

.lm-admin-button--secondary:hover {
  background: var(--lm-border);
}

.lm-admin-button--danger {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  background: #dc2626;
  border: none;
  border-radius: var(--lm-radius-sm);
  cursor: pointer;
  text-decoration: none;
}

.lm-admin-button--danger:hover {
  background: #b91c1c;
}

.lm-admin-button--sm {
  padding: 0.3rem 0.7rem;
  font-size: 0.8rem;
}

/* Tables */
.lm-admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.lm-admin-table th {
  text-align: left;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--lm-text-muted);
  padding: 0.5rem 0.75rem;
  border-bottom: 2px solid var(--lm-border);
}

.lm-admin-table td {
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid var(--lm-border);
  vertical-align: middle;
}

.lm-admin-table tr:hover td {
  background: var(--lm-muted-bg);
}

/* Badges */
.lm-admin-badge {
  display: inline-block;
  padding: 0.15rem 0.55rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
  text-transform: capitalize;
}

.lm-admin-badge--pending {
  background: #fef3c7;
  color: #92400e;
}

.lm-admin-badge--started {
  background: #dbeafe;
  color: #1e40af;
}

.lm-admin-badge--generating {
  background: #ede9fe;
  color: #5b21b6;
}

.lm-admin-badge--ready {
  background: #dcfce7;
  color: #166534;
}

/* Stat cards */
.lm-admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}

.lm-admin-stat {
  background: var(--lm-surface-solid);
  border: 1px solid var(--lm-border);
  border-radius: var(--lm-radius-sm);
  padding: 1rem;
}

.lm-admin-stat__value {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
}

.lm-admin-stat__label {
  font-size: 0.8rem;
  color: var(--lm-text-muted);
  margin-top: 0.25rem;
}

/* Form layout */
.lm-admin-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.lm-admin-form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--lm-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.lm-admin-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .lm-admin-form-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .lm-admin-form-row--3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.lm-admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

/* Filter tabs */
.lm-admin-tabs {
  display: flex;
  gap: 0.25rem;
  border-bottom: 2px solid var(--lm-border);
  margin-bottom: 1rem;
}

.lm-admin-tab {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--lm-text-muted);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
}

.lm-admin-tab:hover {
  color: var(--lm-text);
}

.lm-admin-tab--active {
  color: var(--lm-accent);
  border-bottom-color: var(--lm-accent);
}

/* Section header */
.lm-admin-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Danger zone */
.lm-admin-danger-zone {
  border: 1px solid #fecaca;
  border-radius: var(--lm-radius-sm);
  padding: 1rem;
  margin-top: 2rem;
}

.lm-admin-danger-zone h3 {
  font-size: 0.9rem;
  color: #dc2626;
  margin: 0 0 0.5rem;
}

/* Scroll targets — offset for sticky header */
.lm-scroll-target {
  scroll-margin-top: 5rem;
}

/* Table of Contents */
.lm-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 2px solid var(--lm-border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.lm-toc__link {
  display: inline-block;
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--lm-text-muted);
  background: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  text-decoration: none;
  white-space: nowrap;
  transition: color 150ms ease, border-color 150ms ease;
}

.lm-toc__link:hover {
  color: var(--lm-accent);
  border-bottom-color: var(--lm-accent);
}

/* Price range chart */
.lm-price-chart {
  width: 100%;
  max-width: 500px;
}

.lm-price-chart__svg {
  width: 100%;
  height: auto;
}

.lm-price-chart__bar {
  fill: var(--lm-border);
  transition: fill 200ms ease;
}

.lm-price-chart__bar--peak {
  fill: #3ca49e;
}

.lm-price-chart__label {
  font-size: 11px;
  fill: var(--lm-text-muted);
  font-family: inherit;
}

.lm-price-chart__range-label {
  font-size: 10px;
  fill: var(--lm-text-muted);
  font-family: inherit;
}

/* ── Hero destination accent ─────────────────────────────── */
.lm-hero-destination {
  background: transparent;
  border: none;
  box-shadow: none;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

/* ── Section heading icons ───────────────────────────────── */
.lm-heading-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.lm-heading-icon svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--lm-accent);
}

/* ── Accent left border for text sections ────────────────── */
.lm-card--accent-left {
  border-left: 4px solid var(--lm-accent);
}

/* ── Numbered tip badges ─────────────────────────────────── */
.lm-tip-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--lm-accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── VS badge on comparison cards ────────────────────────── */
.lm-vs-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--lm-accent);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  vertical-align: middle;
}

/* ── Meta info icons ─────────────────────────────────────── */
.lm-meta-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.lm-meta-icon svg {
  width: 16px;
  height: 16px;
  color: var(--lm-accent);
  flex-shrink: 0;
}

/* ── Comparison table ──────────────────────────────────────── */

.lm-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.lm-compare-table thead th {
  text-align: center;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.75rem;
  border-bottom: 2px solid var(--lm-border);
  color: var(--lm-text);
}

.lm-compare-table thead th:first-child {
  text-align: left;
}

.lm-compare-table td {
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid var(--lm-border);
  text-align: center;
  vertical-align: middle;
}

.lm-compare-table__label {
  text-align: left !important;
  font-weight: 500;
  color: var(--lm-text-muted);
  white-space: nowrap;
}

.lm-compare-table tr:hover td {
  background: var(--lm-muted-bg);
}
