:root {
  --navy: #08274b;
  --navy-deep: #041a33;
  --navy-soft: #123b68;
  --gold: #c9972f;
  --gold-dark: #a8791e;
  --ink: #17202a;
  --muted: #65707d;
  --line: #dfe4e8;
  --paper: #ffffff;
  --soft: #f5f7f8;
  --max: 1180px;
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.shell {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(8,39,75,.09);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: block;
  width: 178px;
  height: 57px;
  overflow: hidden;
  text-decoration: none;
}

.brand-logo-frame {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.brand img {
  width: 170%;
  max-width: none;
  transform: translate(-20.5%, -35.2%);
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: .92rem;
  font-weight: 650;
}

.nav a {
  text-decoration: none;
  color: var(--navy);
}

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

.nav-contact {
  padding: 10px 15px;
  border: 1px solid rgba(8,39,75,.2);
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 96px;
  background:
    radial-gradient(circle at 82% 12%, rgba(201,151,47,.16), transparent 29%),
    linear-gradient(135deg, #fff 0%, #f7f9fb 58%, #eef3f7 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -210px;
  width: 460px;
  aspect-ratio: 1;
  border: 1px solid rgba(8,39,75,.09);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, .65fr);
  align-items: center;
  gap: 72px;
}

.hero-copy {
  text-align: center;
}

.hero-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.hero-logo {
  width: min(100%, 520px);
  height: auto;
}

.hero-copy .lead {
  margin-left: auto;
  margin-right: auto;
}

.hero-copy .hero-actions {
  justify-content: center;
}

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

h1, h2, h3 {
  margin-top: 0;
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: -.035em;
}

h1 {
  max-width: 850px;
  margin-bottom: 25px;
  font-size: clamp(2.75rem, 6vw, 5.2rem);
  font-weight: 750;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 720;
}

h3 {
  margin-bottom: 16px;
  font-size: 1.6rem;
}

.lead {
  max-width: 760px;
  margin: 0;
  color: #455463;
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 750;
  text-decoration: none;
}

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

.button-primary:hover {
  background: var(--navy-deep);
}

.button-secondary {
  color: var(--navy);
  border: 1px solid rgba(8,39,75,.18);
  background: rgba(255,255,255,.76);
}

.hero-card {
  padding: 34px;
  color: #fff;
  background: var(--navy);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(4,26,51,.14);
}

.hero-card-kicker {
  color: #e6c167;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-card p {
  margin: 22px 0;
  font-size: 1.25rem;
  line-height: 1.5;
}

.hero-card-rule {
  height: 1px;
  margin: 25px 0 20px;
  background: rgba(255,255,255,.18);
}

.hero-card-small {
  color: rgba(255,255,255,.7);
  font-size: .88rem;
}

.section {
  padding: 104px 0;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 48px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  position: relative;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.service-card-accent {
  background: var(--soft);
}

.card-number {
  display: block;
  margin-bottom: 52px;
  color: var(--gold-dark);
  font-size: 1.12rem;
  font-weight: 850;
  letter-spacing: .08em;
}

.service-card p {
  color: #4a5661;
}

.card-note {
  padding-top: 15px;
  border-top: 1px solid var(--line);
  font-size: .94rem;
}

.text-link {
  display: inline-block;
  margin-top: 5px;
  color: var(--navy);
  font-weight: 750;
  text-decoration: none;
}

.project-section {
  color: #eaf0f5;
  background: var(--navy);
}

.project-section h2 {
  color: #fff;
}

.eyebrow-light {
  color: #e7bd5a;
}

.project-grid {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 80px;
}

.project-copy p {
  color: rgba(255,255,255,.76);
}

.project-copy .project-lead {
  margin-top: 0;
  color: #fff;
  font-size: 1.35rem;
  line-height: 1.5;
}

.project-disclaimer {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 22px;
  margin-top: 36px;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255,255,255,.18);
  font-size: .92rem;
}

.project-disclaimer strong {
  color: #e7bd5a;
}

.project-disclaimer span {
  color: rgba(255,255,255,.72);
}

.profile-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 70px;
  align-items: center;
}

.portrait-wrap {
  overflow: hidden;
  width: min(100%, 320px);
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  background: #101820;
  box-shadow: 0 22px 50px rgba(8,39,75,.12);
}

.portrait-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-copy {
  max-width: 720px;
}

.profile-lead {
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 600;
}

.profile-copy p:not(.eyebrow) {
  color: #4b5762;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.contact-intro {
  max-width: 500px;
  color: #53606d;
  font-size: 1.08rem;
}

.contact-details {
  border-top: 2px solid var(--navy);
}

.contact-row {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 28px;
  padding: 20px 0;
  border-bottom: 1px solid #d5dce1;
}

.contact-row > span {
  color: var(--muted);
  font-size: .84rem;
  font-weight: 750;
}

.contact-row a,
.contact-row strong,
.contact-row address {
  color: var(--navy);
  font-style: normal;
  font-weight: 650;
  text-decoration: none;
}

.contact-row a:hover {
  text-decoration: underline;
}

.footer {
  padding: 28px 0;
  color: rgba(255,255,255,.68);
  background: var(--navy-deep);
  font-size: .86rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer p {
  margin: 0;
}

@media (max-width: 860px) {
  .nav a:not(.nav-contact) {
    display: none;
  }

  .hero {
    padding-top: 74px;
  }

  .hero-grid,
  .project-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .profile-grid {
    grid-template-columns: 230px 1fr;
    gap: 38px;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(calc(100% - 28px), var(--max));
  }

  .nav-wrap {
    min-height: 84px;
  }

  .brand {
    width: 128px;
    height: 54px;
    padding: 2px 0;
  }

  .hero-logo {
    width: min(100%, 360px);
  }

  .hero {
    padding: 58px 0 70px;
  }

  h1 {
    font-size: 2.7rem;
  }

  .section {
    padding: 76px 0;
  }

  .identity-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .hero-card,
  .service-card {
    padding: 27px;
  }

  .project-disclaimer,
  .contact-row {
    grid-template-columns: 1fr;
    gap: 7px;
  }

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

  .portrait-wrap {
    width: 210px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 6px;
  }
}
