:root {
  --bg: #FFFCF9;
  --navy: #1b365d;
  --gold: #987148;
  --ink: #030303;
  --muted: #404040;
  --soft: #fff9f2;
  --band: #e2e2e2;
  --line: rgba(27, 54, 93, 0.22);
  --max: 1216px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  letter-spacing: 0;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.45;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.container,
.nav-shell {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.nav-shell {
  min-height: 114px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  flex: 0 0 auto;
  width: 182px;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 33px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.site-nav a,
.language-switch button {
  color: var(--navy);
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a.active,
.language-switch button:hover,
.language-switch button.active {
  color: var(--gold);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--gold);
  white-space: nowrap;
}

.language-switch button {
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  font-weight: 500;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--navy);
}

.section {
  padding: 86px 0;
}

.hero-section {
  padding-top: 82px;
}

.hero-grid,
.about-grid,
.split-hero,
.contact-grid,
.band-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.93fr);
  gap: 100px;
  align-items: start;
}

.hero-copy {
  padding-top: 58px;
}

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

h1,
h2 {
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
}

h1 {
  margin-bottom: 52px;
  font-size: clamp(42px, 4.1vw, 60px);
  max-width: 720px;
}

h2 {
  margin-bottom: 54px;
  font-size: clamp(34px, 3.3vw, 50px);
}

h3 {
  font-size: 20px;
  line-height: 1.1;
  font-weight: 600;
}

.lead {
  max-width: 620px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;
}

.lead.narrow {
  max-width: 500px;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 598 / 446;
  object-fit: cover;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: var(--bg);
  font-size: 14px;
  line-height: 1;
}

.hero-cta span:first-child {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border-radius: 999px;
  background: #231f20;
  padding: 0 22px;
  font-weight: 300;
}

.hero-cta-icon {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg);
  font-size: 14px;
  font-weight: 400;
}

.eyebrow {
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  text-transform: uppercase;
}

.two-column-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 220px;
  max-width: 100%;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.35;
}

.two-column-copy p {
  margin-bottom: 46px;
}

.business-section {
  padding-top: 72px;
  padding-bottom: 126px;
}

.unit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px;
}

.unit-card img {
  width: 100%;
  aspect-ratio: 359 / 212;
  object-fit: cover;
}

.unit-card h3 {
  margin: 26px 0 0 27px;
}

.about-hero {
  padding-top: 96px;
}

.about-grid {
  gap: 77px;
}

.about-copy h1 {
  margin-bottom: 38px;
}

.statement {
  margin-bottom: 28px;
  font-size: 21px;
  font-weight: 600;
}

.rich-copy {
  max-width: 620px;
  font-size: 18px;
  line-height: 1.5;
}

.rich-copy p {
  margin-bottom: 26px;
}

.about-image img {
  width: 100%;
  aspect-ratio: 598 / 704;
  object-fit: cover;
  object-position: center;
}

.stats-band {
  padding: 106px 0 92px;
  background: var(--band);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  text-align: center;
}

.stats-grid strong {
  display: block;
  color: var(--gold);
  font-size: clamp(52px, 5vw, 80px);
  line-height: 1;
  font-weight: 600;
}

.stats-grid span {
  display: block;
  margin-top: 16px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.values-section {
  padding-top: 94px;
  padding-bottom: 112px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 82px;
}

.value-grid h3 {
  margin-bottom: 31px;
  color: var(--gold);
  font-size: 29px;
  line-height: 1.15;
}

.value-grid p {
  font-size: 16px;
  line-height: 1.45;
}

.services-page h1,
.services-page h2 {
  margin-bottom: 34px;
}

.services-current-hero {
  padding-top: 80px;
  padding-bottom: 82px;
}

.services-current-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 598px);
  gap: 100px;
  align-items: start;
}

.services-current-copy {
  padding-top: 0;
}

.services-current-copy h1 {
  margin-top: 74px;
}

.services-lead {
  max-width: 620px;
  font-size: 20px;
  line-height: 1.5;
}

.services-hero-image {
  padding-top: 6px;
}

.services-hero-image img {
  width: 100%;
  aspect-ratio: 598 / 481;
  object-fit: cover;
}

.services-card-section {
  padding: 56px 0 110px;
}

.services-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 60px;
  justify-items: start;
}

.service-card {
  width: 100%;
  min-height: 191px;
  padding: 36px 36px 30px;
  background: var(--soft);
}

.service-card h2,
.application-grid h3,
.service-subcards h3 {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.25;
  font-weight: 600;
}

.service-card p,
.application-grid p,
.service-subcards p {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
}

.services-banner {
  overflow: hidden;
}

.services-banner img,
.services-banner video {
  display: block;
  width: 100%;
  height: 550px;
  object-fit: cover;
  object-position: center;
}

.services-detail-intro {
  padding-top: 148px;
  padding-bottom: 96px;
}

.services-inline-image img,
.service-feature > img {
  width: 100%;
  aspect-ratio: 598 / 335;
  object-fit: cover;
}

.services-applications {
  padding: 0 0 126px;
}

.services-applications h2 {
  color: var(--navy);
  font-size: clamp(27px, 2.3vw, 32px);
  line-height: 1.25;
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.application-grid article,
.service-subcards article {
  min-height: 191px;
  padding: 24px;
  background: var(--soft);
}

.application-grid h3,
.service-subcards h3 {
  color: var(--gold);
}

.services-feature-list {
  padding-top: 0;
  padding-bottom: 0;
}

.service-feature {
  display: grid;
  grid-template-columns: minmax(0, 618px) minmax(320px, 598px);
  gap: 100px;
  align-items: start;
  padding-bottom: 164px;
  width: min(1316px, calc(100% - 48px));
}

.service-feature h2 {
  font-size: clamp(34px, 3.3vw, 50px);
}

.service-subcards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-bottom: 164px;
}

.service-list {
  display: grid;
  gap: 16px;
  margin: 38px 0 0;
  padding: 0;
  color: var(--navy);
  font-size: 18px;
  list-style: none;
}

.service-list li::before {
  content: "-";
  margin-right: 12px;
}

.services-cta {
  padding: 100px 0;
  background: var(--navy);
  color: var(--bg);
  text-align: center;
}

.services-cta h2 {
  max-width: 1216px;
  margin: 0 auto 60px;
  color: #ffffff;
  font-size: clamp(34px, 3.3vw, 50px);
}

.services-cta p {
  max-width: 978px;
  margin: 0 auto 60px;
  color: var(--bg);
  font-size: 20px;
  line-height: 1.5;
}

.outline-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid #ffffff;
  border-radius: 4px;
  padding: 0 32px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
}

.page-hero {
  padding-top: 96px;
}

.split-hero {
  align-items: center;
}

.split-hero h1,
.contact-section h1 {
  margin-bottom: 34px;
}

.split-image img {
  width: 100%;
  aspect-ratio: 598 / 530;
  object-fit: cover;
}

.partnership-grid {
  margin-top: 4px;
}

.partnership-band {
  padding: 96px 0;
  background: var(--band);
}

.band-grid {
  align-items: start;
}

.band-grid h2 {
  margin-bottom: 0;
}

.band-copy {
  padding-top: 44px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

.band-copy p {
  margin-bottom: 28px;
}

.contact-section {
  padding-top: 96px;
  padding-bottom: 124px;
}

.contact-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  align-items: start;
}

.contact-points {
  display: grid;
  gap: 30px;
  margin-top: 76px;
}

.contact-points h2 {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 24px;
  line-height: 1.2;
}

.contact-points p {
  max-width: 560px;
  color: var(--muted);
  font-size: 17px;
}

.contact-form {
  display: grid;
  gap: 24px;
  padding: 40px;
  background: var(--soft);
  border: 1px solid rgba(152, 113, 72, 0.42);
}

.contact-form label {
  display: grid;
  gap: 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(27, 54, 93, 0.24);
  background: var(--bg);
  color: var(--ink);
  padding: 14px 15px;
  border-radius: 0;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--gold);
}

.button {
  justify-self: start;
  min-height: 48px;
  border: 0;
  background: var(--navy);
  color: var(--bg);
  padding: 0 24px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 126px;
  padding: 32px 24px;
  background: var(--navy);
  color: var(--bg);
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

@media (max-width: 1100px) {
  .site-nav {
    gap: 20px;
  }

  .hero-grid,
  .about-grid,
  .services-current-grid,
  .service-feature,
  .split-hero,
  .contact-grid,
  .band-grid {
    gap: 56px;
  }

  .two-column-copy {
    gap: 80px;
  }

  .unit-grid,
  .value-grid,
  .services-card-grid {
    gap: 34px;
  }
}

@media (max-width: 860px) {
  .container,
  .nav-shell {
    width: min(100% - 32px, var(--max));
  }

  .nav-shell {
    min-height: 92px;
  }

  .brand {
    width: 158px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    z-index: 10;
    top: 92px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 18px 24px 22px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 34px rgba(27, 54, 93, 0.08);
  }

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

  .site-nav a,
  .language-switch {
    width: 100%;
    padding: 14px 0;
    font-size: 14px;
  }

  .section,
  .hero-section,
  .about-hero,
  .page-hero,
  .services-current-hero,
  .contact-section {
    padding: 64px 0;
  }

  .hero-grid,
  .about-grid,
  .services-current-grid,
  .service-feature,
  .split-hero,
  .contact-grid,
  .band-grid,
  .two-column-copy,
  .unit-grid,
  .value-grid,
  .stats-grid,
  .services-card-grid,
  .application-grid,
  .service-subcards {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .services-current-copy,
  .services-current-copy h1 {
    padding-top: 0;
    margin-top: 0;
  }

  h1 {
    margin-bottom: 30px;
    font-size: clamp(36px, 11vw, 54px);
  }

  h2 {
    margin-bottom: 32px;
    font-size: clamp(30px, 8vw, 44px);
  }

  .lead,
  .rich-copy,
  .two-column-copy,
  .band-copy {
    font-size: 17px;
  }

  .two-column-copy p {
    margin-bottom: 26px;
  }

  .business-section,
  .values-section {
    padding-bottom: 72px;
  }

  .unit-card h3 {
    margin-left: 0;
  }

  .stats-band {
    padding: 64px 0;
  }

  .services-card-section {
    padding: 16px 0 72px;
  }

  .service-card,
  .application-grid article,
  .service-subcards article {
    min-height: auto;
    padding: 28px;
  }

  .services-banner img,
  .services-banner video {
    height: 330px;
  }

  .services-detail-intro {
    padding: 72px 0;
  }

  .services-applications {
    padding-bottom: 72px;
  }

  .service-feature,
  .service-subcards {
    padding-bottom: 72px;
  }

  .services-cta {
    padding: 72px 0;
  }

  .services-cta h2,
  .services-cta p {
    margin-bottom: 36px;
  }

  .contact-form {
    padding: 28px 22px;
  }
}

@media (max-width: 520px) {
  .brand {
    width: 142px;
  }

  .hero-media img,
  .about-image img,
  .services-hero-image img,
  .services-inline-image img,
  .service-feature > img,
  .split-image img,
  .unit-card img {
    aspect-ratio: 4 / 3;
  }

  .stats-grid span {
    font-size: 14px;
  }

  .value-grid h3 {
    font-size: 24px;
  }

  .services-banner img,
  .services-banner video {
    height: 260px;
  }

  .site-footer p {
    font-size: 13px;
    line-height: 1.5;
  }
}
