:root {
  --navy: #0d1b2a;
  --ink: #1b263b;
  --body: #465263;
  --muted: #6d7788;
  --gold: #c9a45c;
  --gold-soft: #eadbb7;
  --line: #dde4ec;
  --pale: #f6f8fa;
  --white: #ffffff;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 96px;
  padding: 18px clamp(24px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo {
  display: block;
  width: min(220px, 48vw);
  max-height: 68px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(22px, 4vw, 42px);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}

.nav-links a {
  transition: color 150ms ease;
}

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

.hero {
  display: grid;
  place-items: center;
  min-height: 520px;
  padding: 78px clamp(24px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(rgba(13, 27, 42, 0.88), rgba(13, 27, 42, 0.94)),
    radial-gradient(circle at 20% 20%, rgba(201, 164, 92, 0.22), transparent 34%),
    var(--navy);
  text-align: center;
}

.hero-inner {
  width: min(920px, 100%);
}

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

.hero .eyebrow {
  color: var(--gold-soft);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.05;
  letter-spacing: 0;
}

.intro {
  width: min(860px, 100%);
  margin: 0 auto;
  color: #d7dee8;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 15px;
}

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

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.section {
  padding: 70px clamp(24px, 5vw, 72px);
}

.section-heading {
  width: min(760px, 100%);
  margin: 0 auto 34px;
  text-align: center;
}

.section h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.15;
}

.section-heading p:not(.eyebrow) {
  max-width: 680px;
  margin: 0 auto;
  color: var(--body);
  font-size: 18px;
  line-height: 1.6;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 136px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px 18px;
  text-align: center;
  background: var(--pale);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card span {
  width: 36px;
  height: 3px;
  border-radius: 999px;
  background: var(--gold);
}

.service-card h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 560px);
  gap: 42px;
  align-items: start;
  background: var(--pale);
}

.contact-band p {
  max-width: 620px;
  color: var(--body);
  font-size: 18px;
  line-height: 1.6;
}

.contact-card {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(13, 27, 42, 0.08);
}

dl {
  display: grid;
  gap: 20px;
  margin: 0;
}

dt {
  margin-bottom: 5px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

dd {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.45;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px clamp(24px, 5vw, 72px);
  color: var(--muted);
  font-size: 14px;
}

.site-footer img {
  width: 160px;
  max-height: 56px;
  object-fit: contain;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    min-height: auto;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: 560px;
    text-align: left;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .section-heading {
    text-align: left;
  }

  .section-heading p:not(.eyebrow) {
    margin-left: 0;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
