:root {
  --red: #c1272d;
  --red-dark: #9f2025;
  --ink: #16181a;
  --ink-deep: #0d0f10;
  --paper: #f4f2ee;
  --paper-soft: #faf8f4;
  --white: #ffffff;
  --muted: #5b574f;
  --muted-light: #b7b3ab;
  --line: #e6e1d7;
  --line-dark: #2a2d31;
  --container: 1200px;
  --shadow: 0 20px 55px rgba(15, 17, 19, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  min-width: 320px;
  color: #1c1c1c;
  background: var(--paper);
  font-family: "Barlow", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #ef777b;
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 11px 16px;
  color: var(--white);
  background: var(--red);
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--white);
  background: rgba(22, 24, 26, 0.97);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  width: min(100% - 48px, var(--container));
  min-height: 68px;
  margin-inline: auto;
  gap: 20px;
}

.brand,
.footer-brand {
  display: inline-flex;
  flex: none;
  align-items: center;
  padding: 6px 10px;
  background: var(--white);
  border-radius: 6px;
}

.brand img {
  width: 80px;
  height: 46px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: stretch;
  margin-left: auto;
  align-self: stretch;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  color: #aaa69f;
  font-family: "Archivo", sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.55px;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 11px;
  bottom: 0;
  left: 11px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--white);
}

.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.phone-link {
  color: #e7e4de;
  font-size: 14.5px;
  font-weight: 700;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 10px;
  color: var(--white);
  background: transparent;
  border: 1px solid #44484d;
  border-radius: 5px;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(3) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 26px;
  border: 0;
  border-radius: 6px;
  font-family: "Archivo", sans-serif;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.55px;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-small {
  min-height: 40px;
  padding: 10px 15px;
  font-size: 11px;
}

.button-primary {
  color: var(--white);
  background: var(--red);
}

.button-primary:hover {
  background: var(--red-dark);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-dark:hover {
  background: #000;
}

.button-light {
  color: var(--red);
  background: var(--white);
}

.button-light:hover {
  color: var(--red-dark);
  background: var(--paper-soft);
}

.button-outline {
  color: var(--white);
  background: transparent;
  border: 1.5px solid #51555b;
}

.button-outline:hover {
  border-color: var(--white);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button-row.centered {
  justify-content: center;
}

.page.active {
  animation: page-in 0.35s ease both;
}

@keyframes page-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero,
.page-hero,
.careers-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background-color: var(--ink);
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.024) 0 2px, transparent 2px 22px);
}

.hero-home::before,
.page-hero::before,
.careers-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(100% 110% at 50% -30%, rgba(193, 39, 45, 0.23), transparent 58%);
}

.hero-glow {
  position: absolute;
  width: 580px;
  height: 580px;
  top: -400px;
  left: calc(50% - 290px);
  border-radius: 50%;
  background: rgba(193, 39, 45, 0.22);
  filter: blur(60px);
}

.hero-home-inner {
  position: relative;
  z-index: 1;
  padding-block: 82px 104px;
  text-align: center;
}

.hero-logo-panel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 330px);
  margin-bottom: 28px;
  padding: 14px 25px;
  background: var(--white);
  border-radius: 11px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
}

.hero-logo-panel img {
  width: 280px;
  max-height: 120px;
  object-fit: contain;
}

.eyebrow {
  color: var(--red);
  font-family: "Archivo", sans-serif;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-home h1,
.page-hero h1,
.careers-hero h1 {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  letter-spacing: -1.7px;
  line-height: 0.98;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero-home h1 {
  max-width: 980px;
  margin: 14px auto 0;
  font-size: clamp(42px, 6.4vw, 76px);
}

.hero-home h1 span {
  display: block;
  margin-top: 0.22em;
  color: var(--red);
  font-size: 0.54em;
  letter-spacing: -0.9px;
}

.hero-copy {
  max-width: 650px;
  margin: 24px auto 0;
  color: var(--muted-light);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

.hero-home .button-row {
  margin-top: 36px;
}

.trust-strip {
  color: var(--white);
  background: #0f1113;
  border-top: 1px solid var(--line-dark);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-grid > div {
  padding: 27px 20px;
  text-align: center;
  border-right: 1px solid #23262a;
}

.trust-grid > div:last-child {
  border-right: 0;
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  font-family: "Archivo", sans-serif;
  font-size: 22px;
  font-weight: 900;
}

.trust-grid span {
  margin-top: 4px;
  color: #8f8b83;
  font-size: 12px;
  letter-spacing: 0.65px;
  text-transform: uppercase;
}

.section {
  padding-block: 84px;
}

.section.medium {
  padding-block: 60px 76px;
}

.section-tight-top {
  padding-top: 8px;
}

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

.section-heading.wide {
  max-width: 760px;
}

.section-heading h2,
.process-section h2,
.cta-band h2 {
  margin-top: 11px;
  font-family: "Archivo", sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.03;
  text-transform: uppercase;
  text-wrap: balance;
}

.section-heading > p:last-child {
  margin-top: 17px;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.6;
}

.feature-grid,
.specialty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.feature-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  border-radius: 8px;
}

.card-number {
  color: #d8d3c9;
  font-family: "Archivo", sans-serif;
  font-size: 32px;
  font-weight: 900;
}

.feature-card h3,
.dark-card h3,
.process-grid h3 {
  margin-top: 12px;
  font-family: "Archivo", sans-serif;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.2px;
  line-height: 1.2;
  text-transform: uppercase;
}

.feature-card p,
.dark-card p,
.process-grid p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.dark-card {
  position: relative;
  min-height: 250px;
  padding: 31px;
  overflow: hidden;
  color: var(--white);
  background-color: var(--ink);
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.03) 0 2px, transparent 2px 22px);
  border-radius: 10px;
}

.dark-card::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 180px;
  height: 180px;
  border: 28px solid rgba(193,39,45,0.08);
  border-radius: 50%;
}

.dark-card > span {
  position: relative;
  z-index: 1;
  color: var(--red);
  font-family: "Archivo", sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.dark-card h3,
.dark-card p {
  position: relative;
  z-index: 1;
}

.dark-card h3 {
  margin-top: 17px;
  font-size: 21px;
}

.dark-card p {
  color: var(--muted-light);
}

.section-button {
  margin-top: 30px;
}

.cta-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background-color: var(--red);
  background-image: repeating-linear-gradient(135deg, rgba(0,0,0,0.05) 0 2px, transparent 2px 22px);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-block: 50px;
}

.cta-band h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(26px, 3.4vw, 39px);
}

.cta-band p {
  margin-top: 8px;
  color: #ffdcdd;
  font-size: 16.5px;
}

.page-hero > .container,
.careers-grid {
  position: relative;
  z-index: 1;
}

.page-hero > .container {
  padding-block: 68px;
}

.page-hero h1,
.careers-hero h1 {
  max-width: 950px;
  margin-top: 12px;
  font-size: clamp(38px, 5.6vw, 64px);
}

.page-hero > .container > p:last-child,
.careers-grid > div:first-child > p:last-child {
  max-width: 660px;
  margin-top: 18px;
  color: var(--muted-light);
  font-size: 18px;
  line-height: 1.58;
}

.page-hero p a {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-underline-offset: 4px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.service-card {
  display: flex;
  align-items: flex-start;
  gap: 17px;
  padding: 25px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  border-color: #d5cfc3;
  box-shadow: 0 12px 32px rgba(15,17,19,0.07);
  transform: translateY(-2px);
}

.service-card > span {
  display: inline-flex;
  flex: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--white);
  background: var(--ink);
  border-radius: 6px;
  font-family: "Archivo", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.service-card h2 {
  font-family: "Archivo", sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.service-card p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.58;
}

.estimate-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 38px;
  padding: 29px;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  border-radius: 8px;
}

.estimate-card > div {
  max-width: 680px;
}

.estimate-card h2 {
  font-family: "Archivo", sans-serif;
  font-size: 23px;
  font-weight: 900;
  text-transform: uppercase;
}

.estimate-card p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.6;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: start;
  gap: 55px;
}

.about-copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.about-copy p + p {
  margin-top: 17px;
}

.about-copy .lead {
  color: #262626;
  font-size: 19.5px;
  font-weight: 500;
  line-height: 1.62;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 31px;
}

.stat-grid > div {
  padding: 21px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.stat-grid strong,
.stat-grid span {
  display: block;
}

.stat-grid strong {
  color: var(--red);
  font-family: "Archivo", sans-serif;
  font-size: clamp(22px, 3vw, 29px);
  font-weight: 900;
}

.stat-grid span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.shop-mark {
  display: flex;
  aspect-ratio: 0.92;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #d8d3c9;
  background-color: #eeeae2;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.48) 0 2px, transparent 2px 20px);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.shop-mark span {
  font-family: "Archivo", sans-serif;
  font-size: clamp(72px, 12vw, 128px);
  font-weight: 900;
  letter-spacing: -8px;
  line-height: 0.8;
}

.shop-mark small {
  margin-top: 24px;
  color: #8f8b83;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.process-section {
  padding-block: 70px 78px;
  color: var(--white);
  background: var(--ink);
}

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

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 38px;
  background: #33363a;
  border: 1px solid #33363a;
}

.process-grid article {
  min-height: 220px;
  padding: 28px;
  background: #1a1c1f;
}

.process-grid article > span {
  color: var(--red);
  font-family: "Archivo", sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.4px;
}

.process-grid p {
  color: var(--muted-light);
}

.careers-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 60px;
  padding-block: 74px;
}

.careers-badge {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #34373b;
  border-radius: 10px;
  background: rgba(255,255,255,0.025);
}

.careers-badge strong,
.careers-badge span {
  display: block;
}

.careers-badge strong {
  color: var(--red);
  font-family: "Archivo", sans-serif;
  font-size: 76px;
  font-weight: 900;
  letter-spacing: -5px;
}

.careers-badge span {
  margin-top: 13px;
  color: var(--muted-light);
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.role-list {
  display: grid;
  gap: 14px;
  margin-top: 35px;
}

.role-list article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.role-list article > div {
  max-width: 830px;
}

.role-list h3 {
  display: inline;
  font-family: "Archivo", sans-serif;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.role-list h3 + span {
  display: inline-block;
  margin-left: 10px;
  padding: 4px 9px;
  color: #8a6a2f;
  background: #f2ede4;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.45px;
  text-transform: uppercase;
  vertical-align: 3px;
}

.role-list p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.role-list .button {
  flex: none;
  min-width: 98px;
}

.open-application {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  padding: 25px 27px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
}

.open-application h3 {
  font-family: "Archivo", sans-serif;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
}

.open-application p {
  margin-top: 5px;
  color: var(--muted-light);
}

.open-application > a {
  flex: none;
  color: var(--white);
  font-family: "Archivo", sans-serif;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.55px;
  text-transform: uppercase;
  border-bottom: 2px solid var(--red);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: start;
  gap: 42px;
}

.form-card {
  min-height: 620px;
  padding: 33px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.form-card h2,
.form-success h2 {
  font-family: "Archivo", sans-serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.3px;
  text-transform: uppercase;
}

.form-note {
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
}

.form-fields {
  display: grid;
  gap: 15px;
  margin-top: 23px;
}

.form-fields label > span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.form-fields input,
.form-fields select,
.form-fields textarea {
  width: 100%;
  margin-top: 7px;
  padding: 12px 13px;
  color: #222;
  background: var(--paper-soft);
  border: 1px solid #d9d3c8;
  border-radius: 6px;
  font-size: 15px;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.form-fields input:focus,
.form-fields select:focus,
.form-fields textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(193,39,45,0.12);
}

.form-fields textarea {
  min-height: 112px;
  resize: vertical;
}

.button-submit {
  width: 100%;
  margin-top: 2px;
}

.form-success {
  display: flex;
  min-height: 550px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 15px;
  text-align: center;
}

.form-success[hidden] {
  display: none;
}

.form-success > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  font-family: "Archivo", sans-serif;
  font-size: 25px;
  font-weight: 900;
}

.form-success h2 {
  margin-top: 19px;
}

.form-success p {
  max-width: 440px;
  margin-top: 11px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.form-success p a {
  color: var(--red);
  font-weight: 700;
}

.form-success .button {
  margin-top: 23px;
}

.contact-side {
  display: grid;
  gap: 20px;
}

.contact-card {
  display: grid;
  gap: 19px;
  padding: 27px;
  color: #e7e4de;
  background: var(--ink);
  border-radius: 10px;
}

.contact-card div > span {
  display: block;
  color: var(--red);
  font-family: "Archivo", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.45px;
  text-transform: uppercase;
}

.contact-card p,
.contact-card a {
  display: block;
  margin-top: 6px;
  color: #e7e4de;
  font-size: 15.5px;
  line-height: 1.55;
}

.contact-card a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.map-card {
  display: block;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 235px;
  border: 0;
  pointer-events: none;
}

.map-card > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 17px;
  color: var(--ink);
  font-family: "Archivo", sans-serif;
  font-size: 12px;
  letter-spacing: 0.55px;
  text-transform: uppercase;
}

.map-card b {
  color: var(--red);
  font-size: 18px;
}

.site-footer {
  color: #9c988f;
  background: var(--ink-deep);
  border-top: 1px solid #23262a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 55px;
  padding-block: 52px 34px;
}

.footer-brand img {
  width: 110px;
  height: 58px;
  object-fit: contain;
}

.footer-grid > div:first-child > p {
  max-width: 355px;
  margin-top: 17px;
  font-size: 14.5px;
  line-height: 1.65;
}

.footer-grid h2 {
  margin-bottom: 15px;
  color: var(--white);
  font-family: "Archivo", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-grid nav,
.footer-grid > div:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-grid nav a,
.footer-grid > div:last-child a {
  font-size: 14.5px;
  transition: color 0.2s ease;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-grid address {
  font-size: 14.5px;
  font-style: normal;
  line-height: 1.55;
}

.footer-bottom {
  border-top: 1px solid #1c1f21;
}

.footer-bottom > .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-block: 18px;
  color: #6b6760;
  font-size: 12.5px;
}

@media (max-width: 1050px) {
  .phone-link { display: none; }
  .site-nav a { padding-inline: 9px; font-size: 11.5px; }
  .site-nav a::after { right: 9px; left: 9px; }
  .header-actions { gap: 8px; }
  .feature-grid,
  .specialty-grid { gap: 15px; }
  .dark-card { padding: 27px; }
}

@media (max-width: 880px) {
  .header-inner { min-height: 64px; }
  .menu-toggle { display: block; order: 2; }
  .header-actions { order: 3; }
  .site-nav {
    position: fixed;
    top: 64px;
    right: 0;
    left: 0;
    display: none;
    height: calc(100vh - 64px);
    padding: 22px 24px 40px;
    flex-direction: column;
    align-items: stretch;
    background: rgba(13,15,16,0.99);
    overflow-y: auto;
  }
  .site-nav.open { display: flex; }
  .site-nav a { min-height: 55px; padding: 0; font-size: 15px; border-bottom: 1px solid #292c30; }
  .site-nav a::after { right: auto; bottom: -1px; left: 0; width: 46px; }
  .feature-grid,
  .specialty-grid { grid-template-columns: 1fr; }
  .dark-card { min-height: 210px; }
  .service-grid { grid-template-columns: 1fr; }
  .about-grid,
  .contact-grid,
  .careers-grid { grid-template-columns: 1fr; }
  .shop-mark { max-width: 560px; aspect-ratio: 1.4; }
  .careers-badge { min-height: 210px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.25fr 0.75fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .container,
  .header-inner { width: min(100% - 32px, var(--container)); }
  .header-actions .button { display: none; }
  .brand img { width: 70px; height: 40px; }
  .hero-home-inner { padding-block: 58px 74px; }
  .hero-logo-panel { width: min(100%, 270px); padding: 11px 20px; }
  .hero-logo-panel img { width: 230px; }
  .hero-home h1 { font-size: clamp(36px, 11vw, 53px); }
  .hero-home h1 span { font-size: 0.5em; line-height: 1.08; }
  .hero-copy { font-size: 17px; }
  .button-row.centered .button { width: 100%; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { padding: 20px; border-right: 0; border-bottom: 1px solid #23262a; }
  .trust-grid > div:last-child { border-bottom: 0; }
  .section { padding-block: 65px; }
  .section.medium { padding-block: 45px 62px; }
  .section-tight-top { padding-top: 4px; }
  .feature-card,
  .dark-card,
  .service-card { padding: 23px; }
  .cta-inner,
  .estimate-card,
  .role-list article,
  .open-application { align-items: stretch; flex-direction: column; }
  .cta-inner { padding-block: 42px; }
  .cta-inner .button-row { width: 100%; }
  .cta-inner .button { flex: 1 1 100%; }
  .page-hero > .container,
  .careers-grid { padding-block: 52px; }
  .page-hero h1,
  .careers-hero h1 { font-size: clamp(35px, 11vw, 50px); }
  .page-hero > .container > p:last-child,
  .careers-grid > div:first-child > p:last-child { font-size: 16.5px; }
  .service-card { gap: 14px; }
  .estimate-card .button { width: 100%; }
  .stat-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid article { min-height: auto; }
  .role-list .button { width: 100%; }
  .role-list h3 { display: block; }
  .role-list h3 + span { margin: 8px 0 0; }
  .open-application > a { align-self: flex-start; }
  .form-card { min-height: 0; padding: 24px; }
  .form-success { min-height: 500px; }
  .map-card iframe { height: 210px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom > .container { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
