:root {
  --white: #ffffff;
  --sand: #d1cbc9;
  --clay: #a88670;
  --choc: #7b6153;
  --charcoal: #3d393c;
  --ink: #2c292b;
  --mist: #f6f3f1;
  --line: rgba(61, 57, 60, 0.18);
  --shadow: 0 22px 60px rgba(45, 39, 39, 0.18);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@font-face {
  font-family: "Pierson";
  src: url("assets/fonts/pierson-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/DMSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/DMSans-SemiBold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--mist);
  font-family: "DM Sans", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

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

main {
  overflow: hidden;
}

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

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

[hidden] {
  display: none !important;
}

.website-field {
  position: absolute;
  left: -9999px;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 20px 42px;
  color: var(--white);
  transform: translateY(0);
  transition: transform 280ms ease, background 280ms ease, padding 280ms ease;
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.site-header.is-solid {
  background: rgba(61, 57, 60, 0.92);
  backdrop-filter: blur(14px);
  padding-block: 14px;
}

.brandmark {
  width: 96px;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 19px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links a {
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: currentColor;
}

.nav-links .nav-calculator {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.65);
}

@media (max-width: 1180px) and (min-width: 981px) {
  .nav-links {
    gap: 14px;
    font-size: 14px;
  }
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 4px;
  color: var(--white);
  background: rgba(44, 41, 43, 0.36);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 96vh;
  overflow: hidden;
  display: grid;
  align-items: end;
  color: var(--white);
  background: var(--charcoal);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(24, 21, 22, 0.72), rgba(24, 21, 22, 0.08) 70%),
    linear-gradient(to top, rgba(24, 21, 22, 0.55), rgba(24, 21, 22, 0));
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  transform: scale(1.04);
  animation: slowZoom 15s ease-out forwards;
}

.hero-content {
  position: relative;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 160px 0 110px;
}

.hero h1 {
  max-width: 640px;
  margin: 0 0 22px;
}

.hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
}

.hero .eyebrow {
  font-size: 25px;
  line-height: 1.22;
  max-width: 720px;
}

.scroll-cue {
  position: absolute;
  right: 42px;
  bottom: 34px;
  writing-mode: vertical-rl;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid currentColor;
  border-radius: 4px;
  color: var(--white);
  background: transparent;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

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

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

.eyebrow {
  margin: 0 0 16px;
  font-size: 25px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2,
h3 {
  margin: 0;
  font-family: "Pierson", "Bodoni 72", Georgia, serif;
  font-weight: 400;
  line-height: 0.98;
}

h2 {
  font-size: 50px;
}

h3 {
  font-size: 50px;
}

.intro-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.metric {
  padding: 34px 30px;
  background: var(--mist);
}

.metric span {
  display: block;
  margin-bottom: 8px;
  color: var(--choc);
  font-family: "Pierson", "Bodoni 72", Georgia, serif;
  font-size: 36px;
  line-height: 1.05;
}

.metric p {
  margin: 0;
  font-size: 14px;
}

.section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 108px 0;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
}

.section-copy p:not(.eyebrow),
.section-heading p:not(.eyebrow) {
  max-width: 680px;
  color: #5d5659;
  font-size: 16px;
}

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

.service-stack article {
  min-height: 240px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(61, 57, 60, 0.08);
}

.service-stack span {
  display: block;
  margin-bottom: 24px;
  color: #5d5659;
  font-family: "DM Sans", "Segoe UI", Arial, sans-serif;
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
}

.service-stack h3 {
  margin-bottom: 18px;
  font-family: "Pierson", "Bodoni 72", Georgia, serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.12;
  color: var(--choc);
}

.service-stack h3 .service-acronym {
  display: inline;
  margin: 0;
  font-family: "Pierson", "Bodoni 72", Georgia, serif;
  font-size: inherit;
  font-weight: 400;
  line-height: inherit;
  color: inherit;
  letter-spacing: 0;
  white-space: nowrap;
}

.service-stack p {
  margin: 0;
  color: #5d5659;
}

.work-section {
  width: 100%;
  padding-inline: max(24px, calc((100vw - 1180px) / 2));
  background: var(--white);
}

.section-heading {
  display: block;
  margin-bottom: 34px;
}

.work-section .section-heading {
  max-width: none;
  padding-left: 76px;
  padding-right: 76px;
}

.work-section .section-heading h2 {
  max-width: none;
  margin-bottom: 18px;
}

.work-section .section-heading p:not(.eyebrow) {
  max-width: none;
  white-space: nowrap;
}

.carousel-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
}

.project-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(420px, 44%);
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 8px 24px;
}

.project-track::-webkit-scrollbar {
  height: 8px;
}

.project-track::-webkit-scrollbar-thumb {
  background: var(--sand);
}

.project-card {
  overflow: hidden;
  display: block;
  width: 100%;
  height: 300px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-sizing: border-box;
  color: var(--white);
  background: var(--charcoal);
  cursor: pointer;
  position: relative;
  scroll-snap-align: start;
  text-align: left;
  box-shadow: 0 16px 44px rgba(61, 57, 60, 0.08);
}

.project-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  background: linear-gradient(180deg, rgba(38, 34, 36, 0.08) 0%, rgba(38, 34, 36, 0.16) 42%, rgba(38, 34, 36, 0.72) 100%);
  pointer-events: none;
}

.project-card span,
.project-card strong,
.project-card p {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  margin: 0;
}

.project-card span {
  display: block;
  bottom: 78px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.project-card strong {
  display: block;
  font-family: "Pierson", "Bodoni 72", Georgia, serif;
  bottom: 24px;
  color: var(--white);
  font-size: clamp(26px, 2.9vw, 42px);
  font-weight: 400;
  line-height: 1.05;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.project-card p {
  display: none;
}

.project-card:hover img,
.project-card.active img {
  transform: scale(1.06);
  filter: saturate(1.04);
}

.project-card.active {
  outline: 2px solid var(--clay);
  outline-offset: 3px;
}

.icon-button {
  width: 54px;
  height: 54px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--charcoal);
  background: var(--mist);
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  text-transform: uppercase;
}

.project-details {
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--mist);
  box-shadow: var(--shadow);
}

.project-detail {
  display: none;
  padding: 34px;
}

.project-detail.active {
  display: block;
}

.project-detail p {
  max-width: 920px;
  color: #5d5659;
}

.project-detail .eyebrow {
  max-width: none;
  white-space: nowrap;
}

.project-detail h3 {
  margin-bottom: 18px;
  white-space: nowrap;
}

.project-detail ul {
  display: block;
  margin: 28px 0 32px;
  padding-left: 20px;
  color: #5d5659;
}

.project-detail li + li {
  margin-top: 8px;
}

.detail-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.detail-gallery img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}

.detail-gallery img:first-child {
  grid-column: auto;
}

.process-section,
.contact-section {
  color: var(--white);
  background: var(--charcoal);
}

.process-section {
  padding: 108px max(24px, calc((100vw - 1180px) / 2));
}

.process-section .section-heading p,
.contact-section .section-heading p {
  color: rgba(255, 255, 255, 0.76);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: transparent;
  margin-top: 36px;
}

.timeline div {
  min-height: 236px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
}

.timeline span {
  display: block;
  margin-bottom: 28px;
  color: var(--white);
  font-size: 28px;
  font-weight: 800;
}

.timeline strong {
  display: block;
  margin-bottom: 14px;
  color: var(--sand);
  font-family: "Pierson", "Bodoni 72", Georgia, serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.05;
}

.timeline p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.55;
}

.marquee-section {
  overflow: hidden;
  padding: 52px 0;
  background: var(--mist);
}

.marquee-section .eyebrow {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.logo-marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--white);
}

.logo-strip {
  display: flex;
  width: max-content;
  gap: 12px;
  padding: 18px 0;
  animation: marquee 48s linear infinite;
}

.logo-set {
  display: flex;
  gap: 12px;
}

.logo-set img {
  width: 226px;
  height: 122px;
  object-fit: contain;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  filter: grayscale(1);
}

.logo-set img.logo-small {
  padding: 22px 30px;
}

.testimonial-section {
  padding: 78px max(24px, calc((100vw - 1180px) / 2));
  color: var(--ink);
  background: var(--white);
}

.testimonial-shell {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.testimonial-controls {
  display: grid;
  justify-items: center;
  gap: 22px;
  padding-top: 36px;
}

.testimonial-buttons {
  display: grid;
  gap: 8px;
}

.testimonial-buttons button {
  width: 40px;
  height: 40px;
  border: 1px solid var(--charcoal);
  border-radius: 50%;
  color: var(--charcoal);
  background: transparent;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

.testimonial-buttons button:hover {
  color: var(--white);
  background: var(--charcoal);
}

.testimonial-controls p {
  margin: 0;
  color: #5d5659;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 6px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.testimonial-panel {
  position: relative;
  min-height: 360px;
  margin: 0;
  padding: 30px 96px 62px 28px;
}

.quote-mark {
  position: absolute;
  color: #4f4b4c;
  font-family: Georgia, serif;
  font-size: clamp(68px, 8vw, 112px);
  font-weight: 800;
  line-height: 0.8;
}

.quote-open {
  top: 0;
  left: 22px;
}

.quote-close {
  right: 34px;
  bottom: 18px;
}

.testimonial-panel blockquote {
  max-width: 860px;
  margin: 56px 0 28px;
  color: #3f3b3d;
  font-size: 17px;
  line-height: 1.75;
}

.testimonial-panel figcaption {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: baseline;
  color: #7c7475;
  font-size: 15px;
}

.testimonial-panel figcaption strong {
  color: #4a4546;
  font-weight: 800;
}

.calculator-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
}

.calculator-card,
.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  border-radius: 6px;
  background: var(--white);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--mist);
}

output {
  display: block;
  min-height: 76px;
  padding: 16px;
  border-left: 3px solid var(--clay);
  background: var(--mist);
  color: #5d5659;
}

.contact-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 108px max(24px, calc((100vw - 1180px) / 2));
}

.contact-intake {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: stretch;
  margin-top: 40px;
}

.space-analysis-card {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
}

.space-analysis-card .eyebrow {
  margin-bottom: 0;
  color: var(--sand);
}

.space-analysis-card h3 {
  margin: 0;
  color: var(--white);
  font-size: 38px;
}

.space-analysis-card p,
.space-analysis-card li {
  color: rgba(255, 255, 255, 0.76);
}

.space-analysis-card ul {
  margin: 4px 0 0;
  padding-left: 18px;
}

.space-analysis-card li + li {
  margin-top: 8px;
}

.space-calculator-cta {
  justify-self: start;
  margin-top: 10px;
}

.contact-section .calculator-card {
  box-shadow: none;
}

.contact-form {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 34px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.contact-form label {
  color: var(--white);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

.contact-form option {
  color: var(--ink);
}

.privacy-note {
  margin: -2px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.6;
}

.wide {
  grid-column: 1 / -1;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 34px max(24px, calc((100vw - 1180px) / 2));
  color: rgba(255, 255, 255, 0.72);
  background: #2c292b;
}

footer img {
  width: 174px;
  margin-bottom: 10px;
}

footer p {
  margin: 0;
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--white);
  background: var(--charcoal);
}

.thank-you {
  width: min(680px, 100%);
}

.thank-you img {
  width: 220px;
  margin-bottom: 44px;
}

.thank-you h1 {
  margin: 0 0 22px;
  font-family: "Pierson", "Bodoni 72", Georgia, serif;
  font-size: clamp(46px, 8vw, 82px);
  font-weight: 400;
  line-height: 0.95;
}

.thank-you p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.76);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes slowZoom {
  to {
    transform: scale(1);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 980px) {
  .site-header {
    padding-inline: 24px;
  }

  .site-header.is-hidden {
    transform: translateY(0);
  }

  h2 {
    font-size: 46px;
  }

  h3 {
    font-size: 46px;
  }

  .menu-toggle {
    display: grid;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 24px;
    right: 24px;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 6px;
    background: rgba(61, 57, 60, 0.97);
    box-shadow: 0 18px 48px rgba(28, 23, 24, 0.22);
    font-size: 14px;
  }

  .site-header.is-menu-open .nav-links {
    display: grid;
  }

  .nav-links a {
    padding: 12px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

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

  .intro-panel,
  .split-section,
  .section-heading,
  .calculator-section,
  .contact-intake,
  .project-detail {
    grid-template-columns: 1fr;
  }

  .work-section .section-heading p:not(.eyebrow) {
    white-space: normal;
  }

  .service-stack,
  .timeline,
  .contact-form {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-track {
    grid-auto-columns: minmax(270px, 55%);
  }

  .testimonial-panel {
    padding-right: 48px;
  }

  .testimonial-panel blockquote {
    font-size: 16px;
  }

  .timeline strong {
    font-size: 30px;
  }

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

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .site-header {
    padding: 14px 16px;
  }

  .brandmark {
    width: 64px;
  }

  .nav-links {
    left: 16px;
    right: 16px;
  }

  h2 {
    font-size: 38px;
  }

  h3 {
    font-size: 38px;
  }

  .hero-content,
  .section {
    width: min(100% - 32px, 1180px);
  }

  .hero {
    min-height: 100svh;
  }

  .hero-media img {
    object-position: 52% 50%;
  }

  .hero .eyebrow {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.25;
  }

  .hero h1 {
    max-width: 100%;
    margin-bottom: 18px;
  }

  .hero h1 img {
    width: min(310px, 100%);
  }

  .hero p:not(.eyebrow) {
    max-width: 100%;
    font-size: 16px;
  }

  .button-row {
    gap: 10px;
  }

  .button-row .button {
    flex: 1 1 150px;
    padding-inline: 12px;
    font-size: 11px;
  }

  .hero-content {
    padding: 130px 0 84px;
  }

  .intro-panel,
  .service-stack,
  .timeline,
  .contact-form,
  .detail-gallery {
    grid-template-columns: 1fr;
  }

  .project-track {
    grid-auto-columns: minmax(240px, 84vw);
    gap: 16px;
    padding-inline: 0;
  }

  .work-section .section-heading {
    padding-left: 0;
    padding-right: 0;
  }

  .work-section {
    padding-inline: 16px;
  }

  .work-section .section-heading h2 {
    font-size: 36px;
    line-height: 1.02;
  }

  .testimonial-section {
    padding-block: 54px;
  }

  .testimonial-shell {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial-controls {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding-top: 0;
  }

  .testimonial-buttons {
    display: flex;
  }

  .testimonial-controls p {
    writing-mode: initial;
    transform: none;
  }

  .testimonial-panel {
    min-height: 0;
    padding: 34px 0 58px;
  }

  .quote-open {
    left: 0;
  }

  .quote-close {
    right: 0;
  }

  .testimonial-panel blockquote {
    margin-top: 52px;
  }

  .carousel-shell {
    grid-template-columns: 1fr;
  }

  .icon-button {
    display: none;
  }

  .project-card {
    height: 280px;
  }

  .project-card span,
  .project-card strong {
    left: 18px;
    right: 18px;
  }

  .project-card span {
    bottom: 66px;
    font-size: 10px;
    line-height: 1.2;
    white-space: normal;
  }

  .project-card strong {
    bottom: 20px;
    font-size: 34px;
    line-height: 0.98;
  }

  .project-details {
    margin-top: 24px;
    overflow: hidden;
  }

  .project-detail {
    padding: 24px 18px;
  }

  .project-detail .eyebrow {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.25;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .project-detail h3 {
    max-width: 100%;
    margin-bottom: 14px;
    font-size: 34px;
    line-height: 1;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .project-detail p {
    font-size: 15px;
  }

  .project-detail ul {
    margin: 22px 0 26px;
  }

  .detail-gallery {
    gap: 12px;
  }

  .detail-gallery img {
    aspect-ratio: 4 / 3;
  }

  .contact-section,
  .process-section,
  .testimonial-section {
    padding-inline: 16px;
  }

  .contact-section {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .contact-intake {
    margin-top: 24px;
  }

  .calculator-card,
  .contact-form,
  .space-analysis-card {
    padding: 22px 18px;
  }

  .space-analysis-card h3 {
    font-size: 32px;
  }

  footer {
    display: block;
    padding-inline: 16px;
  }

  footer p {
    overflow-wrap: anywhere;
  }
}
