/* Elite Services of MB — Brand: Navy #0E1E3A + Gold #D4A537 */
:root {
  --navy: #0E1E3A;
  --navy-2: #182B52;
  --gold: #D4A537;
  --gold-2: #B88B25;
  --cream: #FAF7F0;
  --ink: #1A1A1A;
  --muted: #5A6478;
  --line: #E4E0D6;
  --white: #FFFFFF;
}

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

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-2); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold); }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* NAV */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 3px rgba(14,30,58,.04);
}
.nav-inner {
  max-width: 1140px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo img { height: 48px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  color: var(--navy); font-weight: 500; font-size: 15px;
}
.nav-links a:hover { color: var(--gold-2); }
.nav-links .nav-cta {
  background: var(--navy); color: var(--white);
  padding: 9px 18px; border-radius: 4px;
  border: 1px solid var(--navy);
}
.nav-links .nav-cta:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* HERO */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 64px 24px 80px;
  text-align: center;
}
.hero-inner { max-width: 880px; margin: 0 auto; }
.hero-banner {
  max-width: 640px; width: 100%;
  margin: 0 auto 28px;
}
.hero-tag {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 24px;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,.85);
  max-width: 620px;
  margin: 0 auto 36px;
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 15px;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .2s;
  text-align: center;
}
.btn-gold {
  background: var(--gold); color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-2); border-color: var(--gold-2); color: var(--navy); }
.btn-outline {
  background: transparent; color: var(--white); border-color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--navy); }

/* SECTIONS */
section { padding: 80px 0; }
.section-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  text-align: center;
}
.section-lead {
  text-align: center;
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 48px;
}

/* SERVICES */
.services { background: var(--cream); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-bottom: 40px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  padding: 32px 28px;
  border-radius: 6px;
  transition: transform .2s, box-shadow .2s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(14,30,58,.10);
}
.service-icon { font-size: 36px; margin-bottom: 12px; }
.service-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 12px;
}
.service-card p { color: var(--muted); font-size: 15px; }
.bilingual-note {
  text-align: center;
  font-style: italic;
  color: var(--navy);
  font-size: 17px;
  padding: 16px 24px;
  background: var(--white);
  border-left: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
  display: inline-block;
  margin: 0 auto;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

/* ABOUT */
.about { background: var(--white); }
.about-lead {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
  font-size: 18px;
  color: var(--ink);
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  max-width: 880px;
  margin: 0 auto;
}
.trust-item { text-align: center; }
.trust-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 28px;
  color: var(--gold-2);
  margin-bottom: 8px;
  font-weight: 600;
}
.trust-label { color: var(--muted); font-size: 15px; }

/* CONTACT */
.contact { background: var(--navy); color: var(--white); }
.contact .section-title { color: var(--white); }
.contact .section-title::after { background: var(--gold); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-info p { color: rgba(255,255,255,.85); margin-bottom: 24px; }
.contact-info .section-title { text-align: left; margin-bottom: 12px; }
.contact-list { list-style: none; margin-top: 24px; }
.contact-list li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  align-items: start;
}
.contact-list li strong {
  color: var(--gold);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-top: 2px;
}
.contact-list li a, .contact-list li span {
  color: var(--white);
  font-size: 16px;
}
.contact-list li a:hover { color: var(--gold); }

.contact-form {
  background: var(--white);
  color: var(--ink);
  padding: 36px;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,.20);
}
.contact-form h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 20px;
}
.contact-form label {
  display: block;
  margin-bottom: 16px;
}
.contact-form label span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  background: var(--white);
  transition: border-color .2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.contact-form .btn { width: 100%; margin-top: 8px; }
.form-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
  text-align: center;
}

/* FOOTER */
.site-footer {
  background: #08152C;
  color: rgba(255,255,255,.7);
  padding: 40px 0 32px;
  text-align: center;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.footer-logo { height: 56px; opacity: .9; margin: 0 auto; }
.footer-tag {
  font-family: 'Fraunces', Georgia, serif;
  color: var(--gold);
  font-style: italic;
  font-size: 14px;
}
.footer-meta p { font-size: 13px; margin: 4px 0; }

/* RESPONSIVE */
@media (max-width: 720px) {
  .nav-links { gap: 16px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .nav-logo img { height: 40px; }
  .hero { padding: 48px 20px 60px; }
  .hero-tag { font-size: 20px; }
  .hero-sub { font-size: 16px; }
  .section-title { font-size: 28px; }
  section { padding: 56px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-form { padding: 24px; }
}
