:root {
  --navy: #153754;
  --navy-deep: #0d2a43;
  --navy-soft: #274a67;
  --gold: #b88a2e;
  --gold-rich: #c79a3d;
  --gold-soft: #e6d1a0;
  --cream: #fbf8f2;
  --light: #f5f7fa;
  --panel: #fffdf9;
  --text: #223344;
  --muted: #5f6f7f;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(13, 42, 67, 0.14);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, var(--cream) 100%);
  line-height: 1.6;
}

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(21, 55, 84, 0.08);
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--navy);
  text-decoration: none;
}

.nav-logo {
  width: 235px;
  max-width: 52vw;
  height: auto;
  display: block;
}

.hero-logo {
  width: min(520px, 100%);
  height: auto;
  display: block;
  margin: 0 0 26px;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-links a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
}

.nav-links a:hover {
  color: var(--gold);
}

.menu-toggle {
  display: none;
  border: 0;
  border-radius: 10px;
  background: #f3ead6;
  color: var(--navy);
  padding: 10px 12px;
  font-size: 20px;
}

.hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 86px 24px 70px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.hero-content h1 {
  margin: 10px 0 18px;
  color: var(--navy-deep);
  font-size: clamp(42px, 6vw, 68px);
  line-height: 0.98;
  letter-spacing: -2px;
}

.hero-text {
  margin: 0 0 28px;
  max-width: 680px;
  color: var(--muted);
  font-size: 20px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.6px;
}

.eyebrow.light { color: #ffe9b4; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--gold), var(--gold-rich));
  box-shadow: 0 12px 24px rgba(184, 138, 46, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #c79a3d, #d5aa54);
}

.btn-secondary {
  color: var(--navy);
  background: var(--white);
  border: 2px solid rgba(184, 138, 46, 0.35);
}

.btn-secondary:hover {
  border-color: var(--gold);
  box-shadow: 0 10px 22px rgba(21, 55, 84, 0.08);
}

.hero-card {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(184, 138, 46, 0.18);
}

.hero-card h2 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 28px;
}

.hero-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-card li {
  padding: 13px 0 13px 30px;
  border-bottom: 1px solid #e9e4d6;
  position: relative;
  font-weight: 700;
}

.hero-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 900;
}
.hero-card li:last-child { border-bottom: 0; }

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 24px;
}

.intro {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.section-heading h2 {
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -1px;
}

.section-heading p:not(.eyebrow) {
  margin-top: 12px;
  color: var(--muted);
  font-size: 18px;
}
.centered { text-align: center; }

.services-section { padding-top: 44px; }
.services-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card, .contact-card {
  background: var(--panel);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(13, 42, 67, 0.08);
  border: 1px solid rgba(184, 138, 46, 0.12);
}

.service-card .icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: white;
  background: linear-gradient(135deg, var(--navy), var(--gold));
  font-weight: 900;
  margin-bottom: 18px;
}

.service-card h3, .contact-card h3 {
  color: var(--navy);
  margin: 0 0 10px;
  font-size: 22px;
}

.service-card p, .contact-card p { color: var(--muted); margin: 0; }

.lop-band {
  margin: 40px auto;
  max-width: 1180px;
  padding: 64px 48px;
  border-radius: 32px;
  color: white;
  background:
    radial-gradient(circle at top left, rgba(230, 209, 160, 0.28), transparent 28%),
    linear-gradient(135deg, var(--navy-deep), var(--navy), var(--gold));
  box-shadow: var(--shadow);
}

.lop-band h2 {
  margin: 0 0 12px;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1;
}
.lop-band p { max-width: 850px; margin: 0; font-size: 19px; }

.referral-box {
  background: linear-gradient(180deg, #fffdf9 0%, #f8f2e6 100%);
  border: 1px solid rgba(184, 138, 46, 0.2);
  border-radius: var(--radius);
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 26px;
}

.referral-box h2 { margin: 0 0 12px; color: var(--navy); font-size: 36px; line-height: 1.1; }
.referral-box p { margin: 0; color: var(--muted); }

.contact-section { padding-top: 48px; }
.contact-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.contact-card a {
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
}
.contact-card a:hover { color: var(--gold); }
.contact-card p + p { margin-top: 10px; }

.site-footer {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: white;
  text-align: center;
  padding: 30px 20px;
  border-top: 4px solid var(--gold);
}
.site-footer p { margin: 0; }
.footer-note { margin-top: 8px !important; opacity: 0.78; font-size: 13px; }

@media (max-width: 860px) {
  .menu-toggle { display: block; }
  .nav { flex-wrap: wrap; }
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-top: 12px;
  }
  .nav-links.open { display: flex; }
  .hero, .intro, .referral-box, .contact-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 52px; }
  .lop-band { margin: 24px; padding: 44px 28px; }
}

.copy-toast {
  position: fixed;
  left: 50%;
  bottom: 105px;
  transform: translate(-50%, 24px) scale(0.96);
  opacity: 0;
  pointer-events: none;
  z-index: 1000;
  background: linear-gradient(135deg, #f2d38c, #b88a2e);
  color: #102f49;
  padding: 20px 34px;
  border-radius: 18px;
  border: 3px solid #ffffff;
  box-shadow: 0 20px 48px rgba(13, 42, 67, 0.38);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.2px;
  text-align: center;
  min-width: 260px;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.copy-toast.show {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}
