:root {
  --navy: #10243f;
  --navy-soft: #19395f;
  --gold: #b68a3a;
  --cream: #f7f4ee;
  --white: #ffffff;
  --text: #243247;
  --muted: #657184;
  --border: #dfe4ea;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.hero {
  min-height: 92vh;
  padding: 0 7%;
  background:
    linear-gradient(
      90deg,
      rgba(16, 36, 63, 0.98),
      rgba(16, 36, 63, 0.92)
    );
  color: var(--white);
}

.navigation {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  
}
.top-slogan {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 5px;
}

.brand {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  background: #ffffff;
  border-radius: 2px;
}

.brand img {
  display: block;
  width: 140px;
  height: auto;
}


.nav-link {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 0 95px;
}

.eyebrow {
  color: #e2c17d;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow.spanish {
  margin-top: 5px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
}

h1,
h2,
h3 {
  line-height: 1.15;
}

h1 {
  max-width: 850px;
  margin-top: 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 400;
}

.hero-description {
  max-width: 680px;
  margin-top: 30px;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.82);
}

.primary-button {
  display: inline-block;
  margin-top: 38px;
  padding: 15px 24px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  transition: 0.25s ease;
}

.primary-button:hover {
  background: transparent;
  color: var(--white);
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 100px 7%;
}

.statement {
  max-width: 1000px;
  padding-top: 120px;
  padding-bottom: 120px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  color: var(--navy);
}

.statement p + p {
  margin-top: 26px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 55px;
}

.section-label {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-heading h2,
.contact h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 400;
  color: var(--navy);
}

.services {
  max-width: none;
  background: var(--cream);
}

.services > * {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.service-card {
  min-height: 260px;
  padding: 34px;
  background: var(--white);
  border-top: 3px solid var(--gold);
}

.service-card span {
  display: block;
  margin-bottom: 38px;
  color: var(--gold);
  font-weight: 700;
}

.service-card h3 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  color: var(--navy);
}

.service-card p {
  color: var(--muted);
}

.methodology-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.methodology-list span {
  padding: 30px 16px;
  text-align: center;
  font-weight: 700;
  color: var(--navy);
  border-right: 1px solid var(--border);
}

.methodology-list span:last-child {
  border-right: none;
}

.contact {
  max-width: none;
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.contact > * {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact h2 {
  color: var(--white);
}

.contact > p:not(.section-label) {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.75);
}

.contact-links {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.contact-links a {
  min-width: 170px;
  padding: 14px 22px;
  border: 1px solid var(--gold);
  color: var(--white);
  font-weight: 700;
}

.contact-links a:first-child {
  background: var(--gold);
  color: var(--navy);
}

footer {
  padding: 30px 7%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  background: #09182b;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.86rem;
}

@media (max-width: 800px) {
  .hero {
    min-height: auto;
  }

  .navigation {
    align-items: flex-start;
    gap: 20px;
  }

  .hero-content {
    padding: 80px 0 95px;
  }

  h1 {
    font-size: 2.7rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .methodology-list {
    grid-template-columns: 1fr;
  }

  .methodology-list span {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .methodology-list span:last-child {
    border-bottom: none;
  }

  footer {
    flex-direction: column;
    text-align: center;
  }
}