* {
  box-sizing: border-box;
}

:root {
  --black: #050505;
  --soft-black: #0b0b0c;
  --charcoal: #15171a;
  --graphite: #24272b;
  --silver: #d6d9de;
  --steel: #8f969e;
  --white: #ffffff;
  --offwhite: #f1f1ef;
  --line: rgba(255,255,255,.14);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: #17181a;
  background: var(--black);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 100;
  opacity: .035;
  pointer-events: none;
  background-image:
    repeating-radial-gradient(circle at 0 0, transparent 0, #fff 1px, transparent 2px);
  background-size: 9px 9px;
  mix-blend-mode: overlay;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  min-height: 78px;
  padding: 14px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  background: rgba(5,5,5,.76);
  border-bottom: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(18px);
}

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

.logo-emblem {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid #cfd3d8;
  color: #090909;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 38px;
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  background:
    radial-gradient(circle at 35% 20%, #ffffff, #aab0b7 38%, #f2f3f4 67%, #747b83);
  box-shadow:
    inset 0 0 0 4px #0a0a0a,
    0 0 24px rgba(255,255,255,.08);
}

.logo-copy strong,
.logo-copy small {
  display: block;
  line-height: 1;
}

.logo-copy strong {
  font-size: 16px;
  letter-spacing: .18em;
}

.logo-copy small {
  margin-top: 7px;
  color: #aeb3b9;
  font-size: 8px;
  letter-spacing: .22em;
}

.desktop-nav {
  display: flex;
  gap: 32px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  color: #c4c7cb;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: white;
  transition: right .25s ease;
}

.desktop-nav a:hover::after {
  right: 0;
}

.header-cta {
  padding: 11px 16px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 3px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 150px 6vw 90px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 55px;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(120deg, #050505 0%, #0b0c0e 48%, #101214 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(255,255,255,.045) 50%, transparent 50.2%),
    linear-gradient(0deg, transparent 49.8%, rgba(255,255,255,.03) 50%, transparent 50.2%);
  background-size: 110px 110px;
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}

.hero-lines {
  position: absolute;
  width: 800px;
  height: 1400px;
  right: -280px;
  top: -220px;
  transform: rotate(24deg);
  border-left: 1px solid rgba(255,255,255,.12);
  border-right: 1px solid rgba(255,255,255,.05);
  background: linear-gradient(90deg, rgba(255,255,255,.02), transparent);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .17;
}

.hero-glow-one {
  width: 430px;
  height: 430px;
  right: 5%;
  top: 15%;
  background: white;
}

.hero-glow-two {
  width: 350px;
  height: 350px;
  left: 15%;
  bottom: -15%;
  background: #77818d;
}

.hero-copy-wrap,
.hero-visual {
  position: relative;
  z-index: 3;
}

.kicker {
  margin: 0 0 18px;
  color: #c4c9cf;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.kicker.dark {
  color: #646a71;
}

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

h1 {
  max-width: 900px;
  margin-bottom: 26px;
  font-size: clamp(54px, 7vw, 102px);
  line-height: .94;
  letter-spacing: -.055em;
}

h1 span {
  display: block;
  margin-top: 8px;
  color: transparent;
  background: linear-gradient(90deg, #ffffff, #959ca4 50%, #f4f5f6);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-copy {
  max-width: 690px;
  color: #b9bec4;
  font-size: clamp(17px, 1.55vw, 21px);
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.btn {
  position: relative;
  min-height: 56px;
  padding: 15px 25px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-silver {
  color: #080808;
  background: linear-gradient(110deg, #f7f8f8, #9299a1 48%, #ffffff 72%);
  box-shadow: 0 14px 38px rgba(255,255,255,.12);
}

.btn-outline {
  color: white;
  border: 1px solid rgba(255,255,255,.55);
  background: rgba(255,255,255,.025);
}

.hero-proof {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.hero-proof div {
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,.17);
}

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

.hero-proof strong {
  margin-bottom: 5px;
  font-size: 12px;
}

.hero-proof span {
  color: #858c94;
  font-size: 10px;
}

.hero-visual {
  min-height: 590px;
}

.hero-card {
  position: absolute;
  border: 1px solid rgba(255,255,255,.17);
  box-shadow: 0 40px 90px rgba(0,0,0,.5);
  backdrop-filter: blur(10px);
}

.hero-card-main {
  inset: 0 0 45px 45px;
  padding: 22px;
  transform: rotate(2.5deg);
  background: linear-gradient(150deg, rgba(255,255,255,.11), rgba(255,255,255,.02));
}

.chrome-ribbon {
  position: absolute;
  top: 22px;
  right: -20px;
  z-index: 2;
  padding: 10px 16px;
  color: #050505;
  background: linear-gradient(90deg, #f6f7f8, #8d949c, #f7f8f9);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .18em;
}

.visual-floor {
  position: relative;
  height: 78%;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.42), transparent 18%),
    radial-gradient(circle at 68% 65%, rgba(255,255,255,.23), transparent 25%),
    linear-gradient(125deg, #101010, #8d9399 43%, #24282d 63%, #d2d5d8 77%, #131517);
}

.visual-floor::before,
.visual-floor::after {
  content: "";
  position: absolute;
  width: 140%;
  height: 38%;
  left: -20%;
  border-radius: 50%;
  filter: blur(13px);
}

.visual-floor::before {
  top: 22%;
  transform: rotate(-16deg);
  background: rgba(255,255,255,.25);
}

.visual-floor::after {
  bottom: 7%;
  transform: rotate(11deg);
  background: rgba(0,0,0,.38);
}

.floor-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, transparent 30%, rgba(255,255,255,.35) 49%, transparent 60%);
}

.floor-grid {
  position: absolute;
  inset: 0;
  opacity: .2;
  background:
    linear-gradient(90deg, transparent 49%, rgba(255,255,255,.4) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(255,255,255,.28) 50%, transparent 51%);
  background-size: 80px 80px;
  transform: perspective(500px) rotateX(63deg) scale(1.5);
}

.visual-caption {
  padding: 25px 4px 0;
}

.visual-caption span {
  color: #9299a1;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.visual-caption strong {
  display: block;
  margin-top: 6px;
  font-size: 17px;
}

.hero-card-small {
  left: 0;
  bottom: 0;
  z-index: 4;
  width: 225px;
  padding: 22px;
  background: rgba(8,8,8,.9);
}

.hero-card-small .mini-number {
  margin-bottom: 34px;
  color: #7c838b;
  font-size: 11px;
}

.hero-card-small p {
  margin-bottom: 4px;
  color: #8f969d;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.hero-card-small strong {
  display: block;
  font-size: 15px;
  line-height: 1.35;
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  left: 6vw;
  bottom: 22px;
  color: #777e86;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.brand-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
  color: #7e858d;
  background: #080808;
}

.brand-strip div {
  padding: 20px 8px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .15em;
}

.section {
  padding: 110px 6vw;
}

.intro {
  position: relative;
  background: var(--offwhite);
}

.section-tag {
  position: absolute;
  top: 40px;
  right: 6vw;
  color: #a3a6a9;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 70px;
  align-items: end;
}

.intro h2,
.projects-heading h2,
.process-header h2,
.reviews-copy h2,
.final-cta h2 {
  margin-bottom: 18px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1;
  letter-spacing: -.05em;
}

.intro-copy {
  color: #555b61;
  font-size: 17px;
}

.text-link {
  display: inline-block;
  margin-top: 15px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.services-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #cfd1d3;
  border: 1px solid #cfd1d3;
}

.service-card {
  position: relative;
  min-height: 410px;
  padding: 30px;
  background: white;
  transition: transform .25s ease, background .25s ease;
}

.service-card:hover {
  z-index: 2;
  transform: translateY(-8px);
  background: #fafafa;
  box-shadow: 0 25px 50px rgba(0,0,0,.08);
}

.service-number {
  color: #8f9499;
  font-size: 10px;
  font-weight: 900;
}

.service-icon {
  position: relative;
  height: 110px;
  margin: 40px 0 28px;
  overflow: hidden;
  border: 1px solid #d7d9db;
  background: #111;
}

.service-icon.slab {
  background:
    linear-gradient(30deg, transparent 48%, rgba(255,255,255,.22) 50%, transparent 52%),
    linear-gradient(145deg, #777d83, #d2d4d6 44%, #5b6065 45%, #b5b9bd);
}

.service-icon.flake {
  background:
    radial-gradient(circle at 15% 20%, #fff 0 3px, transparent 4px),
    radial-gradient(circle at 36% 68%, #92989f 0 5px, transparent 6px),
    radial-gradient(circle at 62% 38%, #fff 0 4px, transparent 5px),
    radial-gradient(circle at 83% 77%, #646a70 0 6px, transparent 7px),
    radial-gradient(circle at 75% 13%, #d8dade 0 4px, transparent 5px),
    radial-gradient(circle at 24% 84%, #737a81 0 4px, transparent 5px),
    #1a1c1f;
  background-size: 75px 60px;
}

.service-icon.metallic {
  background:
    radial-gradient(ellipse at 25% 45%, rgba(255,255,255,.52), transparent 22%),
    radial-gradient(ellipse at 73% 58%, rgba(185,191,198,.4), transparent 25%),
    linear-gradient(122deg, #111, #9ba1a7 40%, #25292d 60%, #e4e5e7 77%, #111);
}

.service-icon.seal {
  background:
    linear-gradient(135deg, rgba(255,255,255,.22), transparent 35%),
    repeating-linear-gradient(110deg, #72777c 0 16px, #878c91 16px 30px);
}

.service-card h3 {
  margin-bottom: 13px;
  font-size: 22px;
  line-height: 1.2;
}

.service-card p {
  color: #666b70;
  font-size: 13px;
}

.service-card a {
  position: absolute;
  left: 30px;
  bottom: 28px;
  color: #23272b;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.projects-section {
  padding: 110px 6vw;
  color: white;
  background: #080808;
}

.projects-heading {
  max-width: 880px;
  margin-bottom: 60px;
}

.projects-heading > p:last-child {
  color: #80868d;
}

.project-gallery {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
}

.project {
  min-height: 500px;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: #111;
}

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

.project-wide {
  grid-column: 1 / -1;
  min-height: 520px;
}

.project-art {
  position: relative;
  min-height: 330px;
  overflow: hidden;
}

.art-metallic {
  background:
    linear-gradient(130deg, #050505 0%, #4e555d 28%, #d7dade 48%, #1a1d20 63%, #8f959c 78%, #0a0a0a 100%);
}

.art-swirl {
  position: absolute;
  inset: 10%;
  border-radius: 48% 52% 62% 38%;
  border: 36px solid rgba(255,255,255,.18);
  transform: rotate(-18deg);
  filter: blur(7px);
}

.art-flake {
  background:
    radial-gradient(circle at 20% 30%, #fff 0 4px, transparent 5px),
    radial-gradient(circle at 50% 20%, #8b929a 0 6px, transparent 7px),
    radial-gradient(circle at 75% 55%, #e6e7e8 0 5px, transparent 6px),
    radial-gradient(circle at 30% 77%, #696f76 0 7px, transparent 8px),
    radial-gradient(circle at 87% 85%, #9ea4aa 0 5px, transparent 6px),
    #1a1c1e;
  background-size: 90px 72px;
}

.flake-field {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, transparent, rgba(255,255,255,.12), transparent);
}

.art-stamped {
  background:
    linear-gradient(145deg, rgba(255,255,255,.25), transparent 30%),
    repeating-linear-gradient(45deg, #54595e 0 48px, #666c72 48px 51px, #4f5459 51px 98px);
}

.stamp-lines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, transparent 0 90px, rgba(0,0,0,.28) 91px 94px);
}

.project-info {
  padding: 28px;
  background: linear-gradient(180deg, #121315, #0d0e0f);
}

.project-info span {
  color: #858c94;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.project-info h3 {
  margin: 8px 0 8px;
  font-size: 24px;
}

.project-info p {
  margin-bottom: 0;
  color: #858b91;
  font-size: 13px;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 370px;
}

.before-panel,
.after-panel {
  position: relative;
  overflow: hidden;
}

.before-panel {
  background:
    repeating-linear-gradient(92deg, #777 0 80px, #707070 80px 82px),
    #737373;
}

.after-panel {
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.38), transparent 20%),
    linear-gradient(130deg, #111, #7c838b 42%, #202429 65%, #d4d7da 84%);
}

.before-panel span,
.after-panel span {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 3;
  padding: 8px 12px;
  color: white;
  background: rgba(0,0,0,.58);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .15em;
}

.crack {
  position: absolute;
  width: 3px;
  height: 70%;
  background: #343434;
  transform-origin: top;
}

.crack.one {
  top: 10%;
  left: 38%;
  transform: rotate(22deg);
}

.crack.two {
  top: 25%;
  left: 70%;
  height: 55%;
  transform: rotate(-29deg);
}

.after-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.28) 52%, transparent 65%);
}

.project-cta {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.14);
}

.project-cta p {
  margin: 0;
  color: #b7bcc1;
  font-size: 17px;
}

.process-section {
  background: white;
}

.process-header {
  max-width: 900px;
}

.process-line {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.process-step {
  min-height: 260px;
  padding: 25px 28px;
  border-top: 1px solid #b8bcc0;
  border-right: 1px solid #d8dade;
}

.process-step span {
  color: #888e94;
  font-size: 10px;
  font-weight: 900;
}

.process-step h3 {
  margin: 55px 0 12px;
  font-size: 19px;
}

.process-step p {
  color: #656a6f;
  font-size: 13px;
}

.reviews-section {
  padding: 110px 6vw;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  color: white;
  background:
    linear-gradient(120deg, #0b0c0e, #1c2024);
}

.reviews-copy > p:not(.kicker) {
  color: #9299a1;
}

.light-link {
  color: white;
}

.review-stack {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.review-card {
  max-width: 580px;
  padding: 38px;
  color: #191b1e;
  background: linear-gradient(120deg, #f4f4f4, #cfd3d7);
  box-shadow: 0 22px 55px rgba(0,0,0,.28);
}

.review-card.offset {
  margin-left: 70px;
}

.stars {
  margin-bottom: 24px;
  letter-spacing: .25em;
}

.review-card p {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.55;
}

.review-card span {
  color: #73787e;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.final-cta {
  position: relative;
  padding: 130px 6vw;
  overflow: hidden;
  text-align: center;
  color: white;
  background:
    radial-gradient(circle at 50% 30%, #30353a 0, #101214 28%, #050505 67%);
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(255,255,255,.04) 50%, transparent 50.2%),
    linear-gradient(0deg, transparent 49.8%, rgba(255,255,255,.04) 50%, transparent 50.2%);
  background-size: 80px 80px;
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 930px;
  margin: auto;
}

.cta-monogram {
  width: 92px;
  height: 92px;
  margin: 0 auto 30px;
  display: grid;
  place-items: center;
  border: 1px solid #d6d9dd;
  border-radius: 50%;
  color: #050505;
  background: linear-gradient(140deg, #fff, #9299a1 45%, #fff 80%);
  box-shadow: inset 0 0 0 7px #090909;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 67px;
  font-weight: 700;
  font-style: italic;
}

.final-cta-inner > p:not(.kicker) {
  color: #969da4;
}

.phone-display {
  display: block;
  margin: 26px 0 0;
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: -.045em;
}

.center-actions {
  justify-content: center;
}

footer {
  padding: 50px 6vw 105px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  color: white;
  background: #050505;
  border-top: 1px solid rgba(255,255,255,.12);
}

.footer-details {
  text-align: right;
}

.footer-details p {
  color: #747b82;
  font-size: 12px;
}

.footer-details a {
  font-weight: 900;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 24px;
  margin-bottom: 0;
  color: #646b72;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 10px;
}

.mobile-contact {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}

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

@media (max-width: 1050px) {
  .desktop-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 130px;
  }

  .hero-visual {
    min-height: 560px;
    max-width: 720px;
    width: 100%;
    margin: auto;
  }

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

  .service-card {
    min-height: 360px;
  }

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

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

  .project-wide {
    grid-column: auto;
  }

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

@media (max-width: 760px) {
  body {
    padding-bottom: 68px;
  }

  .site-header {
    min-height: 70px;
    padding: 11px 18px;
  }

  .header-cta {
    display: none;
  }

  .logo-emblem {
    width: 43px;
    height: 43px;
    font-size: 34px;
  }

  .logo-copy strong {
    font-size: 14px;
  }

  .hero {
    min-height: auto;
    padding: 125px 22px 85px;
    gap: 60px;
  }

  h1 {
    font-size: clamp(49px, 15vw, 72px);
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-visual {
    min-height: 460px;
  }

  .hero-card-main {
    inset: 0 0 35px 22px;
  }

  .hero-card-small {
    width: 190px;
  }

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

  .section,
  .projects-section,
  .reviews-section,
  .final-cta {
    padding: 82px 22px;
  }

  .intro-grid,
  .reviews-section {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .services-grid,
  .process-line {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 370px;
  }

  .project {
    min-height: 430px;
  }

  .before-after {
    min-height: 300px;
  }

  .project-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .project-cta .btn {
    width: 100%;
  }

  .process-step {
    min-height: 230px;
    border-right: 0;
  }

  .review-card,
  .review-card.offset {
    margin-left: 0;
  }

  .review-card {
    padding: 28px;
  }

  .phone-display {
    font-size: 36px;
  }

  footer {
    grid-template-columns: 1fr;
    padding: 42px 22px 100px;
  }

  .footer-details {
    text-align: left;
  }

  .copyright {
    grid-column: auto;
  }

  .mobile-contact {
    position: fixed;
    inset: auto 0 0;
    z-index: 90;
    min-height: 68px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 -8px 24px rgba(0,0,0,.35);
  }

  .mobile-contact a {
    display: grid;
    place-items: center;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .05em;
    text-transform: uppercase;
  }

  .mobile-contact a:first-child {
    color: #050505;
    background: linear-gradient(110deg, #fff, #aeb3b9 50%, #fff);
  }

  .mobile-contact a:last-child {
    color: white;
    background: #0a0a0a;
    border-left: 1px solid #333;
  }
}

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

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