:root {
  --paper: #f7f0e5;
  --porcelain: #fffaf1;
  --ink: #221b14;
  --muted: #75695d;
  --gold: #b88a3b;
  --deep-gold: #7b5722;
  --turquoise: #1a8c91;
  --turquoise-dark: #0f4f55;
  --wood: #9b6f46;
  --stone: #d8d0c3;
  --shadow: 0 30px 80px rgba(47, 35, 22, 0.22);
  --radius: 8px;
  --progress: 0;
}

@font-face {
  font-family: "Polin";
  src: local("Polin Sans Hairline"), local("Polin Hairline"), local("Polin Sans"), local("Polin");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Polin";
  src: local("Polin Sans Thin"), local("Polin Thin"), local("Polin Sans"), local("Polin");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Polin";
  src: local("Polin Sans Light"), local("Polin Light"), local("Polin Sans"), local("Polin");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Polin";
  src: local("Polin Sans Regular"), local("Polin Regular"), local("Polin Sans"), local("Polin");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Polin";
  src: local("Polin Sans Medium"), local("Polin Medium"), local("Polin Sans"), local("Polin");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Polin";
  src: local("Polin Sans SemiBold"), local("Polin SemiBold"), local("Polin Sans"), local("Polin");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Polin";
  src: local("Polin Sans Bold"), local("Polin Bold"), local("Polin Sans"), local("Polin");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Polin";
  src: local("Polin Sans ExtraBold"), local("Polin ExtraBold"), local("Polin Sans"), local("Polin");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Polin";
  src: local("Polin Sans Black"), local("Polin Black"), local("Polin Sans"), local("Polin");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #16110c;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(184, 138, 59, 0.07) 1px, transparent 1px) 0 0 / 42px 42px,
    var(--paper);
  color: var(--ink);
  font-family: "Polin", "Polin Sans", "Arial", sans-serif;
  font-weight: 300;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 18px;
  right: 50%;
  display: grid;
  width: min(1160px, calc(100% - 28px));
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 12px 18px;
  border: 1px solid rgba(184, 138, 59, 0.28);
  background: rgba(255, 250, 241, 0.78);
  box-shadow: 0 16px 50px rgba(42, 31, 19, 0.14);
  transform: translateX(50%);
  backdrop-filter: blur(18px);
}

.brand {
  order: 3;
  display: grid;
  width: 330px;
  height: 104px;
  place-items: center;
  overflow: visible;
}

.brand img {
  width: 330px;
  height: 104px;
  object-fit: contain;
  transform: translateY(3px);
}

.site-header nav {
  order: 2;
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 32px);
  color: #4d4032;
  font-size: 0.96rem;
  font-weight: 400;
}

.site-header nav > a,
.nav-item > a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-item::after {
  position: absolute;
  top: 100%;
  right: -12px;
  left: -12px;
  height: 14px;
  content: "";
}

.submenu {
  position: absolute;
  top: calc(100% + 4px);
  right: 50%;
  display: grid;
  min-width: 178px;
  padding: 8px;
  border: 1px solid rgba(184, 138, 59, 0.26);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.94);
  box-shadow: 0 18px 44px rgba(42, 31, 19, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate(50%, 8px);
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(14px);
}

.submenu a {
  padding: 9px 10px;
  border-radius: 6px;
  color: #4d4032;
  white-space: nowrap;
}

.submenu a:hover,
.submenu a:focus-visible {
  background: rgba(26, 140, 145, 0.09);
  color: var(--turquoise-dark);
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(50%, 0);
}

.header-cta {
  order: 1;
  margin-right: 72px;
}

.header-cta,
.primary-action,
.secondary-action,
.phone-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid rgba(184, 138, 59, 0.5);
  border-radius: var(--radius);
  font-weight: 500;
}

.header-cta,
.primary-action {
  background: linear-gradient(135deg, var(--deep-gold), var(--gold) 48%, #e2c07a);
  color: #fff8e8;
  box-shadow: 0 15px 35px rgba(123, 87, 34, 0.22);
}

.secondary-action,
.phone-link {
  background: rgba(255, 250, 241, 0.62);
  color: var(--turquoise-dark);
}

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 132px clamp(22px, 6vw, 82px) 76px;
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    radial-gradient(ellipse at 74% 67%, rgba(18, 13, 9, 0.26) 0%, rgba(18, 13, 9, 0.14) 28%, rgba(18, 13, 9, 0.04) 52%, transparent 72%),
    linear-gradient(90deg, rgba(30, 23, 15, 0.48), rgba(30, 23, 15, 0.12) 45%, rgba(247, 240, 229, 0.08)),
    linear-gradient(0deg, rgba(247, 240, 229, 0.92), transparent 31%);
}

.hero-veils {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 25vh;
  background: linear-gradient(0deg, var(--paper), transparent);
}

.hero-content {
  position: relative;
  width: min(760px, 100%);
  color: #fffaf1;
  padding: 0;
  margin-inline-start: 0;
}

.hero-content::before {
  position: absolute;
  inset: 34% -2% 17% 19%;
  z-index: -1;
  background: radial-gradient(ellipse at 64% 54%, rgba(14, 10, 7, 0.36) 0%, rgba(14, 10, 7, 0.18) 45%, transparent 74%);
  filter: blur(6px);
  content: "";
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: #d9b66a;
  font-size: 0.86rem;
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 500;
}

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

h1,
h2,
h3 {
  font-family: "Polin", "Polin Sans", "Arial", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(4.6rem, 12vw, 10.2rem);
  line-height: 0.85;
  color: #fff7e6;
  text-shadow: 0 2px 4px rgba(10, 7, 4, 0.44), 0 18px 46px rgba(10, 7, 4, 0.58);
  font-weight: 300;
}

.lead {
  max-width: 680px;
  color: rgba(255, 250, 241, 0.96);
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
  line-height: 1.7;
  font-weight: 400;
  text-shadow:
    0 1px 2px rgba(8, 5, 3, 0.86),
    0 4px 18px rgba(8, 5, 3, 0.72),
    0 14px 34px rgba(8, 5, 3, 0.42);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.page-main {
  padding-top: 148px;
}

.meet {
  scroll-margin-top: 132px;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1.28fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
  padding: clamp(62px, 8vw, 118px) clamp(22px, 6vw, 82px);
  background:
    radial-gradient(circle at 88% 20%, rgba(184, 138, 59, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 250, 241, 0.62), rgba(247, 240, 229, 0.94));
}

.meet-heading {
  position: sticky;
  top: 150px;
}

.meet-heading h1,
.meet-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2.15rem, 4.4vw, 4.15rem);
  line-height: 1.12;
  color: var(--ink);
  font-weight: 300;
  text-shadow: none;
}

.meet-portrait {
  position: relative;
  width: min(100%, 390px);
  margin: clamp(24px, 4vw, 42px) 0 0;
  overflow: hidden;
  border: 1px solid rgba(184, 138, 59, 0.28);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(42, 31, 19, 0.14);
}

.meet-portrait img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  object-position: 50% 44%;
}

.meet-page {
  min-height: calc(100vh - 80px);
}

.meet-copy {
  position: relative;
  display: grid;
  gap: 16px;
  padding-inline-start: clamp(22px, 3vw, 40px);
  border-inline-start: 1px solid rgba(184, 138, 59, 0.34);
}

.meet-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.45vw, 1.18rem);
  line-height: 1.78;
}

.meet-signature {
  margin: 8px 0 0;
  color: var(--turquoise-dark) !important;
  font-size: clamp(1.24rem, 2vw, 1.72rem) !important;
  line-height: 1.4 !important;
  font-weight: 300;
}

.meet-closing {
  color: var(--ink) !important;
  font-weight: 400;
}

.intro {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(260px, 0.72fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: center;
  padding: clamp(54px, 9vw, 120px) clamp(22px, 6vw, 82px);
}

.intro-copy h2,
.signature h2,
.section-heading h2,
.contact h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.8vw, 4.2rem);
  line-height: 1.12;
}

.intro-copy {
  max-width: 780px;
}

.intro-notes {
  display: grid;
  gap: 14px;
  padding: 10px 0;
}

.intro-notes span {
  display: block;
  padding: 18px 0;
  border-bottom: 1px solid rgba(184, 138, 59, 0.32);
  color: var(--turquoise-dark);
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  font-weight: 300;
}

.intro-copy p:not(.section-kicker),
.signature p,
.space-text p,
.contact p,
.stage-copy p,
.process-heading p,
.process-step p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.85;
}

.process {
  position: relative;
  padding: clamp(54px, 8vw, 112px) clamp(22px, 6vw, 82px) clamp(70px, 9vw, 128px);
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(26, 140, 145, 0.09), transparent 28%),
    linear-gradient(180deg, rgba(255, 250, 241, 0.68), rgba(247, 240, 229, 0));
}

.process::before {
  position: absolute;
  inset: auto clamp(22px, 6vw, 82px) 42px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 138, 59, 0.38), rgba(26, 140, 145, 0.32), transparent);
  content: "";
}

.process-heading {
  width: min(760px, 100%);
  margin-bottom: clamp(34px, 5vw, 64px);
}

.process-heading h2 {
  margin-bottom: 16px;
  font-size: clamp(2.1rem, 4.6vw, 4.35rem);
  line-height: 1.08;
}

.process-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  align-items: stretch;
}

.process-flow::before {
  position: absolute;
  top: 33px;
  right: 7%;
  left: 7%;
  height: 2px;
  background: linear-gradient(90deg, var(--turquoise), rgba(184, 138, 59, 0.7), var(--gold));
  content: "";
  opacity: 0.34;
}

.process-step {
  position: relative;
  min-height: 244px;
  padding: 86px 18px 22px;
}

.process-step::before {
  position: absolute;
  top: 23px;
  right: 50%;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(184, 138, 59, 0.74);
  border-radius: 999px;
  background: var(--porcelain);
  box-shadow: 0 0 0 9px rgba(255, 250, 241, 0.82), 0 14px 34px rgba(123, 87, 34, 0.16);
  content: "";
  transform: translateX(50%);
}

.process-step:nth-child(even) {
  transform: translateY(34px);
}

.process-step:nth-child(even)::before {
  border-color: rgba(26, 140, 145, 0.58);
}

.step-number {
  display: block;
  margin-bottom: 16px;
  color: rgba(184, 138, 59, 0.95);
  font-size: 0.92rem;
  font-weight: 500;
}

.process-step h3 {
  margin-bottom: 10px;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.18;
}

.process-step p {
  margin-bottom: 0;
  font-size: 0.98rem;
  line-height: 1.75;
}

.process-finale {
  padding-inline: 20px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(26, 140, 145, 0.1), rgba(255, 250, 241, 0.36));
  box-shadow: inset 0 0 0 1px rgba(26, 140, 145, 0.18);
}

.process-finale .step-number,
.process-finale h3 {
  color: var(--turquoise-dark);
}

.scroll-showcase {
  height: 360vh;
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0), rgba(26, 140, 145, 0.08) 42%, rgba(184, 138, 59, 0.08) 74%, rgba(255, 250, 241, 0)),
    var(--paper);
}

.sticky-stage {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(340px, 1.28fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  overflow: hidden;
  padding: 96px clamp(20px, 6vw, 82px) 52px;
  perspective: 1400px;
}

.stage-copy {
  z-index: 2;
  max-width: 430px;
}

.active-room {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  margin-top: 18px;
  padding: 0 18px;
  border: 1px solid rgba(26, 140, 145, 0.32);
  border-radius: var(--radius);
  color: var(--turquoise-dark);
  background: rgba(255, 250, 241, 0.58);
  font-weight: 500;
}

.spatial-stage {
  position: relative;
  height: min(74vh, 700px);
  min-height: 470px;
  transform-style: preserve-3d;
  transform: translateZ(0) rotateY(calc(-4deg + (var(--progress) * 8deg)));
  transition: transform 80ms linear;
}

.room-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  overflow: hidden;
  width: min(58vw, 690px);
  min-width: 320px;
  aspect-ratio: 1.45;
  border: 1px solid rgba(184, 138, 59, 0.35);
  border-radius: var(--radius);
  background: var(--porcelain);
  box-shadow: 0 35px 80px rgba(44, 33, 21, 0.25);
  transform-style: preserve-3d;
  opacity: 0;
  transform: translate3d(-50%, -50%, -240px) scale(0.76) rotateY(12deg);
  transition: opacity 160ms linear, filter 160ms linear;
  will-change: transform, opacity, filter;
}

.room-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}

.room-panel span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  min-width: 72px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 250, 241, 0.5);
  border-radius: var(--radius);
  background: rgba(34, 27, 20, 0.58);
  color: #fffaf1;
  text-align: center;
  font-weight: 500;
}

.stage-rail {
  position: absolute;
  inset: 9% auto 9% 50%;
  width: 1px;
  z-index: -1;
  border-left: 1px solid rgba(184, 138, 59, 0.2);
  transform: translateX(-50%);
}

.stage-rail::before,
.stage-rail::after {
  position: absolute;
  right: -7px;
  width: 13px;
  height: 13px;
  border: 1px solid rgba(26, 140, 145, 0.34);
  border-radius: 999px;
  background: var(--paper);
  content: "";
}

.stage-rail::before {
  top: 0;
}

.stage-rail::after {
  bottom: 0;
}

.signature,
.work,
.contact {
  padding: clamp(58px, 9vw, 122px) clamp(22px, 6vw, 82px);
}

.signature {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(280px, 1.2fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  border-top: 1px solid rgba(184, 138, 59, 0.2);
}

.principles {
  display: grid;
  gap: 16px;
}

.principles article {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 8px 18px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid rgba(117, 105, 93, 0.22);
}

.principles span {
  color: var(--turquoise);
  font-size: 1.5rem;
  font-weight: 300;
}

.principles h3 {
  margin-bottom: 6px;
  font-size: 1.35rem;
}

.principles p {
  grid-column: 2;
  margin-bottom: 0;
}

.work {
  background: linear-gradient(180deg, rgba(255, 250, 241, 0.75), rgba(216, 208, 195, 0.38));
}

.section-heading {
  max-width: 680px;
  margin-bottom: clamp(30px, 6vw, 70px);
}

.space-group {
  scroll-margin-top: 132px;
  display: grid;
  grid-template-columns: minmax(260px, 0.74fr) minmax(290px, 1.26fr);
  gap: clamp(22px, 5vw, 58px);
  align-items: center;
  margin: 0 0 clamp(28px, 5vw, 62px);
}

#space-kids,
#space-bath {
  scroll-margin-top: 132px;
}

.space-group.reverse {
  grid-template-columns: minmax(290px, 1.25fr) minmax(260px, 0.75fr);
}

.space-group.reverse .space-text {
  order: 2;
}

.space-text span {
  display: block;
  margin-bottom: 12px;
  color: var(--turquoise-dark);
  font-weight: 500;
}

.space-text h3 {
  margin-bottom: 12px;
  font-size: clamp(1.65rem, 3.4vw, 3rem);
  line-height: 1.17;
}

figure {
  margin: 0;
}

.space-group figure,
.gallery-grid figure {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #d8d0c3;
  box-shadow: var(--shadow);
}

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

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

.space-group img {
  width: 100%;
  aspect-ratio: 1.54;
  object-fit: cover;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: clamp(48px, 8vw, 96px);
}

.gallery-grid.compact {
  grid-template-columns: 1.1fr 0.8fr 1fr;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  transition: transform 420ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.04);
}

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

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

.gallery-grid .tall img {
  min-height: 620px;
}

figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 250, 241, 0.42);
  border-radius: var(--radius);
  background: rgba(34, 27, 20, 0.58);
  color: #fffaf1;
  font-size: 0.9rem;
}

.contact {
  background:
    linear-gradient(110deg, rgba(15, 79, 85, 0.92), rgba(34, 27, 20, 0.76)),
    url("assets/work/bathroom-brass.jpeg") center / cover;
  color: #fffaf1;
}

.contact-inner {
  width: min(730px, 100%);
}

.contact p {
  color: rgba(255, 250, 241, 0.84);
}

.contact .phone-link {
  color: #fffaf1;
  border-color: rgba(255, 250, 241, 0.4);
  background: rgba(255, 250, 241, 0.1);
}

footer {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(22px, 6vw, 82px);
  background: #16110c;
  color: rgba(255, 250, 241, 0.78);
  font-size: 0.95rem;
}

footer a {
  color: #e0be73;
}

footer span:last-child {
  text-align: left;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  color: rgba(255, 250, 241, 0.86);
}

.footer-legal a {
  color: rgba(255, 250, 241, 0.86);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-page {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(58px, 8vw, 96px) clamp(22px, 6vw, 82px) clamp(70px, 9vw, 120px);
}

.legal-page h1 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 1.08;
  text-shadow: none;
}

.legal-page h2 {
  margin: 42px 0 14px;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.25;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.88;
}

.legal-page ul,
.legal-page ol {
  padding-inline-start: 24px;
}

.legal-page a {
  color: var(--turquoise-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-meta {
  max-width: 760px;
  margin-bottom: 34px;
  color: var(--muted);
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .brand {
    width: 194px;
    height: 74px;
  }

  .brand img {
    width: 194px;
    height: 74px;
    transform: translateY(3px);
  }

  .site-header nav {
    display: none;
  }

  .header-cta {
    margin-right: 18px;
    min-height: 40px;
    padding: 0 14px;
  }

  .hero {
    min-height: 94vh;
    padding: 110px 20px 54px;
  }

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

  .intro,
  .meet,
  .sticky-stage,
  .signature,
  .space-group,
  .space-group.reverse {
    grid-template-columns: 1fr;
  }

  .meet {
    padding-top: 54px;
  }

  .page-main {
    padding-top: 118px;
  }

  .meet-heading {
    position: static;
  }

  .meet-copy {
    padding-inline-start: 0;
    padding-top: 24px;
    border-inline-start: 0;
    border-top: 1px solid rgba(184, 138, 59, 0.34);
  }

  .intro {
    padding-top: 58px;
  }

  .process {
    padding-top: 48px;
  }

  .process-flow {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-flow::before {
    top: 0;
    right: 23px;
    left: auto;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--gold), rgba(184, 138, 59, 0.6), var(--turquoise));
  }

  .process-step,
  .process-step:nth-child(even) {
    min-height: 0;
    padding: 0 58px 34px 0;
    transform: none;
  }

  .process-step::before {
    top: 4px;
    right: 14px;
    transform: none;
  }

  .process-finale {
    padding-top: 18px;
    padding-bottom: 22px;
    padding-left: 18px;
  }

  .scroll-showcase {
    height: 260vh;
  }

  .sticky-stage {
    align-content: center;
    gap: 18px;
    padding: 92px 18px 42px;
  }

  .stage-copy {
    max-width: none;
  }

  .spatial-stage {
    height: 52vh;
    min-height: 360px;
  }

  .room-panel {
    width: min(84vw, 460px);
    min-width: 250px;
  }

  .space-group.reverse .space-text {
    order: 0;
  }

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

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

  .gallery-grid img,
  .gallery-grid .tall img {
    min-height: 320px;
    max-height: 520px;
  }

  .principles article {
    grid-template-columns: 44px 1fr;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
  }

  footer span:last-child {
    text-align: inherit;
  }

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

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .spatial-stage,
  .room-panel {
    transform: none !important;
  }
}
