:root {
  --coal: #07111f;
  --night: #0d1828;
  --blue: #12243b;
  --gold: #cfaf70;
  --gold-bright: #f2d48b;
  --sand: #efe3ca;
  --mist: #d7dde6;
  --silver: #f2f4f7;
  --line: rgba(255, 255, 255, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--coal);
  color: var(--silver);
  font-family: "Manrope", system-ui, sans-serif;
}

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

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

.frame {
  width: min(100% - 32px, 1280px);
  margin: 0 auto;
}

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 17, 31, 0.84);
  backdrop-filter: blur(16px);
}

.nav-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
}

.brand img {
  width: 58px;
  height: 42px;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(207, 175, 112, 0.45);
}

.brand strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--mist);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgba(242, 244, 247, 0.76);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links a,
.nav-action,
.button {
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.nav-links a {
  padding: 12px;
}

.nav-links a:hover {
  color: #fff;
}

.nav-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-action,
.button-gold {
  background: var(--gold);
  color: var(--coal);
}

.button-gold:hover,
.nav-action:hover {
  background: var(--gold-bright);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.button-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}

.button-dark {
  width: 100%;
  border-color: var(--night);
  background: var(--night);
  color: #fff;
}

.hero {
  min-height: 100vh;
  padding-top: 118px;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.96), rgba(7, 17, 31, 0.7) 45%, rgba(7, 17, 31, 0.92)),
    linear-gradient(180deg, rgba(7, 17, 31, 0), rgba(7, 17, 31, 0.88)),
    var(--hero-image) center/cover no-repeat;
}

.hero-grid {
  display: grid;
  min-height: calc(100vh - 118px);
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: 56px;
  padding-bottom: 56px;
}

.hero-logo {
  width: min(100%, 560px);
  margin-left: auto;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.eyebrow {
  margin: 0;
  color: var(--gold-bright);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-top: 24px;
  font-size: clamp(4rem, 8vw, 7.6rem);
  line-height: 0.88;
}

h1 span {
  display: block;
  color: var(--gold);
}

.hero-body {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(242, 244, 247, 0.82);
  font-size: 1.12rem;
  line-height: 1.8;
}

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

.metrics-band {
  border-block: 1px solid var(--line);
  background: #091525;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.metrics-grid div {
  min-height: 126px;
  padding: 26px 22px;
  border-right: 1px solid var(--line);
}

.metrics-grid div:last-child {
  border-right: 0;
}

.metrics-grid span {
  display: block;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.metrics-grid strong {
  display: block;
  margin-top: 10px;
  font-size: 1.35rem;
}

.split-section,
.reach-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  border-bottom: 1px solid var(--line);
}

.split-image,
.reach-image,
.contact-photo {
  min-height: 520px;
  overflow: hidden;
}

.split-image img,
.reach-image img,
.contact-photo img,
.image-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-copy,
.reach-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 6vw, 86px);
  background: var(--coal);
}

.split-copy h2,
.reach-copy h2,
.section-head h2,
.services-section h2,
.office-section h2,
.contact-copy h2 {
  margin-top: 18px;
  font-size: clamp(2.6rem, 4.4vw, 5rem);
  line-height: 0.96;
}

.split-copy p:not(.eyebrow),
.reach-copy p,
.section-head p,
.contact-copy p {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(242, 244, 247, 0.74);
  line-height: 1.85;
}

.dark-section,
.services-section,
.office-section {
  padding: 88px 0;
  border-bottom: 1px solid var(--line);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.section-head p {
  max-width: 520px;
  margin: 0;
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 42px;
}

.image-tile {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--night);
}

.image-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 17, 31, 0.05), rgba(7, 17, 31, 0.84));
}

.image-tile div {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 24px;
}

.image-tile span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.24em;
}

.image-tile h3 {
  margin: 8px 0 0;
  font-size: 1.55rem;
}

.image-tile p {
  margin: 8px 0 0;
  color: rgba(242, 244, 247, 0.74);
  line-height: 1.55;
}

.services-section {
  background: #0a1524;
}

.service-grid,
.office-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.service-grid article,
.office-grid article {
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.service-grid h3,
.office-grid h3 {
  margin: 0;
  color: #fff;
  font-size: 1.25rem;
}

.service-grid p,
.office-grid p {
  margin: 14px 0 0;
  color: rgba(242, 244, 247, 0.72);
  line-height: 1.7;
}

.region-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.region-list span {
  border: 1px solid rgba(207, 175, 112, 0.44);
  padding: 12px 14px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.office-section {
  background: var(--coal);
}

.office-city {
  color: var(--gold) !important;
  font-weight: 700;
}

.contact-section {
  background: linear-gradient(135deg, var(--sand), #d9c293);
  color: var(--night);
  padding: 72px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.72fr 0.58fr 0.9fr;
  gap: 16px;
  align-items: stretch;
}

.contact-copy,
.inquiry-form {
  border: 1px solid rgba(13, 24, 40, 0.18);
  padding: 32px;
}

.contact-copy .eyebrow {
  color: #835b15;
}

.contact-copy p {
  color: rgba(13, 24, 40, 0.78);
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 34px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-photo {
  min-height: 440px;
}

.inquiry-form {
  background: rgba(255, 255, 255, 0.58);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid rgba(13, 24, 40, 0.18);
  background: rgba(255, 255, 255, 0.8);
  color: var(--night);
  font: inherit;
  min-height: 54px;
  padding: 14px;
  outline: none;
}

.form-grid textarea,
.form-grid select,
.form-grid input[name="email"] {
  grid-column: 1 / -1;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: #835b15;
}

.form-message {
  margin: 0 0 14px;
  color: #245b34;
  font-weight: 800;
}

.form-error {
  margin: 12px 0 0;
  color: #8f1d1d;
  font-weight: 800;
}

.inquiry-form .button {
  margin-top: 16px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 24px 0;
  color: rgba(242, 244, 247, 0.62);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-footer .frame {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

@media (max-width: 1080px) {
  .nav-links,
  .nav-action {
    display: none;
  }

  .hero-grid,
  .split-section,
  .reach-section,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-logo {
    margin: 0;
  }

  .metrics-grid,
  .sector-grid,
  .service-grid,
  .office-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .frame {
    width: min(100% - 24px, 1280px);
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 50px;
    height: 36px;
  }

  .brand strong {
    font-size: 1.28rem;
  }

  .brand small {
    font-size: 0.58rem;
  }

  .hero {
    padding-top: 98px;
  }

  .hero-grid {
    min-height: auto;
    padding: 54px 0;
  }

  h1 {
    font-size: clamp(3.3rem, 18vw, 4.2rem);
  }

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

  .metrics-grid,
  .sector-grid,
  .service-grid,
  .office-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .metrics-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .split-image,
  .reach-image,
  .contact-photo,
  .image-tile {
    min-height: 320px;
  }

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