:root {
  --bg: #faf8f4;
  --bg2: #ffffff;
  --bg-alt: rgba(0,0,0,0.02);
  --text: #2c2418;
  --text2: #7a6e62;
  --text3: #827566;
  --accent: #9a7b5b;
  --accent-bg: rgba(154,123,91,0.08);
  --border: rgba(0,0,0,0.07);
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 12px;
}

@media(prefers-color-scheme:dark){
  :root {
    --bg: #0f0d0a;
    --bg2: #1a1714;
    --bg-alt: rgba(255,255,255,0.02);
    --text: #e8e2da;
    --text2: #8a7e72;
    --text3: #9c9082;
    --accent: #c4a882;
    --accent-bg: rgba(196,168,130,0.12);
    --border: rgba(255,255,255,0.07);
  }
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  background:
    radial-gradient(circle at top, rgba(154,123,91,0.14), transparent 34%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.skip-link {
  position: absolute;
  top: -56px;
  left: 16px;
  z-index: 300;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--text);
  color: var(--bg);
  font-size: 14px;
  font-weight: 600;
}

.skip-link:focus {
  top: 16px;
}

a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

#apartamentos,
#ubicacion {
  scroll-margin-top: 96px;
}

#main-content {
  scroll-margin-top: 96px;
}

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 24px; }
.section-alt { background: var(--bg-alt); }
.section-label { display: block; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); font-weight: 500; margin-bottom: 12px; }
.section h2 { font-family: var(--font-display); font-size: clamp(28px, 5vw, 42px); font-weight: 600; color: var(--text); margin: 0; }
.section-sub { font-size: 14px; color: var(--text2); margin-top: 8px; }
.section-header { max-width: 720px; text-align: center; margin: 0 auto 48px; }
.page-title { font-family: var(--font-display); font-size: clamp(28px, 5vw, 42px); font-weight: 600; color: var(--text); margin: 0; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 0.5px solid var(--border);
  padding: 16px 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.nav-brand { flex: 1 1 auto; min-width: 0; font-family: var(--font-display); font-size: 20px; font-weight: 700; letter-spacing: -0.03em; color: var(--accent); }
.nav-mobile-actions { display: none; flex: 0 0 auto; align-items: center; gap: 12px; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { font-size: 13px; color: var(--text2); transition: color 0.2s, background 0.2s; }
.nav-links a:hover { color: var(--accent); }
.nav-menu { display: none; align-items: center; justify-content: center; min-width: 44px; min-height: 44px; padding: 0; background: none; border: none; border-radius: 10px; font-size: 22px; line-height: 1; color: var(--text2); cursor: pointer; }
.nav-wa { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; background: #25d366; color: #fff; border-radius: 8px; font-size: 12px; font-weight: 500; }
.nav-wa-mobile {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
}
.nav-wa-mobile img { width: 24px; height: 24px; }

@media(max-width:640px) {
  body.nav-open { overflow: hidden; }
  .nav { display: grid; grid-template-columns: minmax(0, 1fr) auto; column-gap: 10px; padding: 12px 16px; }
  .nav-brand { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; font-size: 18px; }
  .nav-mobile-actions { display: flex; justify-content: flex-end; }
  .nav-links { display: none; position: absolute; top: calc(100% + 8px); left: 16px; right: 16px; flex-direction: column; align-items: stretch; background: var(--bg2); border: 0.5px solid var(--border); border-radius: 16px; box-shadow: 0 18px 40px rgba(0,0,0,0.12); padding: 12px; gap: 8px; }
  .nav-links.open { display: flex; }
  .nav-links a { display: flex; align-items: center; min-height: 44px; padding: 10px 12px; border-radius: 12px; background: var(--bg-alt); }
  .nav-links .nav-wa { display: none; }
  .nav-wa-mobile { display: inline-flex; }
  .nav-menu { display: inline-flex; }
}

/* Buttons */
.btn-primary { display: inline-block; padding: 12px 28px; background: var(--accent); color: var(--bg); border-radius: 8px; font-size: 13px; font-weight: 500; transition: opacity 0.2s; cursor: pointer; }
.btn-primary:hover { opacity: 0.85; }
.btn-sm { padding: 10px 20px; font-size: 12px; }
.btn-secondary { display: inline-block; padding: 12px 28px; border: 0.5px solid var(--border); border-radius: 8px; font-size: 13px; color: var(--text2); transition: background 0.2s; }
.btn-secondary:hover { background: var(--accent-bg); }
.btn-wa { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; background: #25d366; color: #fff; border-radius: 8px; font-size: 14px; font-weight: 500; }
.btn-wa:hover { background: #20bd5a; }

/* Hero */
.hero {
  position: relative;
  padding: 88px 32px 72px;
  max-width: 1080px;
  margin: 24px auto 0;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.72), rgba(255,255,255,0.28)),
    linear-gradient(180deg, rgba(154,123,91,0.08), rgba(154,123,91,0.02));
  box-shadow: 0 28px 60px rgba(44,36,24,0.08);
  overflow: hidden;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(154,123,91,0.18), transparent 70%);
  pointer-events: none;
}
.hero::before {
  width: 320px;
  height: 320px;
  top: -160px;
  right: -80px;
}
.hero::after {
  width: 220px;
  height: 220px;
  bottom: -120px;
  left: -40px;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.65);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 600;
}
.hero h1 { font-family: var(--font-display); font-size: clamp(36px, 7vw, 64px); font-weight: 600; line-height: 1.1; letter-spacing: -1px; margin-bottom: 20px; }
.hero h1 em { font-weight: 400; }
.hero p { font-size: 15px; line-height: 1.8; color: var(--text2); max-width: 540px; margin: 0 auto 32px; }
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Stats */
.stats { padding: 0 24px 60px; max-width: 760px; margin: -28px auto 0; position: relative; z-index: 2; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border-radius: 18px; overflow: hidden; box-shadow: 0 18px 40px rgba(44,36,24,0.08); }
.stat { background: var(--bg2); padding: 20px 12px; text-align: center; }
.stat-val { font-family: var(--font-display); font-size: 24px; font-weight: 600; display: block; }
.stat-label { font-size: 11px; color: var(--text2); margin-top: 4px; display: block; }
@media(max-width:480px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* Trust */
.trust-section { padding-top: 0; }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; max-width: 1080px; margin: 0 auto; }
.trust-card { padding: 24px; background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.72)); border-radius: 20px; border: 0.5px solid var(--border); box-shadow: 0 14px 32px rgba(44,36,24,0.05); }
.trust-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 600; margin-bottom: 10px; }
.trust-card p { font-size: 14px; line-height: 1.7; color: var(--text2); }

/* Apartment cards (home) */
.apts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; max-width: 1080px; margin: 0 auto; }
.apt-card { background: var(--bg2); border-radius: 22px; border: 0.5px solid var(--border); overflow: hidden; box-shadow: 0 18px 40px rgba(44,36,24,0.06); transition: transform 0.25s, box-shadow 0.25s; }
.apt-card:hover { transform: translateY(-4px); box-shadow: 0 26px 52px rgba(44,36,24,0.1); }
.apt-hero-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 0.45s ease; }
.apt-card:hover .apt-hero-img { transform: scale(1.03); }
.apt-body { padding: 24px; }
.apt-body h3 { font-family: var(--font-display); font-size: 24px; font-weight: 700; letter-spacing: -0.03em; margin-bottom: 6px; }
.apt-addr { font-size: 12px; color: var(--text2); margin-bottom: 14px; }
.apt-fit { font-size: 12px; color: var(--accent); font-weight: 600; margin-bottom: 10px; }
.apt-desc { font-size: 13px; line-height: 1.7; color: var(--text2); margin-bottom: 16px; }
.apt-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.apt-tags span { font-size: 11px; padding: 6px 10px; border-radius: 20px; background: var(--accent-bg); color: var(--accent); font-weight: 600; }
.apt-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; border-top: 0.5px solid var(--border); }
.apt-price { font-family: var(--font-display); font-size: 24px; font-weight: 700; letter-spacing: -0.04em; }
.apt-price small { font-size: 14px; font-weight: 400; }
.apt-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.apt-rating { text-align: right; }
.apt-rating span { font-size: 18px; font-weight: 500; color: var(--accent); }
.apt-rating small { display: block; font-size: 11px; color: var(--text2); margin-top: 2px; }

/* Detail page gallery */
.detail-hero { position: relative; }
.detail-hero img { width: 100%; aspect-ratio: 16/9; object-fit: cover; cursor: zoom-in; }
.detail-back { position: absolute; top: 16px; left: 16px; background: rgba(0,0,0,0.5); color: #fff; padding: 8px 16px; border-radius: 8px; font-size: 12px; backdrop-filter: blur(8px); }
.detail-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 10px; margin: 10px auto 0; padding: 0 10px; max-width: 1280px; }
.detail-gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 12px; border: 0.5px solid var(--border); cursor: zoom-in; transition: opacity 0.2s, transform 0.2s; }
.detail-gallery img:hover { opacity: 0.85; }
.detail-gallery img:hover { transform: translateY(-2px); }
.detail-content { max-width: 820px; margin: 0 auto; padding: 48px 24px; }
.detail-content h1 { font-family: var(--font-display); font-size: clamp(28px, 5vw, 40px); font-weight: 600; margin-bottom: 8px; }
.detail-content p { font-size: 15px; color: var(--text2); line-height: 1.8; }
.detail-meta { display: flex; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--text2); margin-bottom: 24px; }
.detail-meta span { display: flex; align-items: center; gap: 4px; }

/* Amenities grid */
.amenities { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; margin: 24px 0; }
.amenity { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text2); padding: 12px 16px; background: var(--accent-bg); border-radius: 8px; }
.amenity::before { content: "✓"; color: var(--accent); font-weight: 600; font-size: 14px; }

/* Reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; max-width: 1080px; margin: 0 auto; }
.review { background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.72)); border-radius: 20px; border: 0.5px solid var(--border); box-shadow: 0 14px 32px rgba(44,36,24,0.05); padding: 24px; }
.review-quote { font-family: var(--font-display); font-size: 28px; color: var(--accent); line-height: 1; margin-bottom: 12px; }
.review p { font-size: 13px; line-height: 1.7; color: var(--text2); font-style: italic; margin-bottom: 16px; }
.review-author { display: flex; justify-content: flex-start; align-items: center; }
.review-name { font-size: 12px; font-weight: 500; }
.review-score { font-size: 12px; color: var(--accent); font-weight: 500; }

/* Location */
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; max-width: 1080px; margin: 0 auto; }
.location-grid h2 { font-family: var(--font-display); font-size: 32px; font-weight: 600; margin-bottom: 16px; }
.location-grid p { font-size: 14px; line-height: 1.8; color: var(--text2); margin-bottom: 24px; }
.distances { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.distances span { font-size: 12px; color: var(--text2); }
.distances span::before { content: "◐ "; color: var(--accent); font-size: 8px; }
.map-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.map-actions .btn-secondary { display: inline-flex; align-items: center; gap: 6px; padding: 10px 16px; }
.map-frame { border-radius: 20px; overflow: hidden; border: 0.5px solid var(--border); box-shadow: 0 18px 40px rgba(44,36,24,0.08); height: 320px; }
.map-frame iframe { width: 100%; height: 100%; border: none; }
@media(max-width:768px) { .location-grid { grid-template-columns: 1fr; } }

/* Booking */
.booking-wrap { max-width: 800px; margin: 0 auto; }
.booking-desktop { border-radius: var(--radius); overflow: hidden; border: 0.5px solid var(--border); }
.booking-desktop iframe { width: 100%; max-width: 100%; height: 1100px; border: none; }
.booking-mobile { display: none; text-align: center; padding: 40px 0; }
.booking-mobile p { font-size: 14px; color: var(--text2); margin-bottom: 24px; line-height: 1.7; }
.booking-fallback { margin-top: 16px; font-size: 14px; color: var(--text2); }
.booking-fallback a { color: var(--accent); }
.faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; max-width: 1080px; margin: 0 auto; }
.faq-card { padding: 24px; background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.72)); border-radius: 20px; border: 0.5px solid var(--border); box-shadow: 0 14px 32px rgba(44,36,24,0.05); text-align: left; }
.faq-card h3 { font-family: var(--font-display); font-size: 19px; font-weight: 600; margin-bottom: 10px; }
.faq-card p { font-size: 14px; line-height: 1.7; color: var(--text2); }
@media(max-width:768px) {
  .booking-desktop { display: none; }
  .booking-mobile { display: block; padding: 24px 0 0; }
}

/* CTA */
.cta-strip {
  padding: 48px 24px;
  margin: 0 24px 48px;
  text-align: center;
  border-radius: 28px;
  background: linear-gradient(135deg, #2c2418, #8a6848);
  color: #faf8f4;
  box-shadow: 0 22px 50px rgba(44,36,24,0.18);
}
.cta-strip h2 { font-family: var(--font-display); font-size: 28px; font-weight: 600; margin-bottom: 8px; }
.cta-strip p { font-size: 14px; color: rgba(250,248,244,0.8); margin-bottom: 24px; }
.cta-strip .btn-primary { background: #faf8f4; color: #2c2418; }
.cta-strip .btn-secondary { border-color: rgba(250,248,244,0.2); color: #faf8f4; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Footer */
.footer { padding: 56px 24px 48px; border-top: 0.5px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; max-width: 1080px; margin: 0 auto; }
.footer-brand { font-family: var(--font-display); font-size: 20px; font-weight: 700; letter-spacing: -0.03em; color: var(--accent); margin-bottom: 12px; }
.footer p, .footer a { font-size: 13px; color: var(--text2); line-height: 2; }
.footer a:hover { color: var(--accent); }
.footer-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--text3); margin-bottom: 12px; font-weight: 500; }
.footer-bottom { max-width: 1080px; margin: 32px auto 0; padding-top: 24px; border-top: 0.5px solid var(--border); font-size: 11px; color: var(--text3); display: flex; justify-content: space-between; }
@media(max-width:640px) { .footer-grid { grid-template-columns: 1fr; gap: 24px; } }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 800px; margin: 0 auto; }
.contact-item { margin-bottom: 24px; padding: 20px; border: 0.5px solid var(--border); border-radius: 18px; background: rgba(255,255,255,0.62); box-shadow: 0 12px 28px rgba(44,36,24,0.04); }
.contact-item h3 { font-family: var(--font-display); font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.contact-item p { font-size: 14px; color: var(--text2); line-height: 1.7; }
.contact-item a { color: var(--accent); }
@media(max-width:640px) { .contact-grid { grid-template-columns: 1fr; } }

/* Legal pages */
.legal-wrap { max-width: 900px; margin: 0 auto; }
.legal-note { margin: 0 auto 32px; max-width: 760px; font-size: 14px; color: var(--text2); text-align: center; }
.legal-card { background: rgba(255,255,255,0.76); border: 0.5px solid var(--border); border-radius: 20px; box-shadow: 0 16px 36px rgba(44,36,24,0.04); padding: 24px; }
.legal-card + .legal-card { margin-top: 16px; }
.legal-card h2 { font-family: var(--font-display); font-size: 24px; font-weight: 600; margin-bottom: 12px; }
.legal-card p, .legal-card li { font-size: 14px; color: var(--text2); line-height: 1.8; }
.legal-list { padding-left: 18px; }
.legal-list li + li { margin-top: 8px; }

/* Lightbox */
body.lightbox-open { overflow: hidden; }
.lightbox[hidden] { display: none; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: rgba(15, 13, 10, 0.92);
}
.lightbox-close,
.lightbox-nav {
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
}
.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  font-size: 28px;
  line-height: 1;
}
.lightbox-nav {
  width: 52px;
  height: 52px;
  font-size: 32px;
  line-height: 1;
}
.lightbox-figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.lightbox-image {
  max-width: min(1200px, 100%);
  max-height: calc(100vh - 120px);
  border-radius: 12px;
  object-fit: contain;
}
.lightbox-caption,
.lightbox-counter {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}
.lightbox-counter {
  position: absolute;
  left: 24px;
  bottom: 20px;
}
@media(max-width:768px) {
  .lightbox {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }
  .lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
  .lightbox-image { max-height: calc(100vh - 160px); }
  .lightbox-counter {
    left: 50%;
    transform: translateX(-50%);
    bottom: 12px;
  }
}

@media(max-width:640px) {
  .section { padding: 56px 16px; }
  .hero { margin: 12px 16px 0; padding: 48px 16px 32px; border-radius: 24px; }
  .hero h1 { font-size: clamp(34px, 11vw, 48px); letter-spacing: -0.04em; }
  .hero p { font-size: 15px; }
  .hero-actions,
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .hero-actions a,
  .cta-buttons a,
  .apt-footer a,
  .apt-footer .btn-primary,
  .contact-item .btn-wa { width: 100%; justify-content: center; text-align: center; }
  .stats { padding: 0 16px 32px; margin-top: -18px; }
  .apts-grid { grid-template-columns: 1fr; gap: 16px; }
  .apt-body { padding: 20px; }
  .apt-footer { flex-direction: column; align-items: stretch; gap: 12px; }
  .apt-price { font-size: 24px; }
  .detail-back { top: 12px; left: 12px; display: inline-flex; align-items: center; min-height: 44px; }
  .detail-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; padding: 0 8px; }
  .detail-content { padding: 28px 16px; }
  .detail-meta { gap: 8px; }
  .detail-meta span { width: 100%; }
  .amenities { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .review { padding: 20px; }
  .location-grid { gap: 24px; }
  .distances { grid-template-columns: 1fr; }
  .map-frame { height: 280px; }
  .cta-strip { margin: 0 16px 32px; padding: 36px 18px; border-radius: 22px; }
  .footer { padding: 40px 16px; }
  .footer-bottom { flex-direction: column; align-items: center; gap: 8px; text-align: center; }
  .legal-card { padding: 20px 18px; }
}

/* Mobile sticky CTA */
.mobile-sticky-cta { display: none; }

@media(max-width:640px) {
  body.has-mobile-cta { padding-bottom: calc(92px + env(safe-area-inset-bottom)); }
  .mobile-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 220;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: color-mix(in srgb, var(--bg) 96%, transparent);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-top: 0.5px solid var(--border);
    box-shadow: 0 -12px 30px rgba(44,36,24,0.08);
  }
  .mobile-sticky-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    width: 100%;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
  }
}

/* Utility */
.text-center { text-align: center; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mb-48 { margin-bottom: 48px; }

/* Cleaned inline styles classes */
.section-title-sm { font-family: var(--font-display); font-size: 24px; font-weight: 600; margin-bottom: 16px; }
.section-title-md { font-family: var(--font-display); font-size: 28px; font-weight: 600; margin-bottom: 32px; }
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; max-width: 800px; margin: 0 auto; text-align: left; }
.info-grid-title { font-family: var(--font-display); font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.info-grid-text { font-size: 13px; color: var(--text2); }
.legal-title { font-family: var(--font-display); font-size: clamp(32px, 5vw, 48px); font-weight: 600; }
.contact-map { height: 400px; }
