:root {
  --navy: #16243d;
  --navy-deep: #0e1828;
  --gold: #b08d4f;
  --gold-light: #d6bb8a;
  --ink: #2b2f36;
  --ink-soft: #545b66;
  --paper: #faf8f4;
  --white: #ffffff;
  --line: #e6e1d7;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 4.5rem;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 70rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container.narrow {
  max-width: 46rem;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.15;
}

h1 { font-size: clamp(2.75rem, 6vw, 4.25rem); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); margin-bottom: 1.25rem; }
h3 { font-size: 1.625rem; margin-bottom: 0.875rem; }

p + p { margin-top: 1rem; }

.eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.875rem;
}

.lead {
  font-size: 1.25rem;
  line-height: 1.65;
}

.button {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.875rem 2.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.button:hover {
  background: transparent;
  color: var(--gold);
}

/* Header / nav */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14, 24, 40, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.25rem;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

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

.nav-cta {
  padding: 0.5rem 1.125rem;
  border: 1px solid var(--gold);
  border-radius: 2px;
  color: var(--gold-light) !important;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
}

/* Hero */

.hero {
  background: linear-gradient(170deg, var(--navy-deep) 0%, var(--navy) 60%, #1d3050 100%);
  color: rgba(255, 255, 255, 0.88);
  padding: 6.5rem 0 7rem;
}

.hero-inner { max-width: 50rem; }

.hero h1 {
  color: var(--white);
  margin-bottom: 1.75rem;
}

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

.hero .lead {
  color: var(--white);
  margin-bottom: 1rem;
}

/* Sections */

.section {
  padding: 5.5rem 0;
}

.section.alt {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pullquote {
  margin-top: 2rem;
  padding-left: 1.5rem;
  border-left: 3px solid var(--gold);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.4;
}

/* Services */

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

.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: 3px;
  padding: 2.25rem 2rem;
}

.list-label {
  margin-top: 1.25rem;
  font-weight: 600;
  color: var(--navy);
}

.service-card ul {
  margin-top: 0.625rem;
  padding-left: 1.25rem;
}

.service-card li {
  margin-bottom: 0.375rem;
  color: var(--ink-soft);
}

.service-card li::marker { color: var(--gold); }

/* Industries */

.industry-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
  margin-top: 1.5rem;
}

.industry-list li {
  padding: 0.5rem 1.25rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 2rem;
  font-size: 0.9375rem;
  color: var(--navy);
}

/* Closing */

.section.closing {
  background: linear-gradient(170deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
}

.section.closing h2 { color: var(--white); }

/* Footer */

.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  padding: 2.5rem 0;
  font-size: 0.875rem;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
}

.footer-title {
  color: var(--gold-light);
  margin-top: 0.125rem;
}

.footer-copy { margin-top: 1rem; }

/* Mobile */

@media (max-width: 62rem) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 4.25rem;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--navy-deep);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.5rem 0 1rem;
  }

  .nav-links.open { display: flex; }

  .nav-links li { width: 100%; text-align: center; }

  .nav-links a {
    display: block;
    padding: 0.875rem 1.5rem;
  }

  .nav-cta {
    display: inline-block !important;
    margin-top: 0.5rem;
  }
}

@media (max-width: 48rem) {
  .hero { padding: 4.5rem 0 5rem; }

  .section { padding: 3.75rem 0; }

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