:root {
  --ink: #102033;
  --navy: #071522;
  --blue: #1e4262;
  --teal: #4f9c9a;
  --gold: #caa45c;
  --paper: #f7f6f2;
  --mist: #e8eef0;
  --line: rgba(16, 32, 51, 0.14);
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(7, 21, 34, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(7, 21, 34, 0.82), rgba(7, 21, 34, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 23px;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 30px);
  font-size: 0.88rem;
  font-weight: 700;
}

.nav-links a {
  opacity: 0.88;
}

.nav-links a:hover {
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  padding: 110px clamp(20px, 6vw, 88px) 80px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 21, 34, 0.94) 0%, rgba(7, 21, 34, 0.68) 38%, rgba(7, 21, 34, 0.18) 72%),
    linear-gradient(0deg, rgba(7, 21, 34, 0.82) 0%, rgba(7, 21, 34, 0) 30%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

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

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

h1,
h2 {
  font-family: "Source Serif 4", Georgia, serif;
  line-height: 1.03;
}

h1 {
  max-width: 660px;
  margin-bottom: 16px;
  font-size: clamp(4.1rem, 9vw, 8.8rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.05rem, 4.3vw, 4.6rem);
}

h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 1.1rem;
  line-height: 1.25;
}

.tagline {
  margin-bottom: 22px;
  color: #f4dfad;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 700;
}

.hero-copy {
  max-width: 630px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.hero-actions,
.contact-panel {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.92rem;
  font-weight: 800;
}

.button.primary {
  background: var(--gold);
  color: #15100a;
}

.pending-contact {
  cursor: default;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.44);
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.intro-section,
.band,
.approach-section,
.focus-section,
.contact-section {
  padding: clamp(72px, 9vw, 128px) clamp(20px, 6vw, 88px);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.intro-grid p,
.focus-section p,
.contact-panel p {
  color: #526171;
  font-size: 1.04rem;
}

.band {
  background: var(--white);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 44px;
}

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

.service-card {
  min-height: 245px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbf8 100%);
  box-shadow: 0 8px 26px rgba(16, 32, 51, 0.05);
}

.service-number {
  display: block;
  margin-bottom: 28px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 800;
}

.service-card p,
.timeline-item p {
  margin-bottom: 0;
  color: #5b6775;
  font-size: 0.95rem;
}

.approach-section {
  background:
    linear-gradient(90deg, rgba(79, 156, 154, 0.12), rgba(202, 164, 92, 0.13)),
    var(--mist);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(16, 32, 51, 0.22);
}

.timeline-item {
  position: relative;
  padding: 34px 30px 0 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 7px rgba(30, 66, 98, 0.12);
}

.timeline-item span {
  display: block;
  margin-bottom: 12px;
  color: var(--navy);
  font-weight: 800;
}

.focus-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: center;
  background: var(--navy);
  color: var(--white);
}

.focus-section p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-section {
  background: var(--paper);
}

.contact-panel {
  justify-content: space-between;
  gap: 24px 40px;
  padding: clamp(32px, 5vw, 54px);
  border-top: 5px solid var(--gold);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-panel h2 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(1.9rem, 3.6vw, 3.35rem);
}

.contact-panel p {
  max-width: 720px;
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(20px, 6vw, 88px);
  background: #06101b;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 880px) {
  .site-header {
    position: absolute;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 21, 34, 0.95), rgba(7, 21, 34, 0.58)),
      linear-gradient(0deg, rgba(7, 21, 34, 0.78), rgba(7, 21, 34, 0.1));
  }

  .intro-grid,
  .service-grid,
  .timeline,
  .focus-section {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .timeline {
    gap: 28px;
    border-top: 0;
  }

  .timeline-item {
    padding: 0 0 0 28px;
  }

  .timeline-item::before {
    top: 9px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .brand span:last-child {
    font-size: 0.95rem;
  }

  h1 {
    font-size: clamp(3.35rem, 18vw, 4.35rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .contact-panel {
    align-items: stretch;
  }
}
