:root {
  --ink: #101110;
  --ink-soft: #181917;
  --paper: #f5f1e8;
  --paper-light: #fbf9f4;
  --white: #ffffff;
  --gold: #cfa45e;
  --gold-light: #ebcf94;
  --gold-dark: #9f7840;
  --muted: #6f6b63;
  --line: rgba(16, 17, 16, 0.15);
  --line-dark: rgba(255, 255, 255, 0.15);
  --shell: min(1220px, calc(100% - 56px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper-light);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--gold);
  color: var(--ink);
}

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

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

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding: clamp(88px, 9vw, 138px) 0;
}

.section-index {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.section-index-gold {
  color: var(--gold);
}

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  border-bottom: 1px solid rgba(207, 164, 94, 0.3);
  background: rgba(10, 11, 10, 0.94);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 36px;
}

.brand {
  width: 158px;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 34px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.79rem;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.desktop-nav a {
  position: relative;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 0 16px;
  border: 1px solid rgba(207, 164, 94, 0.72);
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 750;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-1px);
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100svh - 78px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #080908;
  color: var(--white);
}

.hero-background,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-background {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 6, 5, 0.96) 0%, rgba(5, 6, 5, 0.78) 36%, rgba(5, 6, 5, 0.16) 72%),
    linear-gradient(180deg, rgba(5, 6, 5, 0.18) 55%, rgba(5, 6, 5, 0.82) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 96px 0 116px;
}

.eyebrow {
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.eyebrow b {
  color: var(--gold);
  font-weight: 400;
}

.hero h1 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(3.4rem, 6.5vw, 6.85rem);
  font-weight: 680;
  letter-spacing: -0.062em;
  line-height: 0.97;
}

.hero h1 span {
  display: block;
  color: var(--gold-light);
}

.hero-lead {
  max-width: 600px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.73);
  font-size: clamp(1rem, 1.35vw, 1.17rem);
  line-height: 1.75;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.hero-footer {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 28px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.61rem;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-footer p {
  margin: 0;
}

.hero-footer span {
  flex: 1;
  height: 1px;
  background: rgba(207, 164, 94, 0.36);
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 0 21px;
  border: 1px solid transparent;
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 780;
  letter-spacing: 0.02em;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease,
    transform 180ms ease;
}

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

.button-gold:hover,
.button-gold:focus-visible {
  background: var(--gold-light);
  transform: translateY(-2px);
}

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

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

.button-outline {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.button-outline:hover,
.button-outline:focus-visible {
  border-color: var(--gold-dark);
  color: var(--gold-dark);
  transform: translateY(-2px);
}

.text-link {
  font-size: 0.82rem;
  font-weight: 750;
}

.text-link span {
  display: inline-block;
  margin-left: 8px;
  color: var(--gold-dark);
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(5px);
}

.text-link-light {
  color: rgba(255, 255, 255, 0.86);
}

.text-link-light span {
  color: var(--gold);
}

.home-intro {
  background: var(--paper-light);
}

.home-intro-grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: 70px;
}

.home-intro h2,
.home-section-top h2,
.page-hero h1,
.editorial-grid h2,
.vision-grid h2,
.experience-grid h2,
.section-intro-row h2,
.contact-page-copy h2,
.project-cta h2 {
  margin: 0;
  font-weight: 640;
  letter-spacing: -0.052em;
  line-height: 1.02;
}

.home-intro h2 {
  max-width: 920px;
  font-size: clamp(2.85rem, 5.4vw, 5.4rem);
}

.home-intro-copy {
  margin-top: 42px;
  display: grid;
  grid-template-columns: minmax(0, 560px) auto;
  align-items: end;
  gap: 60px;
}

.home-intro-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.8;
}

.home-services {
  background: var(--ink-soft);
  color: var(--white);
}

.home-section-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
}

.home-section-top h2 {
  max-width: 770px;
  font-size: clamp(2.6rem, 4.7vw, 4.8rem);
}

.featured-service-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.featured-service-grid article {
  min-height: 300px;
  padding: 28px 34px 34px 0;
  border-right: 1px solid var(--line-dark);
}

.featured-service-grid article:not(:first-child) {
  padding-left: 34px;
}

.featured-service-grid article:last-child {
  border-right: 0;
}

.featured-service-grid span,
.services-page-grid > article > span,
.process-grid span,
.experience-points span,
.value-row span {
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.featured-service-grid h3 {
  margin: 90px 0 0;
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  font-weight: 620;
  letter-spacing: -0.035em;
}

.featured-service-grid p {
  max-width: 330px;
  margin: 17px 0 0;
  color: rgba(255, 255, 255, 0.56);
  line-height: 1.7;
}

.home-standard {
  padding: 0;
  border-bottom: 1px solid rgba(207, 164, 94, 0.38);
  background: var(--ink);
  color: var(--gold-light);
}

.home-standard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.home-standard p {
  margin: 0;
  padding: 22px 24px 22px 0;
  border-right: 1px solid var(--line-dark);
  font-size: 0.7rem;
  font-weight: 720;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-standard p:not(:first-child) {
  padding-left: 24px;
}

.home-standard p:last-child {
  border-right: 0;
}

.project-cta {
  padding: clamp(74px, 8vw, 112px) 0;
  background: var(--paper);
}

.project-cta-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
}

.project-cta h2 {
  max-width: 760px;
  font-size: clamp(2.6rem, 4.8vw, 4.9rem);
}

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 14%, rgba(207, 164, 94, 0.16), transparent 28%),
    linear-gradient(135deg, #0a0b0a, #181916);
  color: var(--white);
}

.page-hero::after {
  position: absolute;
  right: 7vw;
  bottom: 0;
  width: min(36vw, 520px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
  content: "";
}

.page-hero-inner {
  min-height: 490px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 78px 0;
}

.page-hero h1 {
  max-width: 950px;
  font-size: clamp(3.4rem, 7vw, 7.3rem);
}

.page-hero-inner > p:last-child {
  max-width: 650px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.04rem;
  line-height: 1.8;
}

.editorial-section {
  background: var(--paper-light);
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(190px, 0.34fr) minmax(0, 1fr);
  gap: 70px;
}

.editorial-grid h2 {
  font-size: clamp(2.75rem, 5vw, 5rem);
}

.editorial-lead {
  max-width: 760px;
  margin: 36px 0 0;
  font-size: clamp(1.3rem, 2vw, 1.82rem);
  line-height: 1.5;
}

.editorial-copy {
  max-width: 700px;
  margin: 26px 0 0;
  color: var(--muted);
  line-height: 1.85;
}

.value-row {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.value-row > div {
  padding: 25px 28px 12px 0;
  border-right: 1px solid var(--line);
}

.value-row > div:not(:first-child) {
  padding-left: 28px;
}

.value-row > div:last-child {
  border-right: 0;
}

.value-row strong {
  margin-top: 58px;
  display: block;
  font-size: 1.18rem;
}

.value-row p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.65;
}

.vision-section {
  background: var(--ink-soft);
  color: var(--white);
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.vision-grid article {
  padding-right: 70px;
}

.vision-grid article + article {
  padding-right: 0;
  padding-left: 70px;
  border-left: 1px solid var(--line-dark);
}

.vision-grid h2 {
  font-size: clamp(2.3rem, 4vw, 4rem);
}

.vision-grid article > p:last-child {
  max-width: 500px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.8;
}

.experience-section {
  background: var(--paper);
}

.experience-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 90px;
}

.experience-grid h2 {
  max-width: 620px;
  font-size: clamp(2.65rem, 4.8vw, 4.8rem);
}

.experience-points > div {
  display: grid;
  grid-template-columns: 54px minmax(0, 0.65fr) minmax(0, 1fr);
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.experience-points > div:last-child {
  border-bottom: 1px solid var(--line);
}

.experience-points h3 {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 660;
}

.experience-points p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.services-page,
.process-section,
.contact-page {
  background: var(--paper-light);
}

.section-intro-row {
  display: grid;
  grid-template-columns: minmax(190px, 0.34fr) minmax(0, 1fr);
  gap: 70px;
}

.section-intro-row h2 {
  max-width: 900px;
  font-size: clamp(2.75rem, 5vw, 5rem);
}

.services-page-grid {
  margin-top: 76px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 72px;
}

.services-page-grid article {
  min-height: 300px;
  display: grid;
  grid-template-columns: 62px 1fr;
  align-content: start;
  column-gap: 18px;
  padding: 31px 0;
  border-top: 1px solid var(--line);
}

.services-page-grid article:nth-last-child(-n + 2) {
  border-bottom: 1px solid var(--line);
}

.services-page-grid h3,
.services-page-grid p {
  grid-column: 2;
}

.services-page-grid h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2.2vw, 2.05rem);
  font-weight: 640;
  letter-spacing: -0.03em;
}

.services-page-grid p {
  max-width: 480px;
  margin: 15px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.services-page-grid p + p {
  margin-top: 10px;
  font-size: 0.88rem;
}

.project-types {
  padding: 55px 0;
  background: var(--ink-soft);
  color: var(--white);
}

.project-types-inner {
  display: grid;
  grid-template-columns: minmax(190px, 0.34fr) minmax(0, 1fr);
  gap: 70px;
}

.project-types-inner > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.project-types-inner span {
  padding: 18px 18px 18px 0;
  border-top: 1px solid var(--line-dark);
  color: var(--gold-light);
  font-size: 0.69rem;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-types-inner span:nth-child(3n + 2),
.project-types-inner span:nth-child(3n + 3) {
  padding-left: 18px;
  border-left: 1px solid var(--line-dark);
}

.project-types-inner span:nth-child(n + 4) {
  border-bottom: 1px solid var(--line-dark);
}

.process-section {
  background: var(--paper);
}

.process-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-grid article {
  min-height: 260px;
  padding: 28px 26px 30px 0;
  border-right: 1px solid var(--line);
}

.process-grid article:not(:first-child) {
  padding-left: 26px;
}

.process-grid article:last-child {
  border-right: 0;
}

.process-grid span {
  color: var(--gold-dark);
}

.process-grid h3 {
  margin: 62px 0 0;
  font-size: 1.38rem;
  font-weight: 660;
}

.process-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: clamp(70px, 10vw, 150px);
}

.contact-page-copy h2 {
  max-width: 720px;
  font-size: clamp(2.75rem, 5vw, 5rem);
}

.contact-page-copy > p:not(.section-index) {
  max-width: 600px;
  margin: 28px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.contact-actions {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.contact-details {
  margin: 0;
  align-self: end;
  font-style: normal;
}

.contact-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.contact-item:last-of-type {
  border-bottom: 1px solid var(--line);
}

.contact-item > span {
  color: var(--gold-dark);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-item a {
  font-size: 0.98rem;
  font-weight: 590;
  line-height: 1.6;
  transition: color 180ms ease;
}

.contact-item a:hover,
.contact-item a:focus-visible {
  color: var(--gold-dark);
}

.contact-details-large {
  padding: 34px 40px;
  border-top: 3px solid var(--gold);
  background: var(--paper);
}

.map-link {
  margin-top: 24px;
  display: inline-flex;
  gap: 10px;
  color: var(--gold-dark);
  font-size: 0.8rem;
  font-weight: 760;
}

.site-footer {
  padding: 66px 0 28px;
  background: #090a09;
  color: rgba(255, 255, 255, 0.55);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 70px;
  padding-bottom: 52px;
}

.footer-brand img {
  width: 150px;
}

.footer-brand p {
  margin: 20px 0 0;
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 740;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 13px;
  font-size: 0.78rem;
}

.footer-nav a,
.footer-contact a {
  transition: color 180ms ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--gold-light);
}

.footer-contact {
  justify-self: end;
  text-align: right;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
  font-size: 0.67rem;
}

.footer-bottom p {
  margin: 0;
}

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

@media (max-width: 1020px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .mobile-nav {
    position: relative;
    display: block;
  }

  .mobile-nav summary {
    padding: 10px 13px;
    border: 1px solid rgba(207, 164, 94, 0.55);
    color: var(--gold-light);
    cursor: pointer;
    font-size: 0.72rem;
    font-weight: 750;
    list-style: none;
  }

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

  .mobile-nav nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 230px;
    display: grid;
    padding: 12px;
    border: 1px solid rgba(207, 164, 94, 0.34);
    background: #111210;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
  }

  .mobile-nav nav a {
    padding: 13px 12px;
    border-bottom: 1px solid var(--line-dark);
    font-size: 0.82rem;
  }

  .mobile-nav nav a:last-child {
    border-bottom: 0;
  }

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

  .home-intro-grid,
  .editorial-grid,
  .section-intro-row,
  .project-types-inner,
  .experience-grid,
  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

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

  .home-intro-copy .text-link {
    justify-self: start;
  }

  .experience-points > div {
    grid-template-columns: 54px 0.75fr 1fr;
  }

  .project-types-inner > .section-index {
    margin-bottom: 0;
  }

  .contact-details-large {
    max-width: 640px;
  }
}

@media (max-width: 820px) {
  .featured-service-grid,
  .value-row,
  .home-standard-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-service-grid article:nth-child(2),
  .value-row > div:nth-child(2),
  .home-standard p:nth-child(2),
  .process-grid article:nth-child(2) {
    border-right: 0;
  }

  .featured-service-grid article:nth-child(-n + 2),
  .value-row > div:nth-child(-n + 2),
  .home-standard p:nth-child(-n + 2),
  .process-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-dark);
  }

  .value-row > div:nth-child(-n + 2),
  .process-grid article:nth-child(-n + 2) {
    border-bottom-color: var(--line);
  }

  .featured-service-grid article:nth-child(3),
  .value-row > div:nth-child(3),
  .home-standard p:nth-child(3),
  .process-grid article:nth-child(3) {
    padding-left: 0;
  }

  .featured-service-grid article:nth-child(3),
  .value-row > div:nth-child(3),
  .home-standard p:nth-child(3),
  .process-grid article:nth-child(3) {
    border-right: 1px solid var(--line-dark);
  }

  .value-row > div:nth-child(3),
  .process-grid article:nth-child(3) {
    border-right-color: var(--line);
  }

  .vision-grid,
  .services-page-grid {
    grid-template-columns: 1fr;
  }

  .vision-grid article,
  .vision-grid article + article {
    padding: 0;
  }

  .vision-grid article + article {
    margin-top: 58px;
    padding-top: 58px;
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .services-page-grid article,
  .services-page-grid article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .services-page-grid article:last-child {
    border-bottom: 1px solid var(--line);
  }

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

  .footer-contact {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: min(100% - 34px, 1220px);
  }

  .header-inner {
    min-height: 70px;
  }

  .brand {
    width: 136px;
  }

  .hero {
    min-height: calc(100svh - 70px);
  }

  .hero-background {
    object-position: 64% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 6, 5, 0.96) 0%, rgba(5, 6, 5, 0.76) 100%),
      linear-gradient(180deg, rgba(5, 6, 5, 0.14), rgba(5, 6, 5, 0.78));
  }

  .hero-content {
    padding: 74px 0 112px;
  }

  .eyebrow {
    max-width: 340px;
    align-items: flex-start;
    line-height: 1.6;
  }

  .eyebrow > span {
    margin-top: 6px;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 14vw, 4.8rem);
  }

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

  .hero-footer {
    bottom: 20px;
  }

  .section {
    padding: 82px 0;
  }

  .home-section-top,
  .project-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .featured-service-grid,
  .value-row,
  .home-standard-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .featured-service-grid article,
  .featured-service-grid article:not(:first-child),
  .value-row > div,
  .value-row > div:not(:first-child),
  .home-standard p,
  .home-standard p:not(:first-child),
  .process-grid article,
  .process-grid article:not(:first-child) {
    padding-right: 0;
    padding-left: 0;
    border-right: 0;
  }

  .featured-service-grid article,
  .featured-service-grid article:nth-child(-n + 2),
  .value-row > div,
  .value-row > div:nth-child(-n + 2),
  .home-standard p,
  .home-standard p:nth-child(-n + 2),
  .process-grid article,
  .process-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-dark);
  }

  .value-row > div,
  .value-row > div:nth-child(-n + 2),
  .process-grid article,
  .process-grid article:nth-child(-n + 2) {
    border-bottom-color: var(--line);
  }

  .featured-service-grid article:last-child,
  .value-row > div:last-child,
  .home-standard p:last-child,
  .process-grid article:last-child {
    border-bottom: 0;
  }

  .featured-service-grid article {
    min-height: auto;
    padding-top: 26px;
    padding-bottom: 30px;
  }

  .featured-service-grid h3 {
    margin-top: 34px;
  }

  .value-row strong {
    margin-top: 30px;
  }

  .home-standard p {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .page-hero-inner {
    min-height: 420px;
  }

  .page-hero h1 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .experience-points > div {
    grid-template-columns: 44px 1fr;
  }

  .experience-points p {
    grid-column: 2;
  }

  .services-page-grid article {
    min-height: auto;
    grid-template-columns: 44px 1fr;
    column-gap: 12px;
  }

  .project-types-inner > div {
    grid-template-columns: 1fr 1fr;
  }

  .project-types-inner span,
  .project-types-inner span:nth-child(3n + 2),
  .project-types-inner span:nth-child(3n + 3) {
    padding: 15px 12px 15px 0;
    border: 0;
    border-top: 1px solid var(--line-dark);
  }

  .project-types-inner span:nth-child(2n) {
    padding-left: 12px;
    border-left: 1px solid var(--line-dark);
  }

  .project-types-inner span:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line-dark);
  }

  .process-grid article {
    min-height: auto;
    padding-top: 26px;
    padding-bottom: 30px;
  }

  .process-grid h3 {
    margin-top: 32px;
  }

  .contact-actions {
    flex-direction: column;
  }

  .contact-actions .button {
    width: 100%;
  }

  .contact-details-large {
    padding: 28px 22px;
  }

  .contact-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

@media (max-width: 430px) {
  .button {
    width: 100%;
  }

  .hero-actions .text-link {
    margin-left: 2px;
  }

  .project-types-inner > div {
    grid-template-columns: 1fr;
  }

  .project-types-inner span,
  .project-types-inner span:nth-child(2n),
  .project-types-inner span:nth-last-child(-n + 2) {
    padding: 14px 0;
    border: 0;
    border-top: 1px solid var(--line-dark);
  }

  .project-types-inner span:last-child {
    border-bottom: 1px solid var(--line-dark);
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
