:root {
  --navy: #061b36;
  --navy-2: #08264b;
  --ink: #08142b;
  --gold: #b87817;
  --gold-2: #e7b756;
  --gold-3: #f7d681;
  --line: #dde4ec;
  --muted: #506070;
  --paper: #ffffff;
  --soft: #f6f8fb;
  --shadow: 0 14px 30px rgba(7, 28, 55, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Avenir, "Avenir Next", "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

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

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #fff;
  box-shadow: 0 2px 18px rgba(3, 20, 42, 0.08);
}

.topbar {
  background: linear-gradient(90deg, #061830, #05152b);
  color: #fff;
  font-size: 0.95rem;
}

.topbar__inner {
  max-width: 1480px;
  min-height: 46px;
  margin: 0 auto;
  padding: 0 6vw;
  display: flex;
  align-items: center;
  gap: 22px;
}

.top-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}

.top-link svg {
  width: 19px;
  height: 19px;
  color: var(--gold-2);
}

.divider {
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, 0.42);
}

.socials {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--gold-2);
  font-weight: 800;
}

.socials svg {
  width: 18px;
  height: 18px;
}

.nav-wrap {
  max-width: 1480px;
  min-height: 118px;
  margin: 0 auto;
  padding: 0 6vw;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-right: auto;
}

.brand img {
  width: clamp(220px, 25vw, 360px);
  height: 96px;
  object-fit: contain;
  object-position: left center;
}

.brand span {
  max-width: 260px;
  color: #a96708;
  font-size: clamp(0.78rem, 1.05vw, 0.98rem);
  font-weight: 650;
  letter-spacing: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 48px);
  font-weight: 750;
  color: #07122b;
}

.main-nav a {
  min-height: 118px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
}

.main-nav a.active {
  border-color: var(--gold);
}

.nav-cta,
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 8px;
  font-weight: 800;
}

.nav-cta {
  min-width: 162px;
  color: #fff;
  background: linear-gradient(135deg, var(--gold-3), var(--gold) 58%, #7a4a0d);
  box-shadow: 0 12px 22px rgba(217, 148, 32, 0.24);
}

.menu-toggle,
.menu-button {
  display: none;
}

.hero {
  min-height: 410px;
  display: grid;
  grid-template-columns: minmax(420px, 56%) 1fr;
  background: linear-gradient(135deg, #061a35 0%, #08264b 58%, #0b2e5b 100%);
  overflow: hidden;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 48px 6vw 54px;
  color: #fff;
}

.hero__content::after {
  content: "";
  position: absolute;
  top: 0;
  right: -240px;
  width: 340px;
  height: 100%;
  background: rgba(5, 21, 43, 0.76);
  transform: skewX(-33deg);
  transform-origin: top;
  z-index: 1;
  pointer-events: none;
}

.hero__content > * {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-2);
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.eyebrow::after {
  content: "";
  display: block;
  width: 62px;
  height: 3px;
  margin-top: 10px;
  background: var(--gold);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.45rem, 4.8vw, 4.35rem);
  line-height: 1.06;
}

.hero-copy {
  max-width: 620px;
  margin: 20px 0 28px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1rem, 1.45vw, 1.16rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.button {
  min-width: 196px;
  padding: 0 28px;
  border: 2px solid transparent;
  font-size: 1rem;
}

.button--gold {
  color: #fff;
  background: linear-gradient(135deg, var(--gold-3), var(--gold) 58%, #7a4a0d);
}

.button--outline {
  color: #fff;
  border-color: var(--gold);
  background: rgba(4, 16, 34, 0.42);
}

.button span {
  color: var(--gold-2);
  font-size: 1.65rem;
  line-height: 0;
}

.button--gold span {
  color: #fff;
}

.hero__image {
  min-height: 410px;
  background:
    linear-gradient(90deg, rgba(6, 26, 53, 0.32), rgba(6, 26, 53, 0)),
    url("hero-meeting.png") center / cover;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: linear-gradient(90deg, #061b36, #092a52);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  padding: 0 5vw;
}

.trust-item {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 0.95rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-right: 1px solid rgba(255, 255, 255, 0.34);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item svg {
  width: 46px;
  height: 46px;
  color: var(--gold-3);
  flex: 0 0 auto;
}

.services {
  padding: 18px 5.7vw 34px;
  background: linear-gradient(180deg, #fff, #f8fafc);
}

.section-heading {
  max-width: 1480px;
  margin: 0 auto 14px;
}

.section-heading .eyebrow {
  margin-bottom: 3px;
  font-size: 0.92rem;
}

.section-heading .eyebrow::after {
  display: none;
}

h2 {
  color: var(--navy);
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  line-height: 1.05;
}

.service-grid {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 10px;
}

.service-card {
  min-height: 204px;
  padding: 24px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(8, 28, 55, 0.06);
}

.service-card svg {
  width: 44px;
  height: 44px;
  color: var(--gold);
}

.service-card h3 {
  margin: 12px 0 12px;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.25;
}

.service-card p {
  margin: 0;
  color: #13213a;
  font-size: 0.94rem;
}

.brand-feature {
  display: grid;
  grid-template-columns: minmax(360px, 45%) 1fr;
  min-height: 430px;
  background: linear-gradient(90deg, #071a32, #092743);
  color: #fff;
}

.brand-feature__image {
  min-height: 430px;
  background:
    linear-gradient(90deg, rgba(5, 17, 34, 0.1), rgba(5, 17, 34, 0.55)),
    url("office-logo-wall.png") center / cover;
}

.brand-feature__copy {
  align-self: center;
  max-width: 760px;
  padding: 54px 6vw;
}

.brand-feature h2 {
  color: #fff;
  max-width: 680px;
}

.brand-feature__copy > p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
}

.word-row {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(231, 183, 86, 0.52);
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.word-row span {
  position: relative;
}

.word-row span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -16px;
  top: 0.18em;
  width: 1px;
  height: 1.1em;
  background: var(--gold-2);
}

.contact-band {
  padding: 44px 5.7vw 58px;
  background: #fff;
}

.contact-grid {
  max-width: 1480px;
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.contact-card,
.contact-list a {
  display: grid;
  gap: 8px;
  padding: 24px;
  color: var(--ink);
  background: linear-gradient(180deg, #fff, #f9fbfd);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(8, 28, 55, 0.07);
}

.contact-label,
.contact-list span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-card strong,
.contact-list strong {
  color: var(--navy);
  font-size: clamp(1rem, 1.7vw, 1.24rem);
  line-height: 1.25;
}

.contact-hero {
  min-height: 360px;
  display: grid;
  align-items: center;
  padding: 64px 6vw;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5, 17, 34, 0.95), rgba(5, 17, 34, 0.76)),
    url("office-logo-wall.png") center / cover;
}

.contact-hero > div {
  max-width: 820px;
}

.contact-page {
  padding: 58px 5.7vw;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 22px;
  background: linear-gradient(180deg, #fff, #f6f8fb);
}

.contact-panel,
.contact-aside {
  border-radius: 8px;
}

.contact-panel {
  padding: clamp(28px, 5vw, 48px);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-list {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.contact-aside {
  padding: clamp(28px, 4vw, 44px);
  align-self: stretch;
  display: grid;
  align-content: center;
  color: #fff;
  background: linear-gradient(135deg, #061830, #092a52);
}

.contact-aside h2 {
  color: #fff;
}

.contact-aside p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}

.site-footer {
  color: #fff;
  background: #05152b;
  border-top: 1px solid rgba(231, 183, 86, 0.36);
}

.footer-inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 28px 6vw;
  display: flex;
  align-items: center;
  gap: 28px;
}

.footer-brand img {
  width: 240px;
  height: 86px;
  object-fit: contain;
  object-position: left center;
}

.footer-contact {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 24px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.footer-contact a {
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .nav-wrap {
    gap: 22px;
  }

  .main-nav {
    gap: 22px;
  }

  .nav-cta {
    display: none;
  }

  .service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .topbar__inner {
    flex-wrap: wrap;
    min-height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    gap: 10px 16px;
  }

  .divider,
  .socials {
    display: none;
  }

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

  .brand img {
    width: 230px;
    height: 78px;
  }

  .brand span {
    display: none;
  }

  .menu-button {
    width: 44px;
    height: 44px;
    display: grid;
    align-content: center;
    gap: 5px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    cursor: pointer;
  }

  .menu-button span {
    height: 2px;
    background: var(--navy);
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 6vw 18px;
    background: #fff;
    box-shadow: 0 18px 24px rgba(7, 24, 48, 0.14);
  }

  .main-nav a {
    min-height: 48px;
    border-bottom: 1px solid var(--line);
  }

  .menu-toggle:checked ~ .main-nav {
    display: flex;
  }

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

  .hero__content {
    padding-top: 42px;
  }

  .hero__content::after {
    display: none;
  }

  .hero__image {
    min-height: 300px;
    order: -1;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
  }

  .trust-item {
    justify-content: flex-start;
    padding-left: 6vw;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .trust-item:nth-child(even) {
    border-right: 0;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-feature {
    grid-template-columns: 1fr;
  }

  .brand-feature__image {
    min-height: 320px;
  }

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

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

  .footer-contact {
    margin-left: 0;
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .topbar__inner,
  .nav-wrap,
  .hero__content,
  .services,
  .contact-band,
  .contact-page,
  .contact-hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .topbar {
    font-size: 0.82rem;
  }

  .top-link {
    white-space: normal;
  }

  .brand img {
    width: 190px;
    height: 66px;
  }

  .hero__image {
    min-height: 230px;
  }

  h1 {
    font-size: 2.35rem;
  }

  .hero-actions {
    gap: 12px;
  }

  .button {
    width: 100%;
    min-width: 0;
  }

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

  .trust-item {
    min-height: 76px;
    border-right: 0;
  }

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

  .brand-feature__copy {
    padding: 38px 20px;
  }

  .brand-feature__image {
    min-height: 250px;
  }

  .word-row {
    display: grid;
    gap: 12px;
  }

  .word-row span::after {
    display: none;
  }

  .contact-card,
  .contact-list a {
    padding: 20px;
  }

  .footer-contact {
    display: grid;
    gap: 10px;
  }

  .footer-contact a {
    white-space: normal;
  }
}
