:root {
  --navy: #10283a;
  --navy-2: #173348;
  --grey: #5d6870;
  --gold: #b99a64;
  --paper: #f4f1ea;
  --white: #ffffff;
  --line: #ded9cf;
  --soft: #faf8f3;
  --text: #182b38;
  --muted: #647078;
  --shadow: 0 22px 60px rgba(16, 40, 58, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 230px 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 12px clamp(20px, 4vw, 56px);
  background: rgba(244, 241, 234, .93);
  border-bottom: 1px solid rgba(222, 217, 207, .9);
  backdrop-filter: blur(16px);
}

.brand {
  display: block;
  width: 218px;
}

.brand img {
  width: 218px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: #3f4f5a;
  font-size: 14px;
  font-weight: 650;
  white-space: nowrap;
}

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

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

.header-action,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 0 18px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 760;
  cursor: pointer;
}

.header-action,
.button.primary {
  color: var(--white);
  background: var(--navy);
}

.button.secondary {
  color: var(--navy);
  border-color: #aeb4b7;
  background: rgba(255, 255, 255, .36);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, .86fr);
  gap: clamp(30px, 5vw, 78px);
  align-items: center;
  padding: clamp(54px, 7vw, 96px) clamp(20px, 4vw, 56px) 44px;
  background:
    linear-gradient(115deg, rgba(255,255,255,.78), rgba(255,255,255,0) 52%),
    radial-gradient(circle at 88% 18%, rgba(185,154,100,.16), transparent 26%),
    var(--paper);
}

.hero-copy,
.section,
.category-section,
.process-section,
.pricing-section,
.brand-system,
.contact-section,
.site-footer,
.trust-band {
  max-width: 1180px;
  margin: 0 auto;
}

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

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(42px, 5.7vw, 76px);
  line-height: 1;
  font-weight: 760;
}

h2 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.08;
  font-weight: 740;
}

h3 {
  margin-bottom: 11px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.25;
}

.lead {
  max-width: 700px;
  color: #465864;
  font-size: 20px;
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 26px;
}

.role-panel {
  max-width: 720px;
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 12px 34px rgba(16, 40, 58, .08);
}

.role-panel strong {
  color: var(--navy);
  font-size: 17px;
}

.role-panel span {
  color: var(--muted);
  line-height: 1.55;
}

.hero-visual {
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.operations-board {
  position: relative;
  width: min(100%, 500px);
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.operations-board::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16,40,58,.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(16,40,58,.04) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
}

.board-header,
.board-row {
  position: relative;
  z-index: 1;
}

.board-header {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.board-header span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.board-header strong {
  color: var(--navy);
  font-size: 28px;
  line-height: 1.1;
}

.board-row {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 76px;
  margin-bottom: 12px;
  padding: 14px;
  border: 1px solid #e4ded3;
  border-radius: 6px;
  background: rgba(255, 255, 255, .86);
}

.board-row.active {
  border-color: rgba(185, 154, 100, .72);
  background: #fffaf0;
}

.board-row span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--navy);
  font-weight: 800;
  font-size: 13px;
}

.board-row p {
  margin: 0;
  color: #43535d;
  line-height: 1.4;
  font-weight: 650;
}

.route-line {
  position: absolute;
  right: -80px;
  bottom: 18px;
  width: 230px;
  height: 230px;
  border: 2px solid rgba(185,154,100,.34);
  border-left: 0;
  border-bottom: 0;
  border-radius: 50%;
}

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

.trust-band div {
  min-height: 116px;
  padding: 22px;
  background: #fffdf8;
}

.trust-band span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.trust-band strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.35;
}

.section,
.category-section,
.process-section,
.pricing-section,
.brand-system,
.contact-section {
  padding: clamp(62px, 8vw, 104px) clamp(20px, 4vw, 0px);
}

.intro,
.section-heading,
.process-section,
.pricing-section,
.brand-system,
.contact-section {
  display: grid;
  grid-template-columns: .78fr 1fr;
  gap: clamp(24px, 5vw, 72px);
}

.intro-copy p,
.service-card p,
.category-grid p,
.fit-grid p,
.case-grid p,
.process-copy p,
.process-list p,
.pricing-copy p,
.pricing-grid p,
.brand-copy p,
.contact-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.service-section .section-heading,
.category-section .section-heading,
.fit-section .section-heading,
.case-section .section-heading {
  margin-bottom: 34px;
}

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

.service-card,
.category-grid article,
.fit-grid article,
.case-grid article,
.pricing-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-card {
  padding: 26px;
}

.service-number {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--gold);
  font-weight: 850;
  letter-spacing: 1px;
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding-left: 18px;
  color: #455863;
  line-height: 1.45;
}

.category-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.category-grid article {
  min-height: 100%;
  padding: 24px;
}

.category-icon {
  position: relative;
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: #f1eee6;
}

.category-icon::before,
.category-icon::after {
  content: "";
  position: absolute;
}

.roll::before {
  inset: 13px;
  border: 5px solid var(--navy);
  border-radius: 50%;
}

.roll::after {
  right: -9px;
  bottom: 11px;
  width: 34px;
  height: 10px;
  border: 2px solid var(--gold);
  background: rgba(185,154,100,.15);
}

.tint::before {
  left: 13px;
  top: 16px;
  width: 32px;
  height: 23px;
  border: 4px solid var(--navy);
  transform: skewX(-14deg);
}

.software::before {
  left: 11px;
  top: 14px;
  width: 36px;
  height: 27px;
  border: 4px solid var(--navy);
  border-radius: 3px;
}

.software::after {
  left: 24px;
  bottom: 9px;
  width: 12px;
  height: 4px;
  background: var(--gold);
}

.tools::before {
  left: 27px;
  top: 9px;
  width: 6px;
  height: 42px;
  background: var(--navy);
  transform: rotate(43deg);
  border-radius: 8px;
}

.tools::after {
  left: 12px;
  top: 18px;
  width: 31px;
  height: 12px;
  border: 3px solid var(--gold);
  border-radius: 20px;
}

.fit-grid,
.case-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.case-grid,
.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fit-grid article,
.case-grid article,
.pricing-grid article {
  padding: 26px;
}

.case-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.process-section {
  align-items: start;
  background: var(--navy);
  color: #fff;
  max-width: none;
}

.process-section .process-copy,
.process-section .process-list {
  max-width: 1180px;
}

.process-section h2,
.process-section .process-copy p {
  color: #fff;
}

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

.process-list div {
  padding: 22px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
}

.process-list span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 850;
}

.process-list strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 18px;
}

.process-list p {
  margin-bottom: 0;
  color: rgba(255,255,255,.75);
}

.pricing-section {
  border-bottom: 1px solid var(--line);
}

.pricing-grid {
  align-self: start;
}

.brand-system {
  align-items: center;
  background: #fffdf8;
}

.brand-assets {
  display: grid;
  gap: 18px;
}

.logo-display {
  display: grid;
  min-height: 310px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.logo-display img {
  width: min(84%, 520px);
}

.color-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.color-grid div {
  min-height: 126px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 5px;
  padding: 14px;
  color: var(--white);
  background: var(--swatch);
}

.color-grid div:nth-child(4) {
  color: var(--navy);
}

.color-grid span {
  font-size: 12px;
  font-weight: 760;
}

.color-grid strong {
  font-size: 13px;
}

.contact-section {
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-details p {
  display: grid;
  gap: 4px;
  margin: 0;
}

.contact-details strong {
  color: var(--navy);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #3d4e59;
  font-size: 13px;
  font-weight: 760;
}

.contact-form .full,
.form-note {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #c6c0b4;
  border-radius: 4px;
  padding: 13px 12px;
  color: var(--text);
  background: #ffffff;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(185, 154, 100, .2);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.site-footer {
  display: grid;
  grid-template-columns: 210px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 32px clamp(20px, 4vw, 0px) 44px;
  color: #52636e;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.site-footer img {
  width: 190px;
  height: auto;
}

.site-footer p {
  margin: 0;
}

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

  .site-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .intro,
  .section-heading,
  .process-section,
  .pricing-section,
  .brand-system,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .category-grid,
  .fit-grid,
  .trust-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }

  .brand {
    width: 190px;
  }

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

  .header-action {
    width: 100%;
  }

  .site-nav {
    width: 100%;
    gap: 14px;
    font-size: 13px;
  }

  h1 {
    font-size: 35px;
    font-weight: 720;
  }

  .lead {
    font-size: 17px;
  }

  .hero,
  .trust-band,
  .service-grid,
  .category-grid,
  .fit-grid,
  .case-grid,
  .process-list,
  .pricing-grid,
  .color-grid,
  .contact-form,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .operations-board {
    padding: 20px;
  }

  .board-row {
    grid-template-columns: 40px 1fr;
  }

  .contact-form {
    padding: 20px;
  }

  .site-footer {
    align-items: start;
  }
}
