:root {
  --navy: #224970;
  --deep-navy: #16314e;
  --gold: #e3b03d;
  --bronze: #b07b2a;
  --paper: #f7f6f2;
  --navy-tint: #eef2f6;
  --body: #2a3340;
  --white: #ffffff;
  --line: rgba(34, 73, 112, 0.16);
  --shadow: 0 22px 50px rgba(22, 49, 78, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 82px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(247, 246, 242, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  width: clamp(176px, 20vw, 260px);
  height: 62px;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translateY(-6px) scale(5.2);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 30px);
  color: var(--deep-navy);
  font-size: 0.92rem;
  font-weight: 650;
}

.nav-links a {
  padding: 10px 0;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--bronze);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 6px;
  font-weight: 750;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta {
  background: var(--deep-navy);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(22, 49, 78, 0.18);
}

.button:hover,
.button:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.96fr);
  align-items: center;
  gap: clamp(32px, 5vw, 86px);
  min-height: min(650px, calc(100vh - 82px));
  padding: clamp(38px, 5vw, 72px) clamp(20px, 5vw, 78px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(22, 49, 78, 0.98), rgba(34, 73, 112, 0.94)),
    var(--deep-navy);
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  right: -11vw;
  bottom: -18vw;
  width: min(52vw, 680px);
  aspect-ratio: 1;
  border: 1px solid rgba(227, 176, 61, 0.24);
  border-radius: 50%;
}

.hero-copy,
.hero-mark {
  position: relative;
  z-index: 1;
}

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

.hero h1 {
  max-width: 850px;
  margin: 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 4.7vw, 5.35rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero-text {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 1.5vw, 1.34rem);
}

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

.button-primary {
  background: var(--gold);
  color: var(--deep-navy);
  box-shadow: 0 16px 32px rgba(227, 176, 61, 0.18);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: var(--white);
}

.hero-mark {
  justify-self: center;
  width: min(100%, 470px);
}

.hero-mark img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.credibility {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.credibility div {
  min-height: 148px;
  padding: clamp(22px, 3vw, 34px);
  background: var(--white);
}

.credibility strong {
  display: block;
  color: var(--deep-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.2vw, 2.15rem);
  line-height: 1.05;
}

.credibility span {
  display: block;
  margin-top: 12px;
  color: rgba(42, 51, 64, 0.74);
  font-size: 0.94rem;
}

.section,
.contact {
  padding: clamp(64px, 9vw, 120px) clamp(20px, 5vw, 78px);
}

.section-heading {
  max-width: 820px;
}

.section-heading h2,
.contact h2 {
  margin: 0;
  color: var(--deep-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: end;
  background: var(--paper);
}

.intro > p,
.reach-panel p,
.contact p {
  margin: 0;
  color: rgba(42, 51, 64, 0.76);
  font-size: clamp(1.04rem, 1.4vw, 1.22rem);
}

.services {
  background: var(--navy-tint);
}

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

.service-grid article {
  min-height: 278px;
  padding: clamp(24px, 3vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  border: 1px solid rgba(227, 176, 61, 0.42);
  border-radius: 50%;
  color: var(--bronze);
  font-weight: 800;
}

.service-grid h3 {
  margin: 0 0 14px;
  color: var(--deep-navy);
  font-size: 1.18rem;
  line-height: 1.25;
}

.service-grid p {
  margin: 0;
  color: rgba(42, 51, 64, 0.72);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 1.08fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: start;
}

.reach-panel {
  padding-top: 10px;
}

.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.city-list li,
.product-list span {
  border: 1px solid rgba(34, 73, 112, 0.18);
  border-radius: 999px;
  background: var(--white);
  color: var(--deep-navy);
  font-weight: 700;
}

.city-list li {
  padding: 10px 16px;
}

.products {
  background: var(--deep-navy);
  color: var(--white);
}

.products .section-heading h2 {
  color: var(--white);
}

.product-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 38px;
}

.product-list span {
  display: flex;
  align-items: center;
  min-height: 78px;
  padding: 16px 18px;
  border-color: rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
}

.brand-wall {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: 38px;
  background: var(--line);
  border: 1px solid var(--line);
}

.brand-wall span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 94px;
  padding: 18px;
  background: var(--white);
  color: var(--deep-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.4vw, 1.28rem);
  text-align: center;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.54fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: end;
  background: var(--navy);
  color: var(--white);
}

.contact h2 {
  color: var(--white);
}

.contact p {
  max-width: 680px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
}

address {
  display: grid;
  gap: 14px;
  color: rgba(255, 255, 255, 0.84);
  font-style: normal;
}

address a {
  color: var(--gold);
  font-size: clamp(1.28rem, 2.2vw, 2rem);
  font-weight: 800;
  overflow-wrap: anywhere;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

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

  .hero {
    min-height: auto;
  }

  .hero-mark {
    width: min(100%, 420px);
    justify-self: start;
  }

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

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

@media (max-width: 640px) {
  .site-header {
    min-height: 72px;
    padding: 10px 16px;
    gap: 10px;
  }

  .brand {
    width: clamp(166px, 54vw, 210px);
    height: 52px;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 13px;
    font-size: 0.86rem;
  }

  .hero {
    padding-top: 44px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 13vw, 3.75rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .credibility,
  .service-grid,
  .product-list,
  .brand-wall {
    grid-template-columns: 1fr;
  }

  .credibility div {
    min-height: 128px;
  }

  .service-grid article {
    min-height: auto;
  }
}
