:root {
  --ink: #102236;
  --muted: #526173;
  --navy: #0d263c;
  --navy-2: #173653;
  --red: #e11b2f;
  --red-dark: #b50f22;
  --blue-soft: #eaf5ff;
  --cream: #f4efe4;
  --cream-2: #fbf7ef;
  --roof-gray: #2d333a;
  --gold: #d49a33;
  --ice: #f5f9fc;
  --line: #d9e2ea;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(16, 34, 54, 0.14);
  color: var(--ink);
  background: var(--white);
  font-family: "IBM Plex Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
}

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

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

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

h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(40px, 4.7vw, 62px);
  line-height: 0.98;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.02;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.16;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--white);
  box-shadow: 0 8px 28px rgba(16, 34, 54, 0.08);
}

.top-bar {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px clamp(18px, 4vw, 56px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(177, 15, 34, 0.32), transparent 35%),
    var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.top-bar a {
  color: var(--white);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.nav-shell {
  display: grid;
  grid-template-columns: minmax(230px, auto) 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 88px;
  border-bottom: 4px solid var(--red);
  padding: 0 clamp(18px, 4vw, 56px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.brand-badge-shell {
  display: inline-flex;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border: 1px solid rgba(16, 34, 54, 0.12);
  border-radius: 8px;
  background: var(--cream-2);
  box-shadow: 0 8px 20px rgba(16, 34, 54, 0.1);
}

.brand img {
  width: 44px;
  height: 44px;
}

.brand-copy {
  display: block;
  color: var(--ink);
  line-height: 1.02;
}

.brand small {
  display: block;
  color: var(--red);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  gap: 2px;
}

.site-nav a {
  padding: 14px 12px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--red);
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.nav-cta,
.button.primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 14px 28px rgba(225, 27, 47, 0.22);
}

.nav-cta:hover,
.button.primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.button.secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.button.secondary:hover {
  border-color: var(--red);
  box-shadow: 0 12px 28px rgba(16, 34, 54, 0.1);
  transform: translateY(-2px);
}

.button.light {
  width: fit-content;
  color: var(--navy);
  background: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
}

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

.hero,
.job-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 390px);
  grid-template-rows: auto;
  gap: clamp(24px, 4vw, 52px);
  align-items: stretch;
  min-height: calc(100vh - 130px);
  padding: clamp(26px, 3.8vw, 48px) clamp(18px, 4vw, 56px);
}

.hero {
  background:
    linear-gradient(90deg, rgba(244, 239, 228, 0.98) 0%, rgba(244, 239, 228, 0.92) 43%, rgba(244, 239, 228, 0.28) 73%),
    linear-gradient(180deg, rgba(13, 38, 60, 0.12), rgba(13, 38, 60, 0)),
    url("assets/atlas-hero-roofing-v2.jpg");
  background-color: var(--cream);
  background-position: center, center, right bottom;
  background-repeat: no-repeat;
  background-size: auto, auto, min(1080px, 72vw) auto;
}

.job-hero {
  background: var(--blue-soft);
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 880px;
  padding-left: clamp(0px, 1vw, 10px);
  border-left: 6px solid var(--red);
}

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

.hero-text {
  max-width: 700px;
  color: var(--ink);
  font-size: 19px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 780px;
  margin-top: 24px;
}

.hero-proof span {
  display: grid;
  gap: 4px;
  min-height: 86px;
  padding: 14px;
  border: 1px solid rgba(13, 38, 60, 0.12);
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 30px rgba(16, 34, 54, 0.08);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.42;
}

.hero-proof strong {
  display: block;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  line-height: 1.2;
}

.photo-request {
  display: grid;
  gap: 6px;
  max-width: 780px;
  margin-top: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(16, 34, 54, 0.16);
  border-left: 5px solid var(--red);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 28px rgba(16, 34, 54, 0.08);
}

.photo-request strong {
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;
}

.photo-request span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.48;
}

.hero-actions,
.job-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-media {
  position: relative;
  grid-column: 1;
  min-height: 330px;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center;
  transition: transform 900ms ease;
}

.hero-media:hover img {
  transform: scale(1.04);
}

.hero-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  width: min(430px, calc(100% - 44px));
  padding: 18px 20px;
  color: var(--white);
  border-left: 6px solid var(--red);
  background: rgba(13, 38, 60, 0.9);
  backdrop-filter: blur(10px);
}

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

.hero-badge span {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-badge strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  line-height: 1.18;
}

.estimate-panel,
.job-card {
  grid-column: 2;
  align-self: center;
  padding: clamp(24px, 3vw, 34px);
  color: var(--white);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 32%),
    var(--navy);
  box-shadow: var(--shadow);
}

.estimate-panel h2,
.estimate-panel p,
.job-card h3,
.job-card p,
.contact h2,
.contact p {
  color: var(--white);
}

.estimate-panel h2 {
  font-size: clamp(25px, 2.4vw, 32px);
  line-height: 1.04;
}

.estimate-form {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.estimate-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.estimate-form input,
.estimate-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
}

.estimate-form textarea {
  resize: vertical;
}

.estimate-form input:focus,
.estimate-form textarea:focus {
  outline: 2px solid rgba(225, 27, 47, 0.72);
  outline-offset: 2px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.4;
}

.service-shortcuts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0 clamp(18px, 4vw, 56px);
  transform: translateY(-34px);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.service-shortcuts a {
  min-height: 148px;
  padding: 24px;
  background: var(--white);
  border-top: 4px solid transparent;
  transition: background 180ms ease, transform 180ms ease;
}

.service-shortcuts a:hover {
  z-index: 1;
  background: var(--red);
  transform: translateY(-4px);
}

.service-shortcuts a:first-child {
  border-top-color: var(--red);
}

.service-shortcuts a:nth-child(2) {
  border-top-color: var(--gold);
}

.service-shortcuts a:nth-child(3) {
  border-top-color: var(--navy);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: -12px clamp(18px, 4vw, 56px) 0;
  background: rgba(16, 34, 54, 0.16);
  border: 1px solid rgba(16, 34, 54, 0.16);
  box-shadow: 0 14px 38px rgba(16, 34, 54, 0.08);
}

.proof-strip div {
  min-height: 168px;
  padding: 24px;
  background: var(--cream-2);
}

.proof-strip span {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.proof-strip strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  line-height: 1.12;
}

.proof-strip p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.52;
}

.visual-trust {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 46px);
  align-items: stretch;
  margin: 26px clamp(18px, 4vw, 56px) 0;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(16, 34, 54, 0.14);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(13, 38, 60, 0.94), rgba(23, 54, 83, 0.96)),
    var(--navy);
  box-shadow: var(--shadow);
}

.visual-trust .field-note {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(22px, 3vw, 30px);
  border-left: 6px solid var(--gold);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 48%),
    rgba(255, 255, 255, 0.04);
}

.visual-trust .eyebrow {
  color: #9dd7ff;
}

.visual-trust h2,
.visual-trust p {
  color: var(--white);
}

.visual-trust h2 {
  max-width: 560px;
  font-size: clamp(30px, 4vw, 48px);
}

.visual-trust p {
  margin-bottom: 0;
}

.note-board {
  display: grid;
  gap: 12px;
}

.note-board div {
  display: grid;
  grid-template-columns: 54px minmax(0, 0.5fr) minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 78px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.note-board span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: var(--gold);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.note-board strong {
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
}

.note-board p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.45;
}

.service-shortcuts strong,
.service-shortcuts span {
  display: block;
}

.service-shortcuts strong {
  margin-bottom: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 21px;
}

.service-shortcuts span {
  color: var(--muted);
  line-height: 1.45;
}

.service-shortcuts a:hover strong,
.service-shortcuts a:hover span {
  color: var(--white);
}

.section {
  padding: clamp(52px, 7vw, 96px) clamp(18px, 4vw, 56px);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 32px;
}

.intro,
.process,
.careers,
.contact,
.job-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 78px);
}

.intro {
  padding-top: clamp(20px, 4vw, 42px);
}

.intro-copy h2 {
  max-width: 720px;
}

.intro-text {
  align-self: end;
}

.why {
  background:
    linear-gradient(180deg, var(--cream-2), var(--ice));
}

.why-grid,
.area-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.why-grid article,
.area-card,
.career-panel,
.mini-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.why-grid article {
  min-height: 260px;
  padding: 24px;
  border-bottom: 4px solid rgba(212, 154, 51, 0.48);
}

.why-grid span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--white);
  background: var(--red);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.services {
  background: var(--white);
}

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

.service-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.44fr) minmax(0, 1fr);
  min-height: 300px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(16, 34, 54, 0.08);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-media {
  position: relative;
  min-height: 300px;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.service-media .field-note {
  position: absolute;
  right: 14px;
  bottom: 14px;
  max-width: calc(100% - 28px);
  padding: 8px 11px;
  color: var(--white);
  border-left: 4px solid var(--gold);
  background: rgba(13, 38, 60, 0.9);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.service-card:nth-child(2) img {
  object-position: 68% center;
}

.service-card:nth-child(3) img {
  object-position: 38% center;
}

.service-card:nth-child(4) img {
  object-position: 78% center;
}

.service-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
}

.service-card a {
  width: fit-content;
  margin-top: auto;
  color: var(--red);
  font-weight: 800;
}

.before-after {
  background: var(--cream);
}

.before-after .section-heading p:last-child {
  max-width: 760px;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 26px;
}

.comparison-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(16, 34, 54, 0.08);
}

.comparison-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.comparison-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-label {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 12px;
  color: var(--white);
  border-radius: 3px;
  background: var(--navy);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.comparison-card:nth-child(2) .comparison-label {
  background: var(--red);
}

.comparison-card figcaption {
  min-height: 96px;
  padding: 20px 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.process {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(225, 27, 47, 0.92), rgba(225, 27, 47, 0.92)),
    var(--red);
}

.process .eyebrow,
.contact .eyebrow,
.estimate-panel .eyebrow,
.job-card .eyebrow {
  color: #9dd7ff;
}

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

.steps {
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 22px;
  color: var(--ink);
  border-radius: 6px;
  background: var(--white);
}

.step span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--navy);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.area-card {
  min-height: 200px;
  padding: 24px;
  border-top: 5px solid var(--red);
}

.careers {
  background: var(--blue-soft);
}

.career-panel {
  align-self: center;
  padding: 28px;
  box-shadow: 0 12px 34px rgba(16, 34, 54, 0.08);
}

.career-panel .button {
  margin-top: 10px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  padding: 20px 22px;
}

.faq-list details[open] {
  border-color: rgba(225, 27, 47, 0.42);
  box-shadow: 0 14px 32px rgba(16, 34, 54, 0.1);
}

.faq-list summary {
  font-weight: 800;
  cursor: pointer;
}

.contact {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(225, 27, 47, 0.18), transparent 42%),
    var(--navy);
}

.contact-panel {
  padding: 28px;
  border-radius: 6px;
  background: var(--navy-2);
}

.contact-panel p {
  margin-bottom: 12px;
}

.contact-link {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px clamp(18px, 4vw, 56px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: var(--white);
}

.job-hero {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  min-height: auto;
  background: var(--blue-soft);
}

.job-hero-copy {
  align-self: center;
}

.job-card {
  position: sticky;
  top: 150px;
  grid-row: auto;
}

.job-facts {
  display: grid;
  gap: 12px;
}

.job-facts p {
  margin: 0;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.job-body {
  display: grid;
  gap: 28px;
}

.job-body section {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.job-body section:last-child {
  border-bottom: 0;
}

.job-body ul {
  margin: 0;
  padding-left: 20px;
}

.job-body li {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.mini-card {
  position: sticky;
  top: 150px;
  align-self: start;
  padding: 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 1120px) {
  .nav-shell {
    grid-template-columns: minmax(220px, auto) auto auto;
  }

  .site-nav {
    position: absolute;
    top: 130px;
    right: clamp(18px, 4vw, 56px);
    display: none;
    width: min(320px, calc(100vw - 36px));
    flex-direction: column;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .nav-toggle {
    display: block;
  }

  .nav-cta {
    display: none;
  }

  .hero,
  .job-hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-media,
  .estimate-panel,
  .job-card {
    grid-column: auto;
    grid-row: auto;
  }

  .service-shortcuts,
  .proof-strip,
  .hero-proof,
  .visual-trust,
  .why-grid,
  .area-grid,
  .comparison-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 780px) {
  h1 {
    font-size: clamp(36px, 10vw, 48px);
  }

  h2 {
    font-size: clamp(28px, 8vw, 42px);
  }

  .top-bar {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
    min-height: 76px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand-badge-shell {
    width: 46px;
    height: 46px;
  }

  .site-nav {
    top: 118px;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-media img {
    min-height: 280px;
  }

  .hero-badge {
    position: relative;
    left: auto;
    bottom: auto;
    width: auto;
    border-left: 0;
    border-top: 5px solid var(--red);
    border-radius: 0;
  }

  .service-shortcuts,
  .proof-strip,
  .hero-proof,
  .visual-trust,
  .why-grid,
  .area-grid,
  .comparison-grid,
  .intro,
  .process,
  .careers,
  .contact,
  .job-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .note-board div {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .note-board p {
    grid-column: 2;
  }

  .service-shortcuts {
    transform: none;
    margin-top: 0;
  }

  .proof-strip {
    margin-top: 0;
  }

  .service-shortcuts a {
    min-height: 126px;
  }

  .service-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .service-card img {
    height: 220px;
    min-height: 220px;
  }

  .service-media {
    min-height: 220px;
  }

  .site-footer {
    flex-direction: column;
  }

  .job-card,
  .mini-card {
    position: static;
  }
}

@media (max-width: 520px) {
  .hero-actions,
  .job-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button,
  .nav-cta {
    width: 100%;
  }

  .hero,
  .section,
  .job-hero {
    padding-right: 16px;
    padding-left: 16px;
  }

  .service-shortcuts {
    margin-right: 16px;
    margin-left: 16px;
  }

  .estimate-panel,
  .contact-panel,
  .career-panel,
  .proof-strip div,
  .hero-proof span,
  .photo-request,
  .visual-trust,
  .visual-trust .field-note,
  .note-board div,
  .comparison-card figcaption,
  .step,
  .why-grid article,
  .area-card {
    padding: 20px;
  }
}
