/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Source+Sans+3:wght@400;500;600;700&display=swap');

/* ===== CSS RESET ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ===== CSS VARIABLES — Lima palette ===== */
:root {
  --lma-pacific: #0B3D5B;
  --lma-pacific-dark: #0F4C6B;
  --lma-pacific-mid: #1A6B8A;
  --lma-pacific-light: #2A8FAF;
  --lma-terracotta: #C2553A;
  --lma-terracotta-light: #D4735E;
  --lma-mist: #F0F4F7;
  --lma-mist-dark: #D9E2E8;
  --lma-sand: #FDF6EC;
  --lma-sand-dark: #F0E6D0;
  --lma-teal: #1B9AAA;
  --lma-teal-light: #3DBCC9;
  --text-dark: #1A2A33;
  --text-body: #3A4D58;
  --text-muted: #6B8494;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(11, 61, 91, 0.08);
  --shadow-md: 0 4px 16px rgba(11, 61, 91, 0.12);
  --shadow-lg: 0 8px 32px rgba(11, 61, 91, 0.16);
  --shadow-xl: 0 12px 48px rgba(11, 61, 91, 0.20);
  --radius: 12px;
  --radius-lg: 20px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
  --max-width: 1200px;
  --transition: 0.3s ease;
}

/* ===== BASE ===== */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-body);
  background-color: var(--lma-mist);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

a {
  color: var(--lma-pacific-mid);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--lma-terracotta);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

strong {
  color: var(--lma-pacific);
}

/* ===== LAYOUT ===== */
.lma-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.lma-section {
  padding: 80px 0;
}

/* ===== SITE HEADER & NAV ===== */
.lma-site-header {
  background: var(--lma-pacific);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.lma-site-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 24px 0;
  max-width: var(--max-width);
  margin: 0 auto;
}

.lma-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--lma-teal-light);
  text-decoration: none;
  letter-spacing: 1px;
  padding: 8px 0 4px;
  transition: color var(--transition);
}
.lma-logo:hover {
  color: var(--white);
}

.lma-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 10px 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}

.lma-nav-links a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  color: rgba(240, 244, 247, 0.7);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 0;
  position: relative;
  transition: color var(--transition);
}
.lma-nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--lma-terracotta);
  transition: all var(--transition);
  transform: translateX(-50%);
}
.lma-nav-links a:hover {
  color: var(--lma-terracotta-light);
}
.lma-nav-links a:hover::after {
  width: 100%;
}

.lma-nav-cta {
  background: var(--lma-terracotta);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all var(--transition);
  border: 2px solid var(--lma-terracotta);
}
.lma-nav-cta:hover {
  background: transparent;
  color: var(--lma-terracotta-light);
}
.lma-nav-cta::after {
  display: none;
}

/* ===== BUTTONS ===== */
.lma-btn-primary {
  display: inline-block;
  background: var(--lma-terracotta);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 16px 40px;
  border-radius: 50px;
  border: 2px solid var(--lma-terracotta);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  box-shadow: var(--shadow-md);
}
.lma-btn-primary:hover {
  background: var(--lma-pacific);
  border-color: var(--lma-pacific);
  color: var(--lma-terracotta-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.lma-btn-secondary {
  display: inline-block;
  background: var(--lma-pacific);
  color: var(--lma-mist);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 16px 40px;
  border-radius: 50px;
  border: 2px solid var(--lma-pacific);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  box-shadow: var(--shadow-md);
}
.lma-btn-secondary:hover {
  background: var(--lma-pacific-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

/* ===== HERO HEADER ===== */
.lma-hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, var(--lma-pacific) 0%, var(--lma-pacific-dark) 40%, var(--lma-pacific-mid) 100%);
  overflow: hidden;
  text-align: center;
}
.lma-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(194, 85, 58, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(61, 188, 201, 0.12) 0%, transparent 50%),
              radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
}
.lma-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 40px 24px;
}
.lma-hero h1 {
  color: var(--white);
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
}
.lma-hero-subtitle {
  color: var(--lma-terracotta-light);
  font-size: 1.35rem;
  margin-bottom: 36px;
  font-weight: 500;
  line-height: 1.6;
}

.lma-hero-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--lma-pacific) 0%, var(--lma-pacific-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lma-hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(194, 85, 58, 0.12) 0%, transparent 60%);
}
.lma-hero-banner h1 {
  color: var(--white);
  font-size: 3rem;
  position: relative;
  z-index: 2;
  margin-bottom: 12px;
}
.lma-hero-banner p {
  color: var(--lma-terracotta-light);
  font-size: 1.2rem;
  position: relative;
  z-index: 2;
}

/* ===== TICKER / STATS BAR ===== */
.lma-ticker {
  background: var(--lma-pacific);
  color: var(--lma-mist);
  padding: 20px 0;
  overflow: hidden;
}
.lma-ticker-inner {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  padding: 0 24px;
}
.lma-ticker-stat {
  text-align: center;
}
.lma-ticker-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  color: var(--lma-terracotta-light);
  display: block;
}
.lma-ticker-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(240, 244, 247, 0.6);
  font-weight: 600;
}

/* ===== CITIES NAV ===== */
.lma-cities-nav {
  padding: 80px 0;
  background: var(--white);
}
.lma-cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.lma-city-card {
  background: var(--lma-mist);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--lma-mist-dark);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  text-decoration: none;
  display: block;
}
.lma-city-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--lma-terracotta);
}
.lma-city-card h3 {
  color: var(--lma-pacific);
  margin-bottom: 8px;
  font-size: 1.3rem;
}
.lma-city-region {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.lma-city-link {
  color: var(--lma-terracotta);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ===== HOW IT WORKS (ordered list) ===== */
.lma-steps {
  list-style: none;
  counter-reset: lma-steps;
}
.lma-step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 16px 0;
}
.lma-step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--lma-terracotta);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.lma-step-item strong {
  color: var(--text-dark);
  display: block;
  margin-bottom: 4px;
}
.lma-step-item p {
  margin: 0;
  font-size: 0.95rem;
}

/* ===== SUGAR BABY BLOCKQUOTE ===== */
.lma-sugar-baby-section {
  padding: 80px 0;
  background: var(--lma-mist);
}
.lma-blockquote {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  border-left: 5px solid var(--lma-terracotta);
  box-shadow: var(--shadow-md);
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.lma-blockquote::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--lma-terracotta);
  opacity: 0.2;
  position: absolute;
  top: 8px;
  left: 20px;
  line-height: 1;
}
.lma-blockquote p {
  margin-bottom: 16px;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}
.lma-blockquote cite {
  display: block;
  font-style: normal;
  font-weight: 700;
  color: var(--lma-terracotta);
  font-size: 0.9rem;
  margin-top: 16px;
}

/* ===== BLOG ASIDE ===== */
.lma-blog-aside {
  padding: 80px 0;
  background: var(--white);
}
.lma-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.lma-blog-card {
  background: var(--lma-mist);
  border-radius: var(--radius);
  border: 1px solid var(--lma-mist-dark);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition);
  text-decoration: none;
  display: block;
}
.lma-blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.lma-blog-card-body {
  padding: 24px;
}
.lma-blog-card-date {
  font-size: 0.8rem;
  color: var(--lma-terracotta);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.lma-blog-card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.lma-blog-card:hover .lma-blog-card-title {
  color: var(--lma-pacific);
}
.lma-blog-card-excerpt {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 12px;
  line-height: 1.6;
}
.lma-blog-card-link {
  color: var(--lma-terracotta);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ===== CTA BANNER ===== */
.lma-cta-banner {
  background: linear-gradient(135deg, var(--lma-pacific) 0%, var(--lma-pacific-dark) 50%, var(--lma-pacific-mid) 100%);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lma-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(194, 85, 58, 0.1) 0%, transparent 70%);
}
.lma-cta-banner h2 {
  color: var(--white);
  font-size: 2.25rem;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}
.lma-cta-banner p {
  color: var(--lma-terracotta-light);
  font-size: 1.15rem;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

/* ===== FAQ ACCORDION ===== */
.lma-faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--lma-mist-dark);
  box-shadow: var(--shadow-sm);
  margin-bottom: 12px;
  overflow: hidden;
}
.lma-faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}
.lma-faq-item summary::-webkit-details-marker {
  display: none;
}
.lma-faq-answer {
  padding: 0 24px 20px;
  color: var(--text-body);
  line-height: 1.8;
}
.lma-faq-chevron {
  width: 20px;
  height: 20px;
  color: var(--lma-terracotta);
  transition: transform var(--transition);
  flex-shrink: 0;
}
details[open] .lma-faq-chevron {
  transform: rotate(180deg);
}

/* ===== TESTIMONIAL CARDS ===== */
.lma-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}
.lma-testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--lma-mist-dark);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.lma-testimonial-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--lma-terracotta);
  opacity: 0.3;
  position: absolute;
  top: 12px;
  left: 20px;
  line-height: 1;
}
.lma-testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.lma-testimonial-text {
  font-style: italic;
  color: var(--text-body);
  margin-bottom: 16px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.lma-testimonial-author {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ===== BENEFIT ROW ===== */
.lma-benefit-row {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 40px 0;
}
.lma-benefit-row:nth-child(even) {
  flex-direction: row-reverse;
}
.lma-benefit-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--lma-mist);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}
.lma-benefit-content h3 {
  color: var(--lma-pacific);
  margin-bottom: 8px;
  font-size: 1.3rem;
}
.lma-benefit-content p {
  line-height: 1.7;
}

/* ===== MAGAZINE LAYOUT (city pages) ===== */
.lma-magazine-header {
  background: linear-gradient(135deg, var(--lma-pacific) 0%, var(--lma-pacific-dark) 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.lma-magazine-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(194, 85, 58, 0.12) 0%, transparent 60%);
}
.lma-magazine-header h1 {
  color: var(--white);
  font-size: 2.75rem;
  position: relative;
  z-index: 2;
  margin-bottom: 12px;
}
.lma-magazine-header p {
  color: var(--lma-terracotta-light);
  font-size: 1.15rem;
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.lma-magazine-body {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  padding: 60px 0;
}
.lma-magazine-main h2 {
  color: var(--lma-pacific);
  margin-top: 40px;
  margin-bottom: 16px;
}
.lma-magazine-main h3 {
  color: var(--text-dark);
  margin-top: 32px;
  margin-bottom: 12px;
}
.lma-magazine-main p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.lma-magazine-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}
.lma-sidebar-widget {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--lma-mist-dark);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}
.lma-sidebar-widget h4 {
  color: var(--lma-pacific);
  font-size: 1.1rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--lma-terracotta);
}
.lma-stat-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--lma-mist-dark);
  font-size: 0.95rem;
}
.lma-stat-row:last-child {
  border-bottom: none;
}
.lma-stat-label {
  color: var(--text-muted);
}
.lma-stat-value {
  color: var(--lma-pacific);
  font-weight: 700;
}

.lma-sidebar-cta {
  background: linear-gradient(135deg, var(--lma-pacific), var(--lma-pacific-dark));
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
}
.lma-sidebar-cta h4 {
  color: var(--lma-terracotta-light);
  border-bottom: none;
  margin-bottom: 12px;
  font-size: 1.1rem;
}
.lma-sidebar-cta p {
  color: rgba(240, 244, 247, 0.7);
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.lma-sidebar-cta .lma-btn-primary {
  display: block;
  text-align: center;
  padding: 14px 24px;
  font-size: 0.8rem;
}

/* ===== OFFER GRID (city page) ===== */
.lma-offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 24px 0;
}
.lma-offer-card {
  background: var(--lma-mist);
  border-radius: var(--radius);
  padding: 24px;
  border-left: 4px solid var(--lma-terracotta);
}
.lma-offer-card h4 {
  color: var(--lma-pacific);
  margin-bottom: 8px;
  font-size: 1.05rem;
}
.lma-offer-card p {
  color: var(--text-body);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ===== CARD ===== */
.lma-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--lma-mist-dark);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.lma-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--lma-terracotta);
}

/* ===== OTHER CITIES GRID ===== */
.lma-other-cities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.lma-other-city-link {
  background: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--lma-mist-dark);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  display: block;
  transition: all var(--transition);
}
.lma-other-city-link:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--lma-terracotta);
}
.lma-other-city-link h3 {
  color: var(--lma-pacific);
  font-size: 1rem;
  margin: 0;
}

/* ===== ARTICLE PAGES ===== */
.lma-article-header {
  text-align: center;
  padding: 60px 24px 40px;
  max-width: 740px;
  margin: 0 auto;
}
.lma-article-date {
  font-size: 0.85rem;
  color: var(--lma-terracotta);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.lma-article-header h1 {
  font-size: 2.75rem;
  margin-bottom: 16px;
  line-height: 1.15;
}
.lma-article-header p {
  color: var(--text-muted);
  font-size: 1.2rem;
  line-height: 1.6;
}

.lma-article-body {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px 60px;
}
.lma-article-body h2 {
  color: var(--lma-pacific);
  margin-top: 48px;
  margin-bottom: 16px;
  font-size: 1.75rem;
}
.lma-article-body h3 {
  margin-top: 36px;
  margin-bottom: 12px;
  font-size: 1.3rem;
}
.lma-article-body p {
  margin-bottom: 20px;
  line-height: 1.85;
  font-size: 1.05rem;
}
.lma-article-body ul, .lma-article-body ol {
  margin-bottom: 20px;
  padding-left: 24px;
}
.lma-article-body li {
  margin-bottom: 8px;
  line-height: 1.7;
}
.lma-article-body strong {
  color: var(--lma-pacific);
}

.lma-article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--lma-terracotta);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--lma-mist-dark);
  transition: color var(--transition);
}
.lma-article-back:hover {
  color: var(--lma-pacific);
}

/* ===== INLINE CTA (rounded) ===== */
.lma-inline-cta {
  background: linear-gradient(135deg, var(--lma-pacific) 0%, var(--lma-pacific-dark) 50%, var(--lma-pacific-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 48px 0;
}
.lma-inline-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(194, 85, 58, 0.1) 0%, transparent 70%);
}
.lma-inline-cta h2 {
  color: var(--white);
  font-size: 1.75rem;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}
.lma-inline-cta p {
  color: var(--lma-terracotta-light);
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

/* ===== CONTACT FORM ===== */
.lma-contact-form {
  max-width: 600px;
  margin: 0 auto;
}
.lma-form-group {
  margin-bottom: 24px;
}
.lma-form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.lma-form-group input,
.lma-form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--lma-mist-dark);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-body);
  background: var(--white);
  transition: border-color var(--transition);
}
.lma-form-group input:focus,
.lma-form-group textarea:focus {
  outline: none;
  border-color: var(--lma-terracotta);
}
.lma-form-group textarea {
  min-height: 150px;
  resize: vertical;
}

/* ===== SIDEBAR CITY LINKS ===== */
.lma-sidebar-city-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lma-sidebar-city-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  background: var(--lma-mist);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: all var(--transition);
}
.lma-sidebar-city-item:hover {
  background: var(--lma-mist-dark);
}

/* ===== RELATED ARTICLES ===== */
.lma-related-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}
.lma-related-item {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
}
.lma-related-item span {
  font-weight: 700;
  color: var(--text-dark);
}

/* ===== FOOTER ===== */
.lma-footer {
  background: var(--lma-pacific);
  padding: 24px 0;
  text-align: center;
}
.lma-footer-text {
  color: rgba(240, 244, 247, 0.4);
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}

/* ===== DIVIDER ===== */
.lma-divider {
  width: 60px;
  height: 3px;
  background: var(--lma-terracotta);
  margin: 0 auto 32px;
  border-radius: 2px;
}

/* ===== UTILITY ===== */
.lma-text-center { text-align: center; }
.lma-mb-0 { margin-bottom: 0; }
.lma-mb-16 { margin-bottom: 16px; }
.lma-mb-24 { margin-bottom: 24px; }
.lma-mb-32 { margin-bottom: 32px; }
.lma-mb-48 { margin-bottom: 48px; }
.lma-mt-48 { margin-top: 48px; }
.lma-bg-mist { background-color: var(--lma-mist); }
.lma-bg-white { background-color: var(--white); }
.lma-max-800 { max-width: 800px; margin-left: auto; margin-right: auto; }
.lma-max-700 { max-width: 700px; margin-left: auto; margin-right: auto; }
.lma-muted { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ===== SVG ICONS ===== */
.lma-icon {
  width: 24px;
  height: 24px;
}
.lma-icon-sm {
  width: 18px;
  height: 18px;
}
.lma-icon-star {
  color: var(--lma-terracotta);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.25rem; }

  .lma-hero {
    min-height: 70vh;
  }
  .lma-hero h1 {
    font-size: 2.5rem;
  }

  .lma-magazine-body {
    grid-template-columns: 1fr;
  }
  .lma-magazine-sidebar {
    position: static;
  }

  .lma-offer-grid {
    grid-template-columns: 1fr;
  }

  .lma-benefit-row,
  .lma-benefit-row:nth-child(even) {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .lma-ticker-inner {
    gap: 32px;
  }

  .lma-section {
    padding: 48px 0;
  }

  .lma-other-cities {
    grid-template-columns: repeat(2, 1fr);
  }

  .lma-nav-links {
    gap: 12px;
  }
  .lma-nav-links a {
    font-size: 0.75rem;
    letter-spacing: 1px;
  }

  .lma-article-header h1 {
    font-size: 2rem;
  }

  .lma-blockquote {
    padding: 32px 24px;
  }
}
