:root {
  --ink: #141414;
  --paper: #f6f4ef;
  --white: #ffffff;
  --muted: #696660;
  --line: rgba(20, 20, 20, 0.12);
  --gold: #d6b62f;
  --gold-dark: #ad8d16;
  --dark: #101315;
  --graphite: #1c2327;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  min-height: 76px;
  padding: 16px clamp(20px, 5vw, 70px);
  color: #fff;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
}

.brand img {
  width: 132px;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.34));
}

nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(18px, 3vw, 38px);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

nav a {
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 820px;
  overflow: hidden;
  background: var(--dark);
}

.hero-poster,
.hero-video-frame,
.hero-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-poster {
  object-fit: cover;
}

.hero-video-frame iframe {
  top: 50%;
  left: 50%;
  width: max(205vh, 115vw);
  height: max(115vh, 64.7vw);
  min-width: 100%;
  min-height: 100%;
  border: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-video-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.1) 34%, rgba(0, 0, 0, 0.36));
}

.hero-scroll {
  position: absolute;
  right: clamp(22px, 4vw, 58px);
  bottom: clamp(22px, 4vw, 52px);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(6px);
  transition: background 180ms ease, transform 180ms ease;
}

.hero-scroll span {
  width: 16px;
  height: 16px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-3px) rotate(45deg);
}

.hero-scroll:hover {
  background: rgba(214, 182, 47, 0.26);
  transform: translateY(3px);
}

.section-title p,
.form-copy p {
  margin: 0 0 14px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  max-width: 700px;
  font-size: clamp(48px, 7.8vw, 104px);
}

h2 {
  font-size: clamp(42px, 5vw, 76px);
}

.section {
  padding: clamp(76px, 9vw, 130px) clamp(20px, 6vw, 88px);
}

.section-title {
  width: min(1220px, 100%);
  margin: 0 auto 36px;
}

.section-title.centered {
  text-align: center;
}

.intro-statement {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 700px;
  padding: clamp(46px, 6vw, 86px) clamp(20px, 5vw, 74px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.38)),
    url("assets/work-hotel.jpg") center / cover;
  color: var(--white);
}

.intro-statement p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(38px, 4.4vw, 74px);
  line-height: 1.02;
}

.work-section {
  padding: clamp(58px, 7vw, 96px) clamp(20px, 6vw, 88px);
  background: var(--paper);
}

.work-section .section-title {
  padding: 0;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1280px, 100%);
  margin: 0 auto;
}

.work-card {
  position: relative;
  min-height: 320px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--dark);
}

.work-card:first-child {
  grid-column: auto;
  grid-row: auto;
}

.work-card > img,
.work-slideshow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96);
  transition: transform 600ms ease;
}

.work-slideshow {
  position: absolute;
  inset: 0;
}

.work-slideshow img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 700ms ease, transform 600ms ease;
}

.work-slideshow img.active {
  opacity: 1;
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.02) 62%);
}

.work-card > div:not(.work-slideshow) {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 22px;
}

.work-card span {
  display: block;
  color: #fff;
  font-family: Georgia, serif;
  font-size: clamp(28px, 2.8vw, 44px);
  line-height: 1;
}

.work-card p {
  max-width: 420px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.work-card:hover > img,
.work-card:hover .work-slideshow img.active {
  transform: scale(1.045);
}

.matterport-section {
  position: relative;
  min-height: 86vh;
  overflow: hidden;
  background: var(--dark);
}

.matterport-section > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.matterport-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.1) 56%, rgba(0, 0, 0, 0.46));
}

.matterport-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  min-height: 86vh;
  width: min(760px, calc(100% - 40px));
  margin-left: clamp(20px, 7vw, 100px);
  color: var(--white);
}

.matterport-copy p {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.matterport-copy a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 50px;
  margin-top: 28px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--gold);
  color: #111;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.tour-examples-section {
  padding: clamp(70px, 8vw, 112px) clamp(20px, 6vw, 88px);
  background: var(--white);
}

.tour-example-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.tour-example-grid article {
  display: grid;
  gap: 12px;
}

.tour-example-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid rgba(20, 20, 20, 0.1);
}

.tour-example-grid span {
  color: var(--graphite);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-split-section {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  min-height: 620px;
  background: var(--white);
}

.pricing-content {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 16px;
  padding: clamp(24px, 3vw, 34px) clamp(20px, 4vw, 52px) clamp(24px, 3vw, 34px);
  background:
    linear-gradient(180deg, rgba(214, 182, 47, 0.14), rgba(214, 182, 47, 0.04)),
    #f3efe4;
}

.pricing-content .section-title {
  width: min(820px, 100%);
  margin-bottom: 0;
}

.flip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 455px));
  gap: 0;
  justify-content: center;
  width: min(910px, 100%);
  margin: 0;
}

.flip-card {
  min-height: 350px;
  perspective: 1100px;
  outline: none;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 350px;
  border: 1px solid rgba(214, 182, 47, 0.28);
  overflow: hidden;
  background: #f7f5ef;
}

.embed-service-card {
  min-height: 350px;
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 350px;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
  transform-style: preserve-3d;
}

.flip-card:hover .flip-inner,
.flip-card:focus .flip-inner {
  transform: rotateY(180deg);
}

.flip-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  border: 1px solid rgba(214, 182, 47, 0.28);
  backface-visibility: hidden;
  overflow: hidden;
}

.front {
  background: #f7f5ef;
}

.front img,
.front .service-embed,
.service-embed-trigger {
  width: 100%;
  height: 68%;
  object-fit: cover;
}

.service-card > img {
  width: 100%;
  height: 68%;
  object-fit: cover;
}

.service-card .service-embed,
.service-embed-trigger {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  flex: 0 0 auto;
  min-height: 0;
  border: 0;
  background: var(--dark);
}

.service-embed-trigger {
  position: relative;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  color: #fff;
  text-transform: none;
}

.service-embed-trigger img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.78) saturate(0.96);
  transition: transform 500ms ease;
}

.service-embed-trigger span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  background: rgba(214, 182, 47, 0.92);
  color: #111;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.service-embed-trigger:hover img {
  transform: scale(1.04);
}

.front h3,
.service-card h3 {
  max-width: calc(100% - 32px);
  margin: 12px 16px 4px;
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.05;
}

.single-line-title {
  white-space: nowrap;
}

.front p {
  margin: 0 16px 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding: 0 16px 12px;
}

.service-card-footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  background: var(--gold);
  color: #111;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.back {
  align-items: center;
  justify-content: center;
  gap: 12px;
  background:
    linear-gradient(135deg, rgba(214, 182, 47, 0.18), rgba(214, 182, 47, 0)),
    var(--dark);
  color: #fff;
  text-align: center;
  transform: rotateY(180deg);
}

.back a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  background: var(--gold);
  color: #111;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.airspace-section {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  min-height: 760px;
  background: var(--paper);
}

.airspace-image {
  min-height: 620px;
  overflow: hidden;
  background: var(--dark);
}

.airspace-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.airspace-copy {
  display: grid;
  align-content: center;
  gap: 28px;
  padding: clamp(58px, 7vw, 98px) clamp(20px, 6vw, 88px);
}

.airspace-copy > p {
  margin: 0;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.detail-stat-card {
  min-height: 190px;
  padding: 26px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
}

.detail-stat-card strong {
  display: block;
  margin-bottom: 38px;
  color: var(--gold-dark);
  font-family: Georgia, serif;
  font-size: clamp(56px, 5vw, 82px);
  font-weight: 400;
  line-height: 1;
}

.detail-stat-card span {
  display: block;
  color: var(--graphite);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.use-cases-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--dark);
}

.use-cases-section > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  opacity: 0.42;
}

.use-case-panel {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  min-height: 100vh;
  padding: clamp(76px, 9vw, 130px) clamp(20px, 6vw, 88px);
  color: var(--white);
}

.use-case-panel .section-title {
  width: min(1320px, 100%);
}

.use-case-panel .section-title p {
  color: var(--gold);
}

.use-case-list {
  width: min(1320px, 100%);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.use-case-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: clamp(20px, 4vw, 56px);
  align-items: center;
  min-height: 112px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.use-case-item span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 900;
  line-height: 1;
}

.use-case-item p {
  margin: 0;
  color: var(--white);
  font-size: clamp(24px, 3vw, 48px);
  font-weight: 800;
  line-height: 1.12;
}

.use-case-item small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.industry-section {
  padding: clamp(76px, 8vw, 112px) clamp(20px, 6vw, 88px);
  background: var(--white);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1320px, 100%);
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.industry-grid article {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 260px;
  padding: clamp(22px, 3vw, 36px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fbfaf6;
}

.industry-grid span {
  color: var(--graphite);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.industry-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
}

.form-section {
  padding: clamp(76px, 9vw, 128px) clamp(20px, 6vw, 88px);
  background:
    linear-gradient(180deg, rgba(214, 182, 47, 0.12), rgba(214, 182, 47, 0)),
    var(--paper);
}

.form-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
  width: min(1220px, 100%);
  margin: 0 auto;
}

.form-copy {
  position: sticky;
  top: 112px;
  width: min(420px, 100%);
}

form {
  display: grid;
  width: 100%;
  gap: 22px;
  padding: clamp(20px, 4vw, 36px);
  background: var(--white);
  border: 1px solid rgba(214, 182, 47, 0.3);
  box-shadow: 0 26px 70px rgba(16, 19, 21, 0.12);
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-page {
  display: none;
  gap: 16px;
}

.form-page.active {
  display: grid;
}

.progress-wrap {
  display: grid;
  gap: 14px;
  padding-bottom: 8px;
}

.progress-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}

.progress-meta span,
.progress-meta strong {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.progress-meta span {
  color: var(--muted);
}

.progress-meta strong {
  color: var(--ink);
}

.progress-track {
  height: 8px;
  overflow: hidden;
  background: #e5dfcf;
}

.progress-track span {
  display: block;
  width: 16.6667%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), #f2d64e);
  transition: width 240ms ease;
}

fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
}

fieldset.choice-grid.large {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

fieldset.choice-grid.large label {
  display: flex;
  align-items: center;
  min-height: 96px;
  padding: 18px;
  border: 1px solid rgba(214, 182, 47, 0.34);
  background: #f8f5ec;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

legend {
  padding: 0 8px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

fieldset label {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  text-transform: none;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fbfaf6;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

input[type="checkbox"],
input[type="radio"] {
  width: 16px;
  min-height: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  accent-color: var(--gold-dark);
}

button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border: 0;
  background: var(--gold);
  color: #111;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.cf-turnstile {
  margin-right: auto;
}

.form-actions button {
  min-width: 118px;
}

#prevStep {
  background: #ece6d5;
}

#submitStep {
  display: none;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.form-status.success {
  color: #2d6a35;
}

.form-status.error {
  color: #9a2e1f;
}

footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
  padding: 46px clamp(20px, 6vw, 88px) 28px;
  background: var(--dark);
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

footer span {
  color: #fff;
  font-weight: 900;
}

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

.footer-column p,
.footer-bottom p {
  margin: 0;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-column a:hover {
  color: var(--gold);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(214, 182, 47, 0.42);
  border-radius: 50%;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.social-links a:hover {
  background: var(--gold);
  color: #111;
}

.footer-bottom {
  display: flex;
  justify-content: flex-end;
  grid-column: 1 / -1;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.58);
}

@media (max-width: 1000px) {
  nav {
    display: none;
  }

  .site-header {
    display: flex;
  }

  .work-grid,
  .flip-grid,
  .form-shell,
  .airspace-section,
  .pricing-split-section {
    grid-template-columns: repeat(2, 1fr);
  }

  .flip-grid {
    width: 100%;
  }

  .tour-example-grid {
    grid-template-columns: 1fr;
    width: min(680px, 100%);
  }

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

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

  .form-copy {
    position: static;
  }

  .airspace-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .airspace-image {
    min-height: 460px;
  }

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

@media (max-width: 640px) {
  .site-header {
    min-height: 66px;
    padding: 14px 20px;
  }

  .brand img {
    width: 106px;
  }

  .hero {
    height: 100vh;
    min-height: 760px;
  }

  .hero-video-frame iframe {
    width: max(230vh, 130vw);
    height: max(130vh, 73.13vw);
  }

  h1 {
    max-width: 330px;
    font-size: 42px;
  }

  h2 {
    font-size: 44px;
  }

  .section {
    padding: 70px 20px;
  }

  .work-grid,
  .flip-grid,
  .industry-grid,
  .airspace-section,
  .pricing-split-section,
  footer {
    grid-template-columns: 1fr;
  }

  .work-card {
    min-height: 270px;
    aspect-ratio: 1 / 0.88;
  }

  .intro-statement {
    min-height: 420px;
    padding: 46px 20px;
  }

  .matterport-section,
  .matterport-copy {
    min-height: 680px;
  }

  .matterport-copy {
    margin-left: 20px;
  }

  .airspace-image {
    min-height: 360px;
  }

  .airspace-copy {
    padding: 70px 20px;
  }

  .detail-stat-grid {
    grid-template-columns: 1fr;
  }

  .detail-stat-card {
    min-height: auto;
  }

  .detail-stat-card strong {
    margin-bottom: 26px;
  }

  .use-case-panel {
    min-height: auto;
    padding: 70px 20px;
  }

  .flip-card,
  .flip-inner,
  .service-card {
    min-height: 340px;
  }

  .embed-service-card {
    min-height: 390px;
  }

  .front img,
  .front .service-embed {
    height: 68%;
  }

  .use-case-item {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: auto;
  }

  .use-case-item p {
    font-size: 25px;
  }

  .form-section {
    padding: 70px 20px;
  }

  .form-row,
  fieldset {
    grid-template-columns: 1fr;
  }

  fieldset.choice-grid.large {
    grid-template-columns: 1fr;
  }

  .progress-meta {
    display: grid;
    gap: 6px;
  }

  .form-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cf-turnstile {
    grid-column: 1 / -1;
    margin-right: 0;
  }

  #submitStep {
    grid-column: span 2;
  }

  .footer-bottom {
    grid-column: auto;
    justify-content: flex-start;
  }
}
