:root {
  --ink: #03051a;
  --ink-soft: #041247;
  --cream: #f2efe8;
  --paper: #fbfaf6;
  --copper: #b98455;
  --copper-light: #d3a77f;
  --granite: #141414;
  --line: rgba(242, 239, 232, 0.23);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
}

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

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

::selection {
  background: var(--copper);
  color: white;
}

.shell {
  width: 80%;
  margin-inline: auto;
}

.hero {
  min-height: 900px;
  height: 100svh;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
}

.hero-image {
  position: absolute;
  inset: 0;
  background-image: url("assets/projects/el-paso-gray-shingle-roof.webp");
  background-size: cover;
  background-position: center 42%;
  transform: scale(1.025);
  animation: heroDrift 16s ease-out both;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(5 6 18 / 96%) 0%, rgb(7 8 21 / 84%) 48%, rgba(7, 18, 21, .3) 82%), linear-gradient(0deg, rgb(5 6 18 / 92%), transparent 52%);
}

.hero-monogram {
  position: absolute;
  z-index: 1;
  right: 2.8%;
  top: 18%;
  width: min(36vw, 560px);
  height: auto;
  opacity: .11;
  filter: saturate(.8) brightness(1.25);
  pointer-events: none;
}

.site-header {
  height: 118px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-lockup>img {
  width: 54px;
  height: 58px;
  object-fit: contain;
}

.brand-lockup>span {
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
}

.brand-lockup strong {
  color: white;
  font-size: 17px;
  line-height: 1;
  letter-spacing: .28em;
}

.brand-lockup small {
  color: rgba(255, 255, 255, .55);
  margin-top: 8px;
  font-size: 7px;
  letter-spacing: .19em;
}

.brand-lockup-full>img {
  width: 112px;
  height: 112px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 42px;
}

.desktop-nav a {
  color: rgba(255, 255, 255, .7);
  font-size: 12px;
  letter-spacing: .1em;
  transition: color .25s ease;
}

.desktop-nav a:hover {
  color: white;
}

.desktop-nav a[aria-current="page"] {
  color: white;
  border-bottom: 1px solid var(--copper-light);
  padding-bottom: 8px;
}

.mobile-menu {
  display: none;
}

.header-cta {
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .16em;
  border-bottom: 1px solid var(--copper-light);
  padding: 10px 0;
}

.header-cta span {
  color: var(--copper-light);
  font-size: 17px;
}

.hero-content {
  position: relative;
  z-index: 1;
  min-height: calc(100% - 220px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 70px 0 86px;
}

.hero-copy {
  max-width: 930px;
}

.eyebrow,
.section-kicker {
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: 10px;
  font-weight: 700;
}

.eyebrow {
  color: var(--copper-light);
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 28px;
}

.eyebrow span {
  width: 34px;
  height: 1px;
  background: currentColor;
}

h1 {
  margin: 0;
  max-width: 1000px;
  color: white;
  font: 400 clamp(65px, 7vw, 112px)/.91 var(--serif);
  letter-spacing: -.055em;
}

h1 em {
  color: var(--copper-light);
  font-weight: 400;
}

.hero-lede {
  max-width: 580px;
  color: rgba(255, 255, 255, .72);
  font-size: 17px;
  line-height: 1.75;
  margin: 34px 0 38px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 58px;
  padding: 0 26px;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 10px;
  font-weight: 700;
  transition: transform .25s ease, background .25s ease;
}

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

.button-primary {
  color: #fff;
  background: var(--copper);
}

.button-primary:hover {
  background: #a87143;
}

.button span {
  font-size: 17px;
}

.text-link {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  color: rgba(255, 255, 255, .76);
  font-size: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .25);
  padding: 10px 0;
}

.hero-note {
  align-self: flex-end;
  margin-bottom: 38px;
  padding-left: 26px;
  border-left: 1px solid var(--copper-light);
  width: 245px;
}

.note-number {
  color: var(--copper-light);
  font: italic 16px/1 var(--serif);
}

.hero-note p {
  margin: 16px 0 12px;
  color: white;
  font: italic 23px/1.2 var(--serif);
}

.hero-note small {
  color: rgba(255, 255, 255, .48);
  font-size: 10px;
  line-height: 1.8;
  letter-spacing: .05em;
}

.hero-footer {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: 80px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, .5);
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.scroll-label {
  display: flex;
  align-items: center;
  gap: 18px;
}

.scroll-label span {
  color: var(--copper-light);
  font-size: 15px;
}

.trust-strip {
  background: var(--cream);
  border-bottom: 1px solid rgba(10, 23, 26, .1);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 138px;
}

.trust-grid div {
  display: flex;
  align-items: center;
  gap: 18px;
  border-right: 1px solid rgba(10, 23, 26, .1);
  padding: 24px 28px;
}

.trust-grid div:first-child {
  border-left: 1px solid rgba(10, 23, 26, .1);
}

.trust-grid span {
  color: var(--copper);
  font: italic 14px/1 var(--serif);
}

.trust-grid p {
  font: 400 16px/1.35 var(--serif);
}

.opening {
  padding-top: 150px;
  padding-bottom: 150px;
  display: grid;
  grid-template-columns: 1fr 2.2fr 1fr;
  gap: 70px;
  align-items: start;
}

.section-kicker {
  color: var(--copper);
  margin-top: 13px;
}

.opening h2 {
  margin: 0;
  font: 400 clamp(46px, 5vw, 78px)/1.02 var(--serif);
  letter-spacing: -.045em;
}

.opening-copy {
  color: #607074;
  font-size: 15px;
  line-height: 1.85;
  margin: 10px 0 0;
}

.standard-feature {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  min-height: 720px;
  margin-bottom: 160px;
}

.standard-image {
  background: url("assets/projects/el-paso-gray-roof.jpg") center/cover;
}

.standard-card {
  background: var(--ink-soft);
  color: var(--cream);
  padding: 84px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-kicker.light {
  color: var(--copper-light);
}

.standard-card h2,
.services h2,
.work h2,
.consultation h2 {
  color: white;
  font: 400 clamp(44px, 4.6vw, 72px)/1.03 var(--serif);
  letter-spacing: -.045em;
  margin: 25px 0;
}

.standard-card>p:not(.section-kicker) {
  color: rgba(255, 255, 255, .62);
  font-size: 15px;
  line-height: 1.85;
  margin: 0;
}

.standard-card ul {
  padding: 30px 0 22px;
  margin: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, .14);
  list-style: none;
}

.standard-card li {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
  color: rgba(255, 255, 255, .85);
  font: 400 15px/1.5 var(--serif);
}

.standard-card li span {
  color: var(--copper-light);
  font: italic 12px/1 var(--serif);
}

.dark-link {
  width: max-content;
  color: var(--cream);
}

.services {
  background: var(--ink);
  color: var(--cream);
  padding: 150px 0;
}

.services-heading,
.work-heading {
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 120px;
  align-items: end;
  margin-bottom: 86px;
}

.services-heading h2,
.work-heading h2 {
  margin-bottom: 0;
}

.services-heading h2 em,
.work-heading h2 em,
.consultation h2 em {
  color: var(--copper-light);
  font-weight: 400;
}

.services-heading>p,
.work-heading>p {
  color: rgba(255, 255, 255, .54);
  font-size: 14px;
  line-height: 1.85;
  max-width: 410px;
}

.service-list {
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.service-row {
  display: grid;
  grid-template-columns: 70px 1.1fr 1fr 40px;
  gap: 35px;
  align-items: center;
  padding: 47px 12px 47px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  transition: background .25s ease, padding .25s ease;
}

.service-row:hover {
  background: rgba(255, 255, 255, .035);
  padding-left: 14px;
}

.service-number {
  color: var(--copper-light);
  font: italic 15px/1 var(--serif);
}

.service-row h3 {
  color: white;
  margin: 0 0 10px;
  font: 400 32px/1.1 var(--serif);
}

.service-row small {
  color: var(--copper-light);
  text-transform: uppercase;
  letter-spacing: .17em;
  font-size: 8px;
}

.service-row>p {
  color: rgba(255, 255, 255, .5);
  font-size: 13px;
  line-height: 1.75;
  max-width: 490px;
  margin: 0;
}

.service-row>span:last-child {
  color: var(--copper-light);
  font-size: 22px;
}

.project-paths {
  position: relative;
  overflow: hidden;
  padding: 150px 0 160px;
  background: var(--cream);
}

.project-paths::after {
  content: "";
  position: absolute;
  right: -110px;
  top: -60px;
  width: 430px;
  height: 460px;
  background: url("assets/jer-mark.webp") center/contain no-repeat;
  opacity: .035;
  pointer-events: none;
}

.paths-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .6fr 1.8fr;
  gap: 100px;
  align-items: start;
  margin-bottom: 76px;
}

.paths-heading h2 {
  max-width: 900px;
  margin: 0;
  font: 400 clamp(46px, 5vw, 76px)/1.02 var(--serif);
  letter-spacing: -.045em;
}

.paths-heading h2 em {
  color: var(--copper);
  font-weight: 400;
}

.path-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(10, 23, 26, .16);
  border-left: 1px solid rgba(10, 23, 26, .16);
}

.path-card {
  min-height: 410px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 38px;
  border-right: 1px solid rgba(10, 23, 26, .16);
  border-bottom: 1px solid rgba(10, 23, 26, .16);
  transition: color .35s ease, background .35s ease, transform .35s ease;
}

.path-card>span {
  color: var(--copper);
  font: italic 15px/1 var(--serif);
}

.path-card small {
  margin-top: 72px;
  color: var(--copper);
  text-transform: uppercase;
  letter-spacing: .19em;
  font-size: 8px;
}

.path-card h3 {
  max-width: 300px;
  margin: 16px 0;
  font: 400 29px/1.15 var(--serif);
}

.path-card p {
  max-width: 310px;
  color: #667678;
  font-size: 12px;
  line-height: 1.75;
}

.path-card i {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: .15em;
  font: normal 700 8px/1 var(--sans);
}

.path-card:hover {
  background: var(--ink-soft);
  color: white;
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(10, 23, 26, .13);
}

.path-card:hover p,
.path-card:hover i {
  color: rgba(255, 255, 255, .62);
}

.process {
  padding: 150px 0 160px;
  display: grid;
  grid-template-columns: .8fr 1.5fr;
  gap: 150px;
}

.process-intro h2,
.faq-heading h2 {
  font: 400 clamp(44px, 4.4vw, 68px)/1.02 var(--serif);
  letter-spacing: -.045em;
  margin: 25px 0;
}

.process-intro>p:last-child {
  color: #66777a;
  font-size: 14px;
  line-height: 1.85;
  max-width: 420px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid rgba(10, 23, 26, .16);
  border-left: 1px solid rgba(10, 23, 26, .16);
}

.process-steps li {
  min-height: 255px;
  padding: 34px;
  border-right: 1px solid rgba(10, 23, 26, .16);
  border-bottom: 1px solid rgba(10, 23, 26, .16);
}

.process-steps span {
  color: var(--copper);
  font: italic 14px/1 var(--serif);
}

.process-steps h3 {
  font: 400 29px/1.1 var(--serif);
  margin: 42px 0 14px;
}

.process-steps p {
  color: #6b7a7c;
  font-size: 12px;
  line-height: 1.75;
  max-width: 245px;
}

.work {
  background: #0e1f42;
  color: white;
  padding: 150px 0 170px;
}

.project-grid {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  gap: 28px;
}

.project {
  min-width: 0;
}

.project-large {
  grid-row: span 2;
}

.project-image {
  min-height: 330px;
  background-size: cover;
  background-position: center;
  filter: saturate(.78);
  transition: filter .4s ease, transform .4s ease;
}

.project-large .project-image {
  min-height: 724px;
}

.project:hover .project-image {
  filter: saturate(1);
}

.project-one {
  background-image: linear-gradient(0deg, rgba(8, 19, 21, .3), transparent 45%), url("assets/projects/el-paso-roof-replacement-shingles.webp");
}

.project-two {
  background-image: linear-gradient(0deg, rgba(8, 19, 21, .28), transparent 45%), url("assets/projects/el-paso-brown-shingle-roof.webp");
}

.project-three {
  background-image: linear-gradient(0deg, rgba(8, 19, 21, .35), transparent 45%), url("assets/projects/el-paso-residential-roof.webp");
}

.project-caption {
  padding: 22px 0 0;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.project-caption span {
  color: var(--copper-light);
  font-size: 8px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.project-caption h3 {
  color: white;
  font: 400 23px/1.2 var(--serif);
  margin: 8px 0 0;
}

.project-caption p {
  color: rgba(255, 255, 255, .46);
  max-width: 210px;
  font-size: 11px;
  line-height: 1.65;
  margin: 3px 0 0;
}

.faq {
  padding: 160px 0;
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 140px;
}

.faq-list {
  border-top: 1px solid rgba(10, 23, 26, .2);
}

.faq-list details {
  border-bottom: 1px solid rgba(10, 23, 26, .2);
}

.faq-list summary {
  min-height: 88px;
  cursor: pointer;
  list-style: none;
  display: grid;
  grid-template-columns: 48px 1fr 28px;
  align-items: center;
  gap: 8px;
  font: 400 19px/1.35 var(--serif);
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--copper);
  font: italic 12px/1 var(--serif);
}

.faq-list summary i {
  color: var(--copper);
  font: 300 21px/1 var(--sans);
  transition: transform .2s ease;
}

.faq-list details[open] summary i {
  transform: rotate(45deg);
}

.faq-list details p {
  color: #657477;
  font-size: 13px;
  line-height: 1.85;
  margin: -8px 40px 28px 56px;
  max-width: 600px;
}

.consultation {
  background: var(--ink);
  color: white;
  padding: 145px 0;
  position: relative;
  overflow: hidden;
}

.consultation::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -80px;
  width: 520px;
  height: 560px;
  background: url("assets/jer-mark.webp") center/contain no-repeat;
  opacity: .035;
}

.consultation-grid {
  position: relative;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 140px;
  align-items: start;
}

.consult-copy>p:not(.section-kicker) {
  color: rgba(255, 255, 255, .55);
  font-size: 14px;
  line-height: 1.8;
  max-width: 460px;
}

.consult-copy>a {
  display: inline-flex;
  gap: 18px;
  color: var(--copper-light);
  margin-top: 35px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--copper-light);
  font-size: 12px;
  letter-spacing: .08em;
}

.lead-form {
  background: var(--paper);
  color: var(--ink);
  padding: 48px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, .18);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.lead-form label {
  display: block;
  margin-bottom: 27px;
}

.lead-form label>span {
  display: flex;
  justify-content: space-between;
  color: #4f6062;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: 10px;
}

.lead-form label small {
  color: #9a9f9b;
  font-size: 8px;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  appearance: none;
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(10, 23, 26, .2);
  border-radius: 0;
  padding: 10px 0 14px;
  background: transparent;
  color: var(--ink);
  outline: none;
  font-size: 14px;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-bottom-color: var(--copper);
}

.form-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-top: 10px;
}

.form-action p {
  color: #7b8686;
  max-width: 230px;
  font-size: 9px;
  line-height: 1.55;
}

.form-action .button {
  border: 0;
  cursor: pointer;
}

.form-status {
  margin: 0 0 24px;
  padding: 14px 16px;
  border-left: 3px solid var(--copper);
  background: rgba(185, 132, 85, .1);
  color: #435456;
  font-size: 12px;
  line-height: 1.6;
}

.form-status.error {
  border-left-color: #9e463e;
  background: rgba(158, 70, 62, .08);
}

.website-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

footer {
  background: var(--granite);
  color: rgba(255, 255, 255, .6);
  padding: 85px 0 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: .8fr 1fr 1fr;
  gap: 90px;
  padding-bottom: 70px;
}

.footer-brand {
  align-self: start;
  color: white;
}

.footer-top>p {
  font: 400 16px/1.7 var(--serif);
  margin: 4px 0;
}

.footer-top nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 40px;
}

.footer-top nav a {
  color: rgba(255, 255, 255, .58);
  font-size: 11px;
}

.footer-top nav a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 8px;
}

.footer-bottom a {
  color: var(--copper-light);
}

.mobile-cta {
  display: none;
}

@keyframes heroDrift {
  from {
    transform: scale(1.08);
  }

  to {
    transform: scale(1.025);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 980px) {
  .shell {
    width: min(100% - 40px, 760px);
  }

  .desktop-nav,
  .hero-note {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    min-height: calc(100% - 198px);
  }

  h1 {
    font-size: clamp(56px, 10vw, 86px);
  }

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

  .opening {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .opening-copy {
    max-width: 560px;
  }

  .standard-feature {
    grid-template-columns: 1fr;
  }

  .standard-image {
    min-height: 580px;
  }

  .services-heading,
  .work-heading {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-row {
    grid-template-columns: 50px 1fr 1fr 26px;
  }

  .paths-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .path-grid {
    grid-template-columns: 1fr;
  }

  .path-card {
    min-height: 320px;
  }

  .path-card small {
    margin-top: 40px;
  }

  .process {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .faq {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .consultation-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top nav {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .shell {
    width: calc(100% - 36px);
  }

  .site-header {
    height: 92px;
  }

  .brand-lockup>img {
    width: 45px;
    height: 49px;
  }

  .brand-lockup strong {
    font-size: 14px;
  }

  .brand-lockup small {
    max-width: 125px;
    line-height: 1.35;
    font-size: 6px;
  }

  .header-cta {
    font-size: 0;
  }

  .header-cta::before {
    content: "Consult";
    font-size: 10px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    min-height: calc(100% - 164px);
    padding: 38px 0 64px;
  }

  h1 {
    font-size: clamp(50px, 15vw, 70px);
  }

  .hero-lede {
    font-size: 15px;
    margin-top: 26px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .button {
    width: 100%;
  }

  .hero-footer {
    height: 68px;
  }

  .hero-footer>p:first-child {
    display: none;
  }

  .scroll-label {
    margin-left: auto;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    padding: 14px 0;
  }

  .trust-grid div {
    min-height: 66px;
    border-right: 0;
    border-bottom: 1px solid rgba(10, 23, 26, .1);
    padding: 16px 6px;
  }

  .trust-grid div:first-child {
    border-left: 0;
  }

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

  .opening {
    padding: 96px 0;
  }

  .standard-feature {
    width: 100%;
    margin-bottom: 100px;
  }

  .standard-image {
    min-height: 420px;
  }

  .standard-card {
    padding: 62px 24px;
  }

  .standard-card h2,
  .services h2,
  .work h2,
  .consultation h2 {
    font-size: 46px;
  }

  .services,
  .work {
    padding: 100px 0;
  }

  .project-paths {
    padding: 100px 0;
  }

  .path-card {
    min-height: 340px;
    padding: 30px;
  }

  .services-heading,
  .work-heading {
    margin-bottom: 55px;
  }

  .service-row {
    grid-template-columns: 35px 1fr 24px;
    gap: 12px;
    padding: 34px 0;
  }

  .service-row>p {
    grid-column: 2 / -1;
  }

  .process {
    padding: 100px 0;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-steps li {
    min-height: 220px;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-large {
    grid-row: auto;
  }

  .project-large .project-image,
  .project-image {
    min-height: 430px;
  }

  .project-caption p {
    display: none;
  }

  .faq {
    padding: 100px 0;
  }

  .faq-list summary {
    min-height: 100px;
    grid-template-columns: 35px 1fr 20px;
    font-size: 17px;
  }

  .faq-list details p {
    margin-left: 43px;
  }

  .consultation {
    padding: 100px 0;
  }

  .lead-form {
    padding: 34px 22px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-action {
    align-items: stretch;
    flex-direction: column;
  }

  .form-action p {
    max-width: none;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-top nav {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 14px;
  }

  .brand-lockup-full>img {
    width: 104px;
    height: 104px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 40;
    left: 18px;
    right: 18px;
    bottom: 14px;
    min-height: 54px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--copper);
    color: white;
    box-shadow: 0 14px 36px rgba(5, 15, 18, .3);
    text-transform: uppercase;
    letter-spacing: .15em;
    font-size: 9px;
    font-weight: 700;
  }

  footer {
    padding-bottom: 100px;
  }
}

/* Roof replacement service page */
.service-page {
  background: var(--paper);
}

.inner-hero {
  min-height: 860px;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
}

.inner-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(.76) contrast(1.02);
}

.inner-hero-vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(5 6 18 / 96%) 0%, rgb(7 8 21 / 84%) 48%, rgba(7, 18, 21, .3) 82%), linear-gradient(0deg, rgb(5 6 18 / 92%), transparent 52%);
}

.inner-monogram {
  top: 20%;
  right: 3%;
}

.inner-hero-content {
  position: relative;
  z-index: 1;
  min-height: 662px;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, .4fr);
  gap: 90px;
  align-items: center;
  padding: 72px 0 112px;
}

.inner-hero-copy {
  max-width: 960px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 42px;
  color: rgba(255, 255, 255, .48);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, .72);
}

.breadcrumbs a:hover {
  color: white;
}

.inner-hero h1 {
  font-size: clamp(60px, 6.4vw, 102px);
}

.replacement-brief {
  align-self: end;
  margin-bottom: 28px;
  padding: 28px 0 4px 27px;
  border-left: 1px solid var(--copper-light);
}

.replacement-brief h2 {
  margin: 18px 0 24px;
  color: white;
  font: italic 25px/1.25 var(--serif);
  letter-spacing: -.02em;
}

.replacement-brief ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.replacement-brief li {
  position: relative;
  padding: 12px 0 12px 20px;
  border-top: 1px solid rgba(255, 255, 255, .13);
  color: rgba(255, 255, 255, .58);
  font-size: 10px;
  line-height: 1.6;
}

.replacement-brief li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 5px;
  height: 5px;
  border: 1px solid var(--copper-light);
  transform: rotate(45deg);
}

.replacement-guide {
  padding-top: 150px;
  padding-bottom: 150px;
}

.replacement-intro {
  display: grid;
  grid-template-columns: .58fr 1.25fr .8fr;
  gap: 70px;
  align-items: start;
  margin-bottom: 92px;
}

.replacement-intro h2,
.system-options h2,
.decision-panel h2 {
  margin: 0;
  font: 400 clamp(44px, 4.7vw, 74px)/1.03 var(--serif);
  letter-spacing: -.045em;
}

.replacement-intro-copy {
  color: #607074;
  font-size: 14px;
  line-height: 1.85;
}

.replacement-intro-copy p:first-child {
  margin-top: 8px;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(10, 23, 26, .16);
  border-left: 1px solid rgba(10, 23, 26, .16);
}

.signal-card {
  min-height: 340px;
  padding: 35px 31px;
  border-right: 1px solid rgba(10, 23, 26, .16);
  border-bottom: 1px solid rgba(10, 23, 26, .16);
}

.signal-card>span {
  color: var(--copper);
  font: italic 14px/1 var(--serif);
}

.signal-card h3 {
  margin: 82px 0 18px;
  font: 400 27px/1.15 var(--serif);
  letter-spacing: -.02em;
}

.signal-card p {
  color: #68787a;
  font-size: 12px;
  line-height: 1.75;
  margin: 0;
}

.guide-note {
  width: min(780px, 100%);
  margin: 34px 0 0 auto;
  padding-left: 22px;
  border-left: 1px solid var(--copper);
  color: #6b797b;
  font-size: 11px;
  line-height: 1.8;
}

.replacement-scope {
  padding: 0 0 160px;
  background: var(--paper);
}

.scope-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 760px;
}

.scope-image {
  background: linear-gradient(0deg, rgba(5, 15, 18, .2), transparent 45%), url("assets/projects/el-paso-gray-shingle-roof.webp") center/cover;
}

.scope-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 82px 76px;
  background: var(--ink-soft);
  color: white;
}

.scope-content h2 {
  margin: 24px 0 26px;
  font: 400 clamp(42px, 4.2vw, 66px)/1.03 var(--serif);
  letter-spacing: -.045em;
}

.scope-content>p:not(.section-kicker) {
  color: rgba(255, 255, 255, .58);
  font-size: 14px;
  line-height: 1.85;
  margin: 0 0 30px;
}

.scope-content dl {
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, .15);
}

.scope-content dl div {
  display: grid;
  grid-template-columns: .58fr 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.scope-content dt {
  color: var(--cream);
  font: 400 16px/1.4 var(--serif);
}

.scope-content dd {
  margin: 0;
  color: rgba(255, 255, 255, .48);
  font-size: 10px;
  line-height: 1.65;
}

.system-options {
  padding-bottom: 160px;
}

.systems-heading {
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 120px;
  align-items: end;
  margin-bottom: 78px;
}

.systems-heading>p {
  color: #617174;
  font-size: 14px;
  line-height: 1.85;
  margin: 0 0 6px;
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.system-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 40px;
  border: 1px solid rgba(10, 23, 26, .15);
  background: #fff;
  box-shadow: 0 22px 55px rgba(10, 23, 26, .045);
}

.system-card>span {
  color: var(--copper);
  font: italic 14px/1 var(--serif);
}

.system-card h3 {
  margin: 78px 0 20px;
  font: 400 31px/1.13 var(--serif);
  letter-spacing: -.025em;
}

.system-card p {
  color: #68777a;
  font-size: 12px;
  line-height: 1.8;
  margin: 0;
}

.system-card a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(10, 23, 26, .12);
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 8px;
  font-weight: 700;
}

.system-card a i {
  color: var(--copper);
  font: normal 19px/1 var(--sans);
}

.replacement-process {
  padding: 150px 0 165px;
  background: var(--ink);
  color: white;
}

.process-heading {
  display: grid;
  grid-template-columns: .55fr 1.3fr .7fr;
  gap: 70px;
  align-items: start;
  margin-bottom: 88px;
}

.process-heading h2 {
  margin: 0;
  color: white;
  font: 400 clamp(44px, 4.8vw, 74px)/1.02 var(--serif);
  letter-spacing: -.045em;
}

.process-heading>p:last-child {
  color: rgba(255, 255, 255, .52);
  font-size: 13px;
  line-height: 1.85;
  margin-top: 8px;
}

.replacement-steps {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, .17);
}

.replacement-steps li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 30px;
  padding: 38px 10px 38px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.replacement-steps li>span {
  color: var(--copper-light);
  font: italic 15px/1 var(--serif);
  padding-top: 8px;
}

.replacement-steps li>div {
  display: grid;
  grid-template-columns: 125px minmax(250px, .65fr) 1fr;
  gap: 48px;
  align-items: center;
}

.replacement-steps small {
  color: var(--copper-light);
  font-size: 8px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.replacement-steps h3 {
  margin: 0;
  font: 400 28px/1.2 var(--serif);
}

.replacement-steps p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, .48);
  font-size: 12px;
  line-height: 1.75;
}

.decision-panel {
  display: grid;
  grid-template-columns: 1fr .7fr;
  gap: 140px;
  align-items: end;
  padding-top: 150px;
  padding-bottom: 150px;
}

.decision-panel>div:last-child {
  padding-left: 30px;
  border-left: 1px solid rgba(10, 23, 26, .17);
}

.decision-panel>div:last-child p {
  color: #607174;
  font-size: 14px;
  line-height: 1.85;
  margin: 0 0 35px;
}

.decision-panel .button {
  width: max-content;
}

.service-arrow {
  color: var(--copper-light);
  font-size: 22px;
}

.service-arrow:hover {
  color: white;
}

.repair-page .inner-hero-image {
  object-position: center 52%;
}

.repair-scope-image {
  background-image: linear-gradient(0deg, rgba(5, 15, 18, .24), transparent 45%), url("assets/projects/el-paso-gray-roof.jpg");
}

.inline-service-link {
  color: var(--ink);
  border-bottom: 1px solid var(--copper);
  font-weight: 700;
}

.inline-service-link:hover {
  color: var(--copper);
}

@media (max-width: 980px) {
  .inner-hero {
    min-height: 810px;
  }

  .inner-hero-content {
    min-height: 615px;
    grid-template-columns: 1fr;
    gap: 42px;
    padding-top: 58px;
  }

  .replacement-brief {
    display: none;
  }

  .replacement-intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .replacement-intro-copy {
    max-width: 680px;
  }

  .signal-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .scope-grid {
    grid-template-columns: 1fr;
  }

  .scope-image {
    min-height: 560px;
  }

  .systems-heading,
  .process-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .systems-heading>p,
  .process-heading>p:last-child {
    max-width: 630px;
  }

  .system-grid {
    grid-template-columns: 1fr;
  }

  .system-card {
    min-height: 310px;
  }

  .system-card h3 {
    margin-top: 45px;
  }

  .replacement-steps li>div {
    grid-template-columns: 100px minmax(220px, .8fr) 1fr;
    gap: 30px;
  }

  .decision-panel {
    grid-template-columns: 1fr;
    gap: 55px;
    align-items: start;
  }

  .decision-panel>div:last-child {
    max-width: 700px;
  }
}

@media (max-width: 600px) {
  .inner-hero {
    min-height: 760px;
  }

  .inner-hero-content {
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 34px 0 92px;
  }

  .breadcrumbs {
    margin-bottom: 28px;
  }

  .inner-hero h1 {
    font-size: clamp(48px, 14vw, 66px);
  }

  .inner-hero .hero-lede {
    font-size: 15px;
    line-height: 1.65;
  }

  .replacement-guide {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .signal-grid {
    grid-template-columns: 1fr;
  }

  .signal-card {
    min-height: 270px;
    padding: 30px;
  }

  .signal-card h3 {
    margin-top: 52px;
  }

  .replacement-scope {
    padding-bottom: 100px;
  }

  .scope-grid {
    width: 100%;
  }

  .scope-image {
    min-height: 400px;
  }

  .scope-content {
    padding: 62px 24px;
  }

  .scope-content dl div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .system-options {
    padding-bottom: 100px;
  }

  .system-card {
    min-height: 340px;
    padding: 30px;
  }

  .replacement-process {
    padding: 100px 0;
  }

  .replacement-steps li {
    grid-template-columns: 38px 1fr;
    gap: 8px;
    padding: 32px 0;
  }

  .replacement-steps li>div {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .replacement-steps h3 {
    font-size: 25px;
  }

  .decision-panel {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .decision-panel>div:last-child {
    padding-left: 20px;
  }

  .decision-panel .button {
    width: 100%;
  }
}

/* Legibility pass layered over the approved navy/granite baseline. */
body {
  font-size: 16px;
  line-height: 1.65;
}

.desktop-nav a,
.footer-top nav a {
  font-size: 14px;
}

.header-cta,
.eyebrow,
.section-kicker {
  font-size: 13px;
}

.header-cta::before {
  font-size: 13px;
}

.button,
.mobile-cta {
  font-size: 14px;
}

.brand-lockup small {
  font-size: 10px;
  line-height: 1.45;
}

.hero-lede {
  max-width: 650px;
  color: rgba(255, 255, 255, .84);
  font-size: 20px;
  line-height: 1.65;
}

.text-link,
.consult-copy>a {
  font-size: 15px;
}

.hero-note small,
.replacement-brief li {
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
}

.hero-footer,
.breadcrumbs,
.project-caption span,
.footer-bottom,
.mobile-menu-panel a,
.service-row small,
.path-card small,
.path-card i,
.system-card a,
.replacement-steps small {
  font-size: 12px;
}

.trust-grid p {
  font-size: 18px;
}

.opening-copy,
.standard-card>p:not(.section-kicker),
.standard-card li,
.services-heading>p,
.work-heading>p,
.process-intro>p:last-child,
.consult-copy>p:not(.section-kicker),
.replacement-intro-copy,
.scope-content>p:not(.section-kicker),
.systems-heading>p,
.decision-panel>div:last-child p {
  font-size: 17px;
  line-height: 1.75;
}

.standard-card>p:not(.section-kicker),
.services-heading>p,
.work-heading>p,
.consult-copy>p:not(.section-kicker),
.scope-content>p:not(.section-kicker),
.process-heading>p:last-child,
.replacement-steps p {
  color: rgba(255, 255, 255, .74);
}

.service-row>p,
.path-card p,
.process-steps p,
.project-caption p,
.signal-card p,
.system-card p,
.process-heading>p:last-child,
.replacement-steps p {
  font-size: 16px;
  line-height: 1.7;
}

.service-row>p,
.project-caption p {
  color: rgba(255, 255, 255, .7);
}

.faq-list summary {
  font-size: 21px;
}

.faq-list details p {
  font-size: 17px;
  line-height: 1.75;
}

.lead-form label>span {
  font-size: 14px;
}

.lead-form label small,
.form-action p {
  font-size: 13px;
}

.form-status {
  font-size: 15px;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  font-size: 16px;
  line-height: 1.5;
}

.guide-note,
.scope-content dd {
  font-size: 15px;
  line-height: 1.7;
}

.scope-content dd {
  color: rgba(255, 255, 255, .68);
}

@media (max-width: 600px) {
  .hero-lede,
  .inner-hero .hero-lede {
    font-size: 18px;
    line-height: 1.6;
  }

  .brand-lockup small {
    font-size: 9px;
  }

  .faq-list summary {
    font-size: 19px;
  }
}

/* Mobile navigation, responsive safeguards, and restrained premium motion. */
body {
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
}

a,
button,
summary,
input,
select,
textarea {
  touch-action: manipulation;
}

h1,
h2,
h3,
p,
a,
summary,
dd {
  overflow-wrap: anywhere;
}

:focus-visible {
  outline: 2px solid var(--copper-light);
  outline-offset: 5px;
}

.mobile-menu summary {
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

@keyframes menuReveal {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroContentIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes premiumReveal {
  from {
    opacity: .18;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .site-header {
    z-index: 20;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block;
    margin-left: auto;
  }

  .mobile-menu>summary {
    min-width: 88px;
    min-height: 48px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, .26);
    color: white;
    background: rgba(3, 5, 26, .32);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    transition: border-color .25s ease, background .25s ease;
  }

  .mobile-menu>summary i {
    position: relative;
    width: 19px;
    height: 14px;
    display: block;
  }

  .mobile-menu>summary b {
    position: absolute;
    left: 0;
    width: 19px;
    height: 1px;
    display: block;
    background: var(--copper-light);
    transform-origin: center;
    transition: top .25s ease, transform .25s ease;
  }

  .mobile-menu>summary b:first-child {
    top: 3px;
  }

  .mobile-menu>summary b:last-child {
    top: 10px;
  }

  .mobile-menu[open]>summary {
    border-color: var(--copper-light);
    background: rgba(3, 5, 26, .78);
  }

  .mobile-menu[open]>summary b:first-child {
    top: 7px;
    transform: rotate(45deg);
  }

  .mobile-menu[open]>summary b:last-child {
    top: 7px;
    transform: rotate(-45deg);
  }

  .mobile-menu-panel {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    width: min(360px, calc(100vw - 40px));
    padding: 12px;
    display: grid;
    color: white;
    background: rgba(3, 5, 26, .98);
    border: 1px solid rgba(211, 167, 127, .42);
    box-shadow: 0 26px 70px rgba(0, 0, 0, .38);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    animation: menuReveal .28s ease-out both;
  }

  .mobile-menu-panel a {
    min-height: 52px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, .11);
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .08em;
  }

  .mobile-menu-panel a[aria-current="page"] {
    color: var(--copper-light);
  }

  .mobile-menu-panel .mobile-menu-cta {
    min-height: 56px;
    margin-top: 10px;
    justify-content: space-between;
    border: 0;
    background: var(--copper);
    color: white;
    text-transform: uppercase;
    letter-spacing: .12em;
  }

  .service-row,
  .replacement-steps li,
  .replacement-steps li>div,
  .scope-content dl div,
  .footer-top,
  .footer-bottom {
    min-width: 0;
  }

  .lead-form input,
  .lead-form select,
  .lead-form textarea {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .hero,
  .inner-hero {
    height: auto;
    min-height: max(780px, 100svh);
    display: flex;
    flex-direction: column;
  }

  .hero-content,
  .inner-hero-content {
    width: calc(100% - 36px);
    min-height: 0;
    flex: 1 0 auto;
    padding-top: clamp(56px, 10vh, 96px);
    padding-bottom: 96px;
  }

  .inner-hero-content {
    display: flex;
    align-items: center;
  }

  .hero-image {
    background-position: 58% center;
  }

  .replacement-page .inner-hero-image {
    object-position: 58% center;
  }

  .repair-page .inner-hero-image {
    object-position: 54% center;
  }

  .hero-vignette,
  .inner-hero-vignette {
    background: linear-gradient(90deg, rgba(3, 5, 26, .96), rgba(3, 5, 26, .7)), linear-gradient(0deg, rgba(3, 5, 26, .96), transparent 55%);
  }

  .hero-monogram {
    top: 22%;
    right: -12%;
    width: min(76vw, 420px);
    opacity: .08;
  }

  .mobile-menu>summary {
    min-width: 84px;
    min-height: 46px;
    padding-inline: 12px;
  }

  .mobile-menu-panel {
    width: calc(100vw - 36px);
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button,
  .hero-actions .text-link {
    width: 100%;
    min-height: 52px;
  }

  .hero-actions .text-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .hero-footer {
    position: relative;
    z-index: 2;
    flex: 0 0 68px;
  }

  .service-row>p,
  .project-caption,
  .decision-panel>div,
  .consult-copy,
  .lead-form,
  .scope-content,
  .path-card,
  .signal-card,
  .system-card {
    min-width: 0;
  }

  .button,
  .form-action button,
  .lead-form input,
  .lead-form select {
    min-height: 50px;
  }

  .lead-form textarea {
    min-height: 132px;
  }

  .footer-top nav a,
  .footer-bottom a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .mobile-cta {
    bottom: max(14px, env(safe-area-inset-bottom));
    min-height: 58px;
    border: 1px solid rgba(255, 255, 255, .2);
  }

  footer {
    padding-bottom: calc(112px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 380px) {
  .brand-lockup {
    gap: 10px;
  }

  .brand-lockup>img {
    width: 41px;
    height: 45px;
  }

  .brand-lockup small {
    display: none;
  }

  .mobile-menu>summary {
    min-width: 78px;
    padding-inline: 10px;
  }

  h1,
  .inner-hero h1 {
    font-size: clamp(44px, 14vw, 58px);
  }

  .standard-card h2,
  .services h2,
  .work h2,
  .consultation h2 {
    font-size: 40px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .mobile-menu>summary:hover {
    border-color: var(--copper-light);
    background: rgba(3, 5, 26, .62);
  }

  .mobile-menu-panel a:not(.mobile-menu-cta):hover {
    color: white;
    background: rgba(255, 255, 255, .06);
  }

  .project {
    overflow: hidden;
  }

  .project-image {
    transition: transform .7s cubic-bezier(.2, .7, .2, 1), filter .7s ease;
  }

  .project:hover .project-image {
    transform: scale(1.018);
    filter: saturate(1.05) contrast(1.02);
  }

  .button span,
  .mobile-menu-cta span,
  .mobile-cta span,
  .text-link span,
  .service-arrow {
    transition: transform .25s ease;
  }

  .button:hover span,
  .mobile-menu-cta:hover span,
  .mobile-cta:hover span,
  .text-link:hover span,
  .service-arrow:hover {
    transform: translate(3px, -2px);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy,
  .inner-hero-copy {
    animation: heroContentIn .8s cubic-bezier(.2, .7, .2, 1) .12s both;
  }

  @supports (animation-timeline: view()) {
    .opening,
    .standard-feature,
    .services-heading,
    .service-row,
    .paths-heading,
    .path-card,
    .process-intro,
    .process-steps li,
    .work-heading,
    .project,
    .faq-heading,
    .faq-list details,
    .consultation-grid,
    .replacement-intro,
    .signal-card,
    .scope-grid,
    .systems-heading,
    .system-card,
    .process-heading,
    .replacement-steps li,
    .decision-panel {
      animation: premiumReveal linear both;
      animation-timeline: view();
      animation-range: entry 4% cover 24%;
    }
  }
}
