:root {
  --ink: #20241f;
  --ink-soft: #353a34;
  --paper: #f2efe7;
  --paper-deep: #e7e2d7;
  --white: #fff;
  --accent: #d86f2b;
  --accent-dark: #b65116;
  --line: rgba(32, 36, 31, 0.18);
  --shell: min(1180px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-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;
}

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

.section {
  padding: 120px 0;
}

.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: 10px 16px;
  background: var(--white);
  transform: translateY(-150%);
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 2px;
  background: var(--accent);
  content: "";
}

.eyebrow.dark {
  color: #697067;
}

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

h1,
h2,
h3 {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
}

h1,
h2 {
  margin-bottom: 0;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.91;
}

h1 {
  color: var(--white);
  font-size: clamp(4.6rem, 9vw, 8.7rem);
}

h2 {
  font-size: clamp(3.35rem, 6vw, 6.1rem);
}

h1 em,
h2 em {
  color: var(--accent);
  font-weight: 600;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 55px;
  padding: 0 25px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--white);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-small {
  min-height: 42px;
  padding-inline: 19px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.text-link span {
  color: var(--accent);
  font-size: 1.2rem;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(3px, 3px);
}

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white);
  transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-header.scrolled {
  border-color: transparent;
  background: rgba(27, 31, 27, 0.96);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}

.header-inner {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  line-height: 1;
}

.brand-mark {
  width: 38px;
  height: 38px;
  color: var(--accent);
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.brand-mark path:last-child {
  fill: none;
  stroke: var(--ink);
  stroke-width: 2.7;
}

.site-header .brand-mark path:last-child,
.footer-brand .brand-mark path:last-child {
  stroke: var(--white);
}

.brand strong,
.brand small {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand strong {
  font-size: 1.08rem;
}

.brand small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.68rem;
  letter-spacing: 0.29em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav > a:not(.button) {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-nav > a:not(.button):hover {
  color: #f3a16c;
}

.site-nav .nav-phone {
  padding-left: 31px;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 0.82rem;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: 820px;
  height: 100svh;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  background: url("assets/images/hero-metal-building.jpg") center 43% / cover no-repeat;
  transform: scale(1.02);
  animation: hero-in 1.4s ease both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(18, 21, 18, 0.93) 0%, rgba(18, 21, 18, 0.62) 45%, rgba(18, 21, 18, 0.1) 78%),
    linear-gradient(0deg, rgba(15, 18, 15, 0.68) 0%, transparent 52%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 790px) auto;
  gap: 80px;
  align-items: end;
  padding-bottom: 118px;
}

.hero-copy {
  animation: copy-in 0.9s 0.25s ease both;
}

.hero-intro {
  max-width: 650px;
  margin: 30px 0 35px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.02rem;
}

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

.hero-proof {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px 13px;
  padding: 25px 0 3px 25px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  animation: copy-in 0.9s 0.48s ease both;
}

.hero-proof span {
  color: var(--accent);
  font-size: 0.63rem;
  font-weight: 700;
}

.hero-proof p {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.05;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  right: 35px;
  bottom: 35px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-cue svg {
  width: 18px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(300px, 0.7fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 63px;
}

.section-heading > p {
  max-width: 420px;
  margin-bottom: 8px;
  color: #656b63;
  font-size: 0.94rem;
}

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

.service-card {
  background: var(--white);
}

.service-image {
  position: relative;
  aspect-ratio: 1.26;
  overflow: hidden;
}

.service-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(24, 29, 24, 0.2), transparent 55%);
  content: "";
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.service-card:hover .service-image img {
  transform: scale(1.045);
}

.service-image > span {
  position: absolute;
  right: 17px;
  bottom: 14px;
  z-index: 2;
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
}

.service-body {
  position: relative;
  padding: 34px 33px 37px;
}

.service-body > svg {
  position: absolute;
  top: 35px;
  right: 29px;
  width: 34px;
  fill: none;
  stroke: var(--accent);
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.service-body h3 {
  margin-bottom: 14px;
  padding-right: 45px;
  font-size: 1.75rem;
  line-height: 1;
}

.service-body p {
  margin: 0;
  color: #666b64;
  font-size: 0.84rem;
}

.service-note {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 28px;
  align-items: center;
  margin-top: 38px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: #6c716a;
  font-size: 0.74rem;
}

.service-note strong {
  margin-right: 12px;
  color: var(--ink);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-note span::before {
  margin-right: 10px;
  color: var(--accent);
  content: "+";
}

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

.work-heading {
  grid-template-columns: 1fr auto;
}

.work-heading .text-link {
  margin-bottom: 8px;
}

.project-grid {
  display: grid;
  grid-auto-rows: 245px;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}

.project {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #121512;
}

.project::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12, 14, 12, 0.88) 0%, transparent 52%);
  content: "";
}

.project-wide {
  grid-column: span 2;
}

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

.project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 450ms ease, transform 650ms cubic-bezier(0.2, 0.75, 0.3, 1);
}

.project:hover img {
  filter: saturate(1.08);
  transform: scale(1.045);
}

.project figcaption {
  position: absolute;
  right: 26px;
  bottom: 22px;
  left: 26px;
  z-index: 2;
}

.project figcaption span,
.project figcaption strong {
  display: block;
}

.project figcaption span {
  margin-bottom: 3px;
  color: #e99158;
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.project figcaption strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.about {
  padding-bottom: 130px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.88fr) minmax(460px, 1.12fr);
  gap: clamp(60px, 9vw, 125px);
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-visual > img {
  width: 100%;
  min-height: 620px;
  object-fit: cover;
}

.about-stamp {
  position: absolute;
  right: -58px;
  bottom: 63px;
  display: grid;
  width: 116px;
  height: 116px;
  place-items: center;
  border: 7px solid var(--paper);
  border-radius: 50%;
  background: var(--accent);
}

.about-stamp svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.about-stamp text {
  fill: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.7px;
}

.about-stamp .stamp-mark {
  fill: var(--white);
}

.about-lead {
  max-width: 620px;
  margin: 32px 0 38px;
  color: #5c625a;
  font-size: 0.98rem;
}

.values {
  border-top: 1px solid var(--line);
}

.values > div {
  display: grid;
  grid-template-columns: 34px minmax(180px, 0.75fr) 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.values span {
  padding-top: 3px;
  color: var(--accent);
  font-size: 0.63rem;
  font-weight: 700;
}

.values h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.2;
}

.values p {
  margin: 0;
  color: #747970;
  font-size: 0.78rem;
  line-height: 1.55;
}

.process {
  padding: 74px 0 80px;
  background: var(--paper-deep);
}

.process .shell {
  display: grid;
  grid-template-columns: 0.8fr 1.8fr;
  gap: 90px;
  align-items: end;
}

.process-title h2 {
  font-size: clamp(2.8rem, 4vw, 4.4rem);
}

.process-steps {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}

.process-steps li {
  min-height: 185px;
  padding: 0 28px;
  border-left: 1px solid rgba(32, 36, 31, 0.2);
}

.process-steps span {
  display: block;
  margin-bottom: 45px;
  color: var(--accent);
  font-size: 0.65rem;
  font-weight: 700;
}

.process-steps strong {
  display: block;
  margin-bottom: 9px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.25rem;
  text-transform: uppercase;
}

.process-steps p {
  margin: 0;
  color: #6c716a;
  font-size: 0.76rem;
  line-height: 1.55;
}

.contact {
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.contact-image,
.contact-overlay {
  position: absolute;
  inset: 0;
}

.contact-image {
  background: url("assets/images/fresh-concrete.jpg") center / cover no-repeat;
}

.contact-overlay {
  background: rgba(22, 26, 22, 0.89);
}

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(60px, 9vw, 130px);
  align-items: center;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 470px;
  margin: 30px 0 38px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.contact-direct {
  display: grid;
  gap: 13px;
}

.contact-direct a {
  width: fit-content;
}

.contact-direct small,
.contact-direct strong {
  display: block;
}

.contact-direct small {
  margin-bottom: 2px;
  color: #e99158;
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-direct strong {
  font-size: 0.85rem;
  font-weight: 600;
}

.estimate-form {
  padding: 43px 46px;
  background: var(--paper);
  color: var(--ink);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.estimate-form label {
  display: block;
  margin-bottom: 21px;
}

.estimate-form label > span {
  display: block;
  margin-bottom: 7px;
  color: #60665f;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.estimate-form input,
.estimate-form select,
.estimate-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #bbb8af;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.estimate-form input,
.estimate-form select {
  height: 42px;
}

.estimate-form textarea {
  padding: 9px 0;
  resize: vertical;
}

.estimate-form input:focus,
.estimate-form select:focus,
.estimate-form textarea:focus {
  border-color: var(--accent);
}

.estimate-form textarea::placeholder {
  color: #99978f;
  font-size: 0.76rem;
}

.form-button {
  width: 100%;
  margin-top: 7px;
}

.form-button span {
  font-size: 1.1rem;
}

.form-note {
  margin: 11px 0 0;
  color: #85827a;
  font-size: 0.63rem;
  text-align: center;
}

.site-footer {
  padding: 70px 0 26px;
  background: #151815;
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.7fr 1fr;
  gap: 45px;
  padding-bottom: 54px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-main > p {
  margin: 1px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.69rem;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 23px;
  color: rgba(255, 255, 255, 0.36);
  font-size: 0.61rem;
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.mobile-call {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.75, 0.3, 1);
}

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

@keyframes hero-in {
  from { opacity: 0; transform: scale(1.08); }
  to { opacity: 1; transform: scale(1.02); }
}

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

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

  .section {
    padding: 90px 0;
  }

  .nav-toggle {
    position: relative;
    z-index: 2;
    display: grid;
    width: 42px;
    height: 42px;
    padding: 11px 9px;
    border: 0;
    background: transparent;
    gap: 5px;
  }

  .nav-toggle > span:not(.sr-only) {
    display: block;
    height: 2px;
    background: var(--white);
    transition: transform 180ms ease, opacity 180ms ease;
  }

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

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

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

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    padding: 130px 30px 40px;
    background: #1b1f1b;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav > a:not(.button) {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 2.2rem;
  }

  .site-nav .nav-phone {
    padding: 15px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 0;
    font-size: 1rem;
  }

  .site-nav .button {
    width: min(100%, 320px);
    margin-top: 5px;
  }

  .hero {
    min-height: 760px;
    max-height: 900px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding-bottom: 92px;
  }

  .hero-proof,
  .scroll-cue {
    display: none;
  }

  .section-heading,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .service-grid {
    gap: 12px;
  }

  .service-body {
    padding: 27px 22px 30px;
  }

  .service-body > svg {
    display: none;
  }

  .project-grid {
    grid-auto-rows: 210px;
  }

  .about-grid {
    width: min(100% - 36px, 680px);
  }

  .about-visual > img {
    min-height: 500px;
  }

  .about-stamp {
    right: -5px;
  }

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

  .contact-copy {
    max-width: 580px;
  }

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

@media (max-width: 680px) {
  :root {
    --shell: calc(100% - 30px);
  }

  body {
    padding-bottom: 61px;
  }

  .section {
    padding: 76px 0;
  }

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

  .brand strong {
    font-size: 0.95rem;
  }

  .brand small {
    font-size: 0.59rem;
  }

  .hero {
    min-height: 700px;
  }

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

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(18, 21, 18, 0.9) 0%, rgba(18, 21, 18, 0.35) 100%),
      linear-gradient(0deg, rgba(15, 18, 15, 0.8) 0%, transparent 60%);
  }

  .hero-content {
    padding-bottom: 68px;
  }

  h1 {
    font-size: clamp(4rem, 20vw, 6rem);
  }

  h2 {
    font-size: clamp(3rem, 15vw, 4.7rem);
  }

  .hero-intro {
    margin: 25px 0 30px;
    font-size: 0.9rem;
  }

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

  .section-heading {
    gap: 25px;
    margin-bottom: 42px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-image {
    aspect-ratio: 1.55;
  }

  .service-note {
    gap: 10px 17px;
  }

  .work-heading {
    grid-template-columns: 1fr;
  }

  .project-grid {
    display: grid;
    grid-auto-rows: 240px;
    grid-template-columns: 1fr;
  }

  .project-wide,
  .project-tall {
    grid-row: auto;
    grid-column: auto;
  }

  .about-visual > img {
    min-height: 430px;
  }

  .about-stamp {
    width: 100px;
    height: 100px;
    bottom: 28px;
  }

  .values > div {
    grid-template-columns: 30px 1fr;
  }

  .values p {
    grid-column: 2;
  }

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

  .process-steps li {
    min-height: auto;
    padding: 24px 0 24px 25px;
    border-top: 1px solid rgba(32, 36, 31, 0.16);
  }

  .process-steps span {
    margin-bottom: 18px;
  }

  .contact {
    padding-top: 80px;
  }

  .estimate-form {
    padding: 30px 23px;
  }

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

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

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

  .mobile-call {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 90;
    display: flex;
    height: 61px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--accent);
    color: var(--white);
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-call svg {
    width: 17px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
  }
}

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
