@font-face {
  font-family: Golos;
  src: url("/assets/golos-text.ttf") format("truetype");
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: Oswald;
  src: url("/assets/oswald.ttf") format("truetype");
  font-weight: 200 700;
  font-display: swap;
}
:root {
  --ink: #102d57;
  --muted: #566378;
  --paper: #f7f9fc;
  --line: #d8e0eb;
  --accent: #003d9b;
  --accent-text: #002c73;
  --blue: #002c73;
  --white: #fff;
  --display: Oswald, sans-serif;
  --body: Golos, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font: 15px/1.65 var(--body);
}
body:has(dialog[open]) {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button {
  color: inherit;
}
button:disabled {
  cursor: wait;
  opacity: 0.65;
}
[hidden] {
  display: none !important;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.12;
}
h2 {
  font-size: clamp(36px, 4vw, 54px);
  letter-spacing: -0.025em;
}
h3 {
  font-size: 26px;
}
em {
  font-style: normal;
  color: var(--accent-text);
}
:focus-visible {
  outline: 3px solid #126ca4;
  outline-offset: 5px;
}
::selection {
  background: #c4d7f5;
  color: var(--ink);
}
.container {
  width: min(1280px, calc(100% - 96px));
  margin-inline: auto;
}
.eyebrow {
  font-size: 10px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  background: var(--ink);
  color: white;
  padding: 12px;
  z-index: 100;
}
.skip-link:focus {
  top: 12px;
}
.topline {
  background: var(--ink);
  color: #e1e8eb;
  font-size: 10px;
}
.topline .container {
  display: flex;
  justify-content: space-between;
  padding-block: 7px;
}
.site-header {
  position: sticky;
  top: 0;
  background: var(--paper);
  z-index: 20;
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 76px;
}
.wordmark {
  font-family: var(--display);
  font-size: 40px;
  font-weight: 600;
  line-height: 0.85;
  letter-spacing: -0.04em;
  display: inline-flex;
  flex-direction: column;
  flex-shrink: 0;
}
.wordmark span {
  font: 8px/1.5 var(--body);
  letter-spacing: 0.33em;
  margin-top: 7px;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 12px;
}
.desktop-nav a {
  padding: 8px 0;
}
.desktop-nav a:hover,
.text-link:hover {
  color: var(--accent-text);
}
.header-phone {
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}
.header-phone span {
  display: block;
  text-align: right;
  font-size: 10px;
  font-weight: 400;
  color: var(--muted);
}
.menu-button {
  display: none;
  border: 1px solid var(--line);
  background: none;
  width: 44px;
  height: 44px;
  padding: 11px;
}
.menu-button span {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-height: 54px;
  padding: 15px 24px;
  background: var(--accent);
  color: #15232b;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 600;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: #1958b7;
  transform: translateY(-2px);
}
.button span {
  font-size: 21px;
  line-height: 1;
}
.button.secondary {
  background: var(--ink);
  color: white;
}
.text-link {
  font-size: 12px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 6px;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  padding-block: 64px 60px;
  align-items: center;
}
.hero-copy .eyebrow {
  letter-spacing: 0.07em;
  font-size: 10px;
}
.status-dot {
  display: inline-block;
  background: var(--accent);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-right: 6px;
}
.hero h1 {
  font-size: clamp(46px, 4.8vw, 72px);
  letter-spacing: -0.025em;
  margin-top: 24px;
  line-height: 1.08;
}
.hero-description {
  max-width: 470px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  margin-top: 25px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 29px;
}
.hero-proof {
  display: flex;
  gap: 38px;
  border-top: 1px solid var(--line);
  padding-top: 23px;
  margin-top: 36px;
  font-size: 10px;
  color: var(--muted);
}
.hero-proof strong {
  display: block;
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
}
.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 480px;
  background: var(--ink);
}
.hero-visual > img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: 52% center;
}
.photo-tag {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  padding: 15px 16px;
  background: var(--paper);
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 11px;
  line-height: 1.5;
}
.crosshair {
  font-size: 30px;
  color: var(--accent-text);
  font-weight: 300;
}
.photo-index {
  margin-left: auto;
  font-size: 9px;
  letter-spacing: 0.08em;
}
.brand-strip {
  padding-block: 30px 26px;
  border-block: 1px solid var(--line);
  background: #edf2f9;
}
.brands {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 22px;
  margin-top: 19px;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 500;
}
.brands small {
  font: 10px var(--body);
}
.brand-note {
  font-size: 10px;
  color: var(--muted);
  margin-top: 15px;
}
.section {
  padding-block: 88px;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 36px;
}
.section-heading h2 {
  margin-top: 13px;
}
.section-heading > p {
  max-width: 350px;
  color: var(--muted);
  font-size: 13px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}
.service-card {
  padding: 28px 30px;
  min-height: 325px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background 0.2s;
}
.service-card + .service-card {
  border-left: 1px solid var(--line);
}
.service-number {
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 36px;
}
.service-card h3 {
  font-size: 38px;
  margin-block: 12px 20px;
}
.service-card h3 span {
  font-size: 26px;
}
.service-card p:not(.eyebrow) {
  font-size: 12px;
  max-width: 250px;
  color: var(--muted);
}
.service-card .round-arrow {
  position: absolute;
  right: 24px;
  top: 23px;
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  font-size: 19px;
}
.service-card:hover {
  background: #e6edf8;
}
.service-card.featured {
  background: var(--ink);
  color: var(--white);
}
.service-card.featured p,
.service-card.featured .service-number {
  color: #c1cdd3;
}
.service-card.featured h3 {
  font-size: 68px;
  line-height: 1;
  margin-top: 6px;
  margin-bottom: 12px;
}
.service-card.featured:hover {
  background: var(--blue);
}
.service-wide {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid var(--line);
  padding-block: 23px;
}
.service-wide > span {
  font-size: 11px;
  max-width: 600px;
  color: var(--muted);
}
.service-wide strong {
  font-size: 12px;
  white-space: nowrap;
  font-weight: 500;
}
.service-wide strong span {
  margin-left: 24px;
}

/* Original white gear emblem is preserved on its branded blue surface. */
.site-header {
  background: #002c73;
  color: white;
  border-bottom-color: #254f90;
}
.header-phone span {
  color: #cbdaf3;
}
.desktop-nav a:hover {
  color: white;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.wordmark {
  display: block;
  width: 260px;
  line-height: 1;
}
.wordmark img {
  width: 100%;
  height: auto;
}
.menu-button {
  border-color: #7390bc;
}
.menu-button span {
  background: white;
}
.button {
  color: white;
}
.topline {
  background: #082452;
}
.service-card.featured,
.estimate-section,
.contact-section {
  background: #002c73;
}
.status-dot {
  background: #003d9b;
}
