:root {
  --navy: #0d1f3c;
  --amber: #d4922a;
  --amber-light: #f5e6cc;
  --slate: #f4f6fa;
  --slate-dark: #e8ecf4;
  --text: #1a2a40;
  --text-muted: #5a6a80;
  --white: #ffffff;
  --border: #dde3ee;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 4rem;
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  width: 36px;
  height: 36px;
  background: var(--navy);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.brand-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: var(--navy);
}

.nav-tagline {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.3px;
}

/* Hero */
.hero {
  padding: 5rem 4rem 4rem;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212,146,42,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.25rem;
}

.hero-headline {
  font-family: 'DM Serif Display', serif;
  font-size: 3.25rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-headline em {
  color: var(--amber);
  font-style: italic;
}

.hero-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  line-height: 1.7;
}

.hero-visual {
  flex-shrink: 0;
}

.emblem {
  width: 180px;
  height: 180px;
  border: 1px solid rgba(212,146,42,0.25);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(212,146,42,0.05);
}

.emblem-inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.emblem-star svg {
  width: 28px;
  height: 28px;
  color: var(--amber);
}

.emblem-text {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  color: var(--white);
  line-height: 1;
}

.emblem-sub {
  font-size: 0.6875rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* Stats */
.stats {
  padding: 2.5rem 4rem;
  background: var(--slate);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 1100px;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 0.5rem 2rem;
}

.stat-value {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 2.25rem;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.375rem;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* Sections */
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  max-width: 480px;
}

/* Services */
.services {
  padding: 5rem 4rem;
}

.services-header {
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  padding: 2rem;
  background: var(--slate);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: border-color 0.2s;
}

.service-card:hover {
  border-color: var(--amber);
}

.service-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1.25rem;
}

.service-icon svg {
  width: 100%;
  height: 100%;
  color: var(--navy);
}

.service-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.125rem;
  color: var(--navy);
  margin-bottom: 0.625rem;
}

.service-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Process */
.process {
  padding: 5rem 4rem;
  background: var(--navy);
}

.process-header {
  margin-bottom: 3.5rem;
}

.process .section-title {
  color: var(--white);
}

.process .section-sub {
  color: rgba(255,255,255,0.55);
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
}

.step-num {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 3rem;
  color: rgba(212,146,42,0.3);
  line-height: 1;
  margin-bottom: 1rem;
}

.step-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.125rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.step-connector {
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin-top: 2rem;
  flex-shrink: 0;
}

/* Testimonials */
.testimonials {
  padding: 5rem 4rem;
  background: var(--slate);
}

.testimonials-header {
  margin-bottom: 3rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
}

.testimonial-flag {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.flag-code {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--amber);
  background: var(--amber-light);
  padding: 0.25rem 0.5rem;
  border-radius: 2px;
}

.flag-zone {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.testimonial-quote {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.author-name {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--navy);
}

.author-role {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Closing */
.closing {
  padding: 6rem 4rem;
  background: var(--white);
  text-align: center;
}

.closing-headline {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.closing-sub {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Footer */
.footer {
  padding: 2rem 4rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer-sep {
  opacity: 0.4;
}

/* Responsive */
@media (max-width: 900px) {
  .nav, .hero, .stats, .services, .process, .testimonials, .closing, .footer {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .hero-headline {
    font-size: 2.25rem;
  }

  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    flex-wrap: wrap;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    flex: 0 0 50%;
    padding: 0.75rem 1rem;
  }

  .process-steps {
    flex-direction: column;
    gap: 2rem;
  }

  .step-connector {
    width: 40px;
    height: 1px;
    margin-top: 0;
    transform: rotate(90deg);
    align-self: flex-end;
    margin-right: 2rem;
  }

  .closing-headline {
    font-size: 1.875rem;
  }
}

@media (max-width: 480px) {
  .nav-tagline {
    display: none;
  }

  .stat-item {
    flex: 0 0 100%;
    text-align: left;
  }
}