:root {
  --navy: #14213D;
  --navy-light: #1E2F52;
  --gold: #C9A227;
  --gold-light: #E0C468;
  --cream: #FAF9F6;
  --ink: #1A1A1A;
  --muted: #5B6270;
  --border: #E7E3D8;
  --max-width: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Source Sans 3', 'Segoe UI', Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3, .logo-text {
  font-family: 'Playfair Display', Georgia, serif;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 249, 246, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img { width: 36px; height: 36px; }

.logo-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.2px;
}

.logo-text span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 28px;
  font-weight: 600;
  font-size: 15px;
}

.nav-links a {
  color: var(--navy);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}

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

.nav-cta {
  background: var(--navy);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 700;
}

.nav-cta:hover { background: var(--navy-light); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: var(--navy);
  cursor: pointer;
}

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #fff;
  padding: 96px 24px 110px;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  color: var(--gold-light);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: 44px;
  line-height: 1.2;
  max-width: 780px;
  margin: 0 auto 20px;
}

.hero p {
  max-width: 620px;
  margin: 0 auto 34px;
  font-size: 18px;
  color: #D9DEEA;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.15s, opacity 0.15s;
}

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

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
}

.stat-strip {
  background: var(--gold);
  color: var(--navy);
}

.stat-strip .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 26px 24px;
  gap: 16px;
}

.stat {
  text-align: center;
  min-width: 140px;
}

.stat strong {
  display: block;
  font-size: 28px;
  font-family: 'Playfair Display', serif;
}

.stat span {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Sections */
section { padding: 88px 0; }

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-head .eyebrow { color: var(--gold); }

.section-head h2 {
  font-size: 32px;
  color: var(--navy);
  margin: 8px 0 14px;
}

.section-head p { color: var(--muted); font-size: 17px; }

/* About */
.about {
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about h2 {
  font-size: 30px;
  color: var(--navy);
  margin-top: 0;
}

.about p { color: var(--muted); font-size: 16.5px; }

.about-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
  font-size: 15.5px;
  font-weight: 600;
}

.about-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-badge {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 40px;
  text-align: center;
}

.about-badge .big {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  color: var(--gold);
  line-height: 1;
}

.about-badge .label {
  color: var(--navy);
  font-weight: 700;
  margin-top: 8px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.service-card:hover {
  box-shadow: 0 12px 28px rgba(20,33,61,0.08);
  transform: translateY(-3px);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

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

.service-card p {
  color: var(--muted);
  font-size: 15.5px;
  margin: 0;
}

/* Why us */
.why {
  background: var(--navy);
  color: #fff;
}

.why .section-head p { color: #C6CBD9; }
.why .section-head h2 { color: #fff; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 28px 22px;
  text-align: center;
}

.why-card .why-icon {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 14px;
}

.why-card h3 {
  font-size: 17px;
  margin: 0 0 8px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
}

.why-card p {
  font-size: 14.5px;
  color: #C6CBD9;
  margin: 0;
}

/* Contact */
.contact {
  background: #fff;
}

.contact-box {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 56px;
  text-align: center;
}

.contact-box h2 {
  color: var(--navy);
  font-size: 30px;
  margin-top: 0;
}

.contact-box p {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 30px;
  font-size: 17px;
}

.contact-methods {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-methods .btn-primary { color: var(--navy); }
.contact-methods .btn-outline {
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
}

/* Footer */
footer {
  background: var(--navy);
  color: #C6CBD9;
  padding: 32px 24px;
  text-align: center;
  font-size: 14px;
}

footer a { color: var(--gold-light); font-weight: 600; }

/* Responsive */
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .contact-box { padding: 36px 22px; }
}

@media (max-width: 640px) {
  .nav-links {
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    display: none;
    gap: 16px;
  }
  .nav-links.open { display: flex; }
  .menu-toggle { display: block; }
  .hero h1 { font-size: 32px; }
  .hero p { font-size: 16px; }
  .why-grid { grid-template-columns: 1fr; }
  .stat-strip .container { gap: 22px; }
  section { padding: 60px 0; }
}
