/*
 * Mebel Cabinets controlled redesign
 * Source stylesheet for Home, About Us, Our Process, and Begin Your Journey.
 */

.mc-page {
  --mc-ink: #121210;
  --mc-ink-soft: #1b1b18;
  --mc-paper: #ffffff;
  --mc-warm: #f3f0e9;
  --mc-warm-deep: #e6e0d4;
  --mc-gold: #c9a24a;
  --mc-gold-dark: #8b6c27;
  --mc-muted: #67665f;
  --mc-line: rgba(18, 18, 16, 0.14);
  --mc-shell: 80rem;
  color: var(--mc-ink);
  overflow-x: clip;
  background: var(--mc-paper);
}

.mc-page *,
.mc-page *::before,
.mc-page *::after {
  box-sizing: border-box;
}

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

.mc-shell {
  width: min(calc(100% - 3rem), var(--mc-shell));
  margin-inline: auto;
}

.mc-section {
  padding-block: clamp(5rem, 9vw, 9rem);
}

.mc-eyebrow {
  margin: 0 0 1.25rem;
  color: var(--mc-gold-dark);
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.mc-eyebrow--light {
  color: #e5c87e;
}

.mc-title {
  max-width: 14ch;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.35rem, 5.1vw, 4.85rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.mc-copy-block {
  max-width: 36rem;
}

.mc-copy-block > p:not(.mc-eyebrow),
.mc-values__heading > p:not(.mc-eyebrow),
.mc-why__statement > p:not(.mc-eyebrow),
.mc-journey-contact__intro > p:not(.mc-eyebrow),
.mc-home-contact__intro > p:not(.mc-eyebrow) {
  margin: 1.6rem 0 0;
  color: var(--mc-muted);
  font-size: clamp(1rem, 1.45vw, 1.15rem);
  line-height: 1.8;
}

.mc-lead {
  color: #373732 !important;
  font-size: clamp(1.15rem, 1.8vw, 1.42rem) !important;
  line-height: 1.65 !important;
}

.mc-split {
  display: grid;
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.mc-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--mc-warm);
}

.mc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.65, 0.25, 1);
}

.mc-media:hover img {
  transform: scale(1.025);
}

.mc-media figcaption {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  max-width: 17rem;
  padding: 0.9rem 1rem;
  background: rgba(18, 18, 16, 0.84);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.mc-button {
  display: inline-flex;
  min-height: 3.4rem;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  padding: 0.95rem 1.6rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.mc-button span {
  font-size: 1rem;
  transition: transform 220ms ease;
}

.mc-button:hover span {
  transform: translate(0.15rem, -0.15rem);
}

.mc-button:focus-visible,
.mc-text-link:focus-visible,
.mc-icon-button:focus-visible,
.mc-work-item:focus-visible,
.mc-project-card:focus-visible,
.mc-direct-contact a:focus-visible,
.mc-home-contact__details a:focus-visible {
  outline: 3px solid var(--mc-gold);
  outline-offset: 4px;
}

.mc-button--gold {
  background: var(--mc-gold);
  color: #0d0d0b;
}

.mc-button--gold:hover {
  background: #e0bf70;
  color: #0d0d0b;
  transform: translateY(-2px);
}

.mc-button--dark {
  background: var(--mc-ink);
  color: #fff;
}

.mc-button--dark:hover {
  background: var(--mc-gold);
  color: var(--mc-ink);
}

.mc-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2.25rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid currentColor;
  color: var(--mc-ink);
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.mc-text-link:hover {
  color: var(--mc-gold-dark);
}

.mc-text-link--light {
  color: #fff;
}

.mc-text-link--light:hover {
  color: #e5c87e;
}

.mc-text-link--muted {
  border-bottom-color: transparent;
  color: var(--mc-muted);
}

.mc-inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 2rem;
}

.mc-page + footer a[href^="mailto:"] {
  overflow-wrap: anywhere;
}

/* Shared header adjustment: keep mobile contact information useful but compact. */
@media (max-width: 47.999rem) {
  .site-topbar > div {
    padding-block: 0.65rem !important;
  }

  .site-topbar-contact {
    width: 100%;
    flex-direction: row !important;
    justify-content: center;
    gap: 1.15rem !important;
    font-size: 0.67rem !important;
    white-space: nowrap;
  }

  .site-topbar-hours {
    display: none !important;
  }
}

/* Homepage hero */
.mc-hero {
  position: relative;
  min-height: clamp(38rem, 72svh, 47rem);
  overflow: hidden;
  background: #28251f;
  color: #fff;
}

.mc-hero__slides,
.mc-hero__slide,
.mc-hero__shade {
  position: absolute;
  inset: 0;
}

.mc-hero__slide {
  opacity: 0;
  transition: opacity 1000ms ease;
}

.mc-hero__slide.opacity-100 {
  opacity: 1;
}

.mc-hero__slide.opacity-0 {
  opacity: 0;
}

.mc-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.mc-hero__slide:nth-child(2) img {
  object-position: center 58%;
}

.mc-hero__shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 8, 7, 0.86) 0%, rgba(8, 8, 7, 0.58) 46%, rgba(8, 8, 7, 0.08) 82%),
    linear-gradient(0deg, rgba(8, 8, 7, 0.58) 0%, transparent 48%);
}

.mc-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: inherit;
  align-items: flex-end;
  padding-block: 5rem 7rem;
}

.mc-hero__copy {
  max-width: 52rem;
  padding-left: clamp(1.25rem, 2.4vw, 2rem);
  border-left: 2px solid var(--mc-gold);
}

.mc-hero__copy .mc-eyebrow {
  display: inline-flex;
  margin-bottom: 1.45rem;
  padding: 0.62rem 0.85rem;
  background: rgba(12, 12, 10, 0.72);
  color: #fff;
  backdrop-filter: blur(8px);
}

.mc-hero__title {
  max-width: 12ch;
  margin: 0;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(3.4rem, 7.35vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.96;
  text-shadow: 0 0.2rem 1.5rem rgba(0, 0, 0, 0.28);
  text-wrap: balance;
}

.mc-hero__lead {
  max-width: 37rem;
  margin: 1.6rem 0 2.2rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.65;
}

.mc-hero__navigation {
  position: absolute;
  right: 0;
  bottom: 2.5rem;
  left: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.35rem;
  pointer-events: none;
}

.mc-hero__arrows,
.mc-hero__dots {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  pointer-events: auto;
}

.mc-icon-button {
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: rgba(18, 18, 16, 0.24);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background-color 180ms ease, color 180ms ease;
}

.mc-icon-button:hover {
  background: #fff;
  color: var(--mc-ink);
}

.mc-icon-button svg {
  width: 1.05rem;
  height: 1.05rem;
}

.mc-hero__dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  cursor: pointer;
  transition: width 220ms ease, background-color 220ms ease;
}

.mc-hero__dot.w-8 {
  width: 2rem;
  background: var(--mc-gold);
}

.mc-hero__dot.w-2 {
  width: 0.5rem;
}

/* Homepage introduction */
.mc-intro {
  background: var(--mc-paper);
}

.mc-intro__media {
  min-height: 34rem;
}

/* Finish directions */
.mc-finishes {
  background: var(--mc-warm);
}

.mc-section-heading {
  display: grid;
  align-items: end;
  gap: 2.5rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.mc-section-heading > p,
.mc-section-heading > div > p:not(.mc-eyebrow) {
  max-width: 31rem;
  margin: 0;
  color: var(--mc-muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.75;
}

.mc-project-grid {
  display: grid;
  gap: 1rem;
}

.mc-project-card {
  position: relative;
  display: block;
  min-height: 21rem;
  overflow: hidden;
  background: #292824;
  color: #fff;
  text-decoration: none;
  scroll-snap-align: start;
}

.mc-project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.2, 0.65, 0.25, 1);
}

.mc-project-card:hover img {
  transform: scale(1.04);
}

.mc-project-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 8, 7, 0.82) 0%, rgba(8, 8, 7, 0.08) 62%);
}

.mc-project-card__content {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  display: grid;
  gap: 0.55rem;
}

.mc-project-card__content strong {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.mc-project-card__content span {
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
  line-height: 1.55;
}

.mc-project-card__arrow {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(18, 18, 16, 0.18);
  font-size: 1rem;
  backdrop-filter: blur(8px);
}

/* Selected work */
.mc-work {
  background: #0d0d0c;
  color: #fff;
}

.mc-section-heading--light > p,
.mc-section-heading--light > div > p:not(.mc-eyebrow) {
  color: rgba(255, 255, 255, 0.62);
}

.mc-work-grid {
  display: grid;
  gap: 1rem;
}

.mc-work-item {
  display: block;
  min-height: 21rem;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: #24231f;
  cursor: zoom-in;
}

.mc-work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.2, 0.65, 0.25, 1), filter 300ms ease;
}

.mc-work-item:hover img {
  filter: brightness(1.04);
  transform: scale(1.025);
}

/* Why and process preview */
.mc-why {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--mc-ink-soft);
  color: #fff;
}

.mc-why__layout {
  display: grid;
  gap: clamp(3rem, 8vw, 8rem);
}

.mc-why__statement {
  max-width: 34rem;
}

.mc-why__statement .mc-title {
  max-width: 13ch;
}

.mc-why__statement > p:not(.mc-eyebrow) {
  color: rgba(255, 255, 255, 0.58);
}

.mc-principles {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mc-principles li {
  display: grid;
  grid-template-columns: 3.4rem 1fr;
  gap: 1rem;
  padding: 1.7rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.mc-principles li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.mc-principles li > span {
  color: #e5c87e;
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.mc-principles h3 {
  margin: 0 0 0.7rem;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.mc-principles p {
  max-width: 37rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.mc-process-preview {
  padding-block: clamp(4rem, 7vw, 6.5rem);
  background: #ddd1b9;
}

.mc-process-preview__layout {
  display: grid;
  align-items: end;
  gap: 2.5rem;
}

.mc-process-preview .mc-title {
  max-width: 12ch;
  font-size: clamp(2.25rem, 4vw, 4rem);
}

.mc-process-preview__steps {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mc-process-preview__steps i {
  width: clamp(1rem, 2vw, 3rem);
  height: 1px;
  background: rgba(18, 18, 16, 0.4);
}

.mc-process-preview .mc-text-link {
  margin: 0;
}

/* Homepage contact and shared form */
.mc-home-contact,
.mc-journey-contact {
  background: var(--mc-warm);
}

.mc-home-contact__layout,
.mc-journey-contact__layout {
  display: grid;
  align-items: start;
  gap: clamp(3rem, 7vw, 7rem);
}

.mc-home-contact__intro,
.mc-journey-contact__intro {
  max-width: 35rem;
}

.mc-home-contact__details,
.mc-direct-contact {
  margin-top: 3rem;
  border-top: 1px solid var(--mc-line);
}

.mc-home-contact__details a,
.mc-direct-contact a {
  display: grid;
  gap: 0.4rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--mc-line);
  color: var(--mc-ink);
  text-decoration: none;
}

.mc-home-contact__details span,
.mc-direct-contact span {
  color: var(--mc-muted);
  font-family: "Montserrat", sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.mc-home-contact__details strong,
.mc-direct-contact strong {
  overflow-wrap: anywhere;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.55;
}

.mc-home-contact__details a:hover strong,
.mc-direct-contact a:hover strong {
  color: var(--mc-gold-dark);
}

.mc-form {
  display: grid;
  gap: 1.35rem;
  width: 100%;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(18, 18, 16, 0.1);
  background: #fff;
  box-shadow: 0 1.5rem 4rem rgba(28, 25, 18, 0.08);
}

.mc-form__grid {
  display: grid;
  gap: 1.35rem;
}

.mc-form__heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid var(--mc-line);
}

.mc-form__heading span {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
}

.mc-form__heading p {
  margin: 0;
  color: var(--mc-muted);
  font-size: 0.75rem;
}

.mc-field {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.mc-field label,
.mc-field legend {
  display: block;
  margin-bottom: 0.6rem;
  color: #3f3e39;
  font-family: "Montserrat", sans-serif;
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.mc-field label > span,
.mc-field legend > span {
  color: var(--mc-gold-dark);
}

.mc-field input:not([type="checkbox"]):not([type="radio"]),
.mc-field select,
.mc-field textarea {
  width: 100%;
  min-height: 3.5rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(18, 18, 16, 0.2);
  border-radius: 0;
  outline: 0;
  background: #fff;
  color: var(--mc-ink);
  font: inherit;
  font-size: 1rem;
  line-height: 1.5;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.mc-field textarea {
  display: block;
  min-height: 9rem;
  resize: vertical;
}

.mc-field input::placeholder,
.mc-field textarea::placeholder {
  color: #96948c;
}

.mc-field input:focus,
.mc-field select:focus,
.mc-field textarea:focus {
  border-color: var(--mc-gold-dark);
  box-shadow: 0 0 0 3px rgba(201, 162, 74, 0.18);
}

.mc-field--options legend {
  margin-bottom: 0.75rem;
}

.mc-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}

.mc-options label {
  display: flex;
  min-height: 3.1rem;
  align-items: center;
  gap: 0.6rem;
  margin: 0;
  padding: 0.7rem 0.8rem;
  border: 1px solid rgba(18, 18, 16, 0.14);
  cursor: pointer;
  letter-spacing: 0;
  text-transform: none;
}

.mc-options input {
  width: 1rem;
  height: 1rem;
  accent-color: var(--mc-gold-dark);
}

.mc-form__submit {
  width: 100%;
  border-radius: 0;
  cursor: pointer;
}

.mc-form__note {
  margin: -0.4rem 0 0;
  color: var(--mc-muted);
  font-size: 0.73rem;
  line-height: 1.5;
  text-align: center;
}

.mc-form--home {
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

.mc-form--home .mc-form__grid {
  gap: 1rem;
}

.mc-form--home .mc-field input:not([type="checkbox"]):not([type="radio"]),
.mc-form--home .mc-field select {
  min-height: 3.15rem;
  padding-block: 0.7rem;
}

.mc-form--home .mc-field textarea {
  min-height: 7rem;
}

.mc-form--home .mc-options label {
  min-height: 2.8rem;
  padding-block: 0.55rem;
}

/* Interior page heroes */
.mc-page-hero {
  position: relative;
  display: flex;
  min-height: clamp(35rem, 68svh, 48rem);
  align-items: flex-end;
  overflow: hidden;
  background: #26241f;
  color: #fff;
}

.mc-page-hero__image,
.mc-page-hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.mc-page-hero__image {
  object-fit: cover;
}

.mc-page-hero__shade {
  background:
    linear-gradient(90deg, rgba(8, 8, 7, 0.78), rgba(8, 8, 7, 0.3) 58%, rgba(8, 8, 7, 0.08)),
    linear-gradient(0deg, rgba(8, 8, 7, 0.62), transparent 55%);
}

.mc-page-hero__content {
  position: relative;
  z-index: 1;
  padding-block: clamp(4rem, 8vw, 7rem);
}

.mc-page-hero__content h1 {
  max-width: 13ch;
  margin: 0;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(3.15rem, 7vw, 6.75rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.98;
  text-wrap: balance;
}

.mc-page-hero__content > p:last-child {
  max-width: 40rem;
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  line-height: 1.65;
}

.mc-page-hero--process .mc-page-hero__image {
  object-position: center 48%;
}

.mc-page-hero--journey {
  min-height: clamp(34rem, 64svh, 44rem);
}

.mc-page-hero--journey .mc-page-hero__image {
  object-position: center 56%;
}

/* About */
.mc-about-intro__media {
  min-height: 35rem;
}

.mc-values {
  background: var(--mc-warm);
}

.mc-values__layout {
  display: grid;
  gap: clamp(3rem, 8vw, 8rem);
}

.mc-values__heading {
  max-width: 31rem;
}

.mc-value-list article {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1rem;
  padding: 1.9rem 0 2.2rem;
  border-top: 1px solid var(--mc-line);
}

.mc-value-list article:last-child {
  border-bottom: 1px solid var(--mc-line);
}

.mc-value-list article > span {
  color: var(--mc-gold-dark);
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.mc-value-list h3 {
  margin: 0 0 0.7rem;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.mc-value-list p {
  max-width: 37rem;
  margin: 0;
  color: var(--mc-muted);
  line-height: 1.75;
}

.mc-about-showcase {
  position: relative;
  min-height: clamp(28rem, 45vw, 38rem);
  overflow: hidden;
  background: #282722;
}

.mc-about-showcase > img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.mc-about-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 8, 7, 0.68), transparent 45%);
}

.mc-about-showcase__caption {
  position: absolute;
  right: max(1.5rem, calc((100% - var(--mc-shell)) / 2));
  bottom: clamp(2rem, 6vw, 5rem);
  left: max(1.5rem, calc((100% - var(--mc-shell)) / 2));
  z-index: 1;
  color: #fff;
}

.mc-about-showcase__caption span {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.8rem);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.mc-about-showcase__caption p {
  max-width: 35rem;
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.mc-cta {
  padding-block: clamp(4.5rem, 8vw, 7.5rem);
  background: var(--mc-ink);
  color: #fff;
}

.mc-cta__layout {
  display: grid;
  align-items: end;
  gap: 2.5rem;
}

.mc-cta h2 {
  max-width: 15ch;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.mc-cta .mc-button {
  justify-self: start;
}

/* Process */
.mc-process-intro {
  padding-bottom: clamp(3.5rem, 5vw, 5rem);
}

.mc-process-body {
  padding-bottom: clamp(5rem, 9vw, 9rem);
  background: linear-gradient(#fff 0 5rem, var(--mc-warm) 5rem 100%);
}

.mc-process-body__layout {
  display: grid;
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.mc-process-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #2a2823;
}

.mc-process-visual img {
  width: 100%;
  min-height: 31rem;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.mc-process-visual figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.5rem;
  background: rgba(18, 18, 16, 0.84);
  color: #fff;
  backdrop-filter: blur(10px);
}

.mc-process-visual figcaption span {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mc-process-visual figcaption p {
  margin: 0.45rem 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.88rem;
}

.mc-timeline {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mc-timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1.2rem;
  padding: 0 0 3.5rem;
}

.mc-timeline li::before {
  content: "";
  position: absolute;
  top: 1.15rem;
  bottom: 0;
  left: 1.35rem;
  width: 1px;
  background: rgba(18, 18, 16, 0.2);
}

.mc-timeline li:last-child {
  padding-bottom: 0;
}

.mc-timeline li:last-child::before {
  display: none;
}

.mc-timeline__number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  place-items: center;
  border: 1px solid rgba(139, 108, 39, 0.48);
  border-radius: 50%;
  background: var(--mc-warm);
  color: var(--mc-gold-dark);
  font-family: "Montserrat", sans-serif;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.mc-timeline h3 {
  margin: 0 0 0.75rem;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.mc-timeline p {
  max-width: 40rem;
  margin: 0;
  color: var(--mc-muted);
  line-height: 1.75;
}

/* Journey */
.mc-journey-intro {
  padding-block: clamp(4rem, 8vw, 7.5rem);
  border-bottom: 1px solid var(--mc-line);
  background: #fff;
}

.mc-journey-intro__layout {
  display: grid;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: end;
}

.mc-journey-intro h1 {
  max-width: 11ch;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(3.25rem, 7.3vw, 6.8rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.96;
  text-wrap: balance;
}

.mc-journey-intro__copy {
  max-width: 31rem;
}

.mc-journey-intro__copy p {
  margin: 0;
  color: #3b3a35;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.75;
}

.mc-journey-intro__copy span {
  display: block;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--mc-line);
  color: var(--mc-gold-dark);
  font-family: "Montserrat", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mc-journey-contact {
  padding-block: clamp(4.5rem, 8vw, 7.5rem);
}

.mc-journey-form-column > .mc-lead {
  max-width: 39rem;
  margin: 1.75rem 0 0;
}

.mc-journey-form-column {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.mc-form--journey {
  flex: 1;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  border-top: 3px solid var(--mc-gold);
  box-shadow: 0 1.5rem 4rem rgba(28, 25, 18, 0.06);
}

.mc-journey-aside {
  min-width: 0;
  padding: clamp(1.5rem, 3.2vw, 2.5rem);
  background: var(--mc-ink-soft);
  color: #fff;
}

.mc-journey-aside__heading h2 {
  max-width: 12ch;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.mc-journey-aside__heading > p:last-child {
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.mc-journey-map {
  position: relative;
  margin: 2.25rem 0 0;
  overflow: hidden;
  background: #d8d5cd;
}

.mc-journey-map iframe {
  display: block;
  width: 100%;
  height: clamp(15.5rem, 24vw, 19rem);
  border: 0;
}

.mc-journey-map figcaption {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
}

.mc-journey-map a {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  padding: 0.75rem 0.9rem;
  background: rgba(18, 18, 16, 0.92);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.mc-journey-map a:hover,
.mc-journey-map a:focus-visible {
  background: var(--mc-gold);
  color: var(--mc-ink);
}

.mc-journey-aside .mc-direct-contact {
  margin-top: 1.5rem;
  border-top-color: rgba(255, 255, 255, 0.18);
}

.mc-journey-aside .mc-direct-contact a {
  border-bottom-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.mc-journey-aside .mc-direct-contact span {
  color: rgba(255, 255, 255, 0.52);
}

.mc-journey-aside .mc-direct-contact strong {
  font-size: 1.02rem;
}

.mc-journey-aside .mc-direct-contact a:hover strong {
  color: #e5c87e;
}

.mc-journey-hours {
  display: grid;
  gap: 0.85rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.mc-journey-hours > span {
  color: rgba(255, 255, 255, 0.52);
  font-family: "Montserrat", sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.mc-journey-hours p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.7;
}

.mc-journey-hours strong {
  color: #fff;
  font-weight: 600;
}

.mc-journey-next {
  margin-top: clamp(2rem, 4vw, 3.5rem);
  padding: clamp(1.75rem, 3.5vw, 3rem);
  overflow: hidden;
  background: var(--mc-ink-soft);
  color: #fff;
}

.mc-journey-next__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.mc-journey-next__heading .mc-eyebrow {
  margin: 0;
  color: #e5c87e;
}

.mc-journey-next h2 {
  margin: 0;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 3.7vw, 3.35rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1;
}

.mc-journey-next ol {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mc-journey-next li {
  min-width: 0;
  min-height: 11rem;
  padding: 1.5rem;
  border-top: 2px solid var(--mc-gold);
  background: rgba(255, 255, 255, 0.055);
}

.mc-journey-next li span {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border: 1px solid rgba(229, 200, 126, 0.5);
  border-radius: 50%;
  color: #e5c87e;
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.mc-journey-next li p {
  max-width: 19rem;
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.65;
}

/* Showroom story and review links */
.mc-showroom-story {
  background: #f4f1eb;
}

.mc-showroom-story__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(22rem, 0.85fr);
  align-items: end;
  gap: clamp(2.5rem, 7vw, 7rem);
  margin-bottom: clamp(2.75rem, 5vw, 4.5rem);
}

.mc-showroom-story__heading .mc-title {
  max-width: 13ch;
}

.mc-showroom-story__heading > div:last-child > p {
  max-width: 34rem;
  margin: 0;
  color: var(--mc-muted);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.75;
}

.mc-showroom-story__gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(22rem, 0.75fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  height: clamp(34rem, 48vw, 42rem);
}

.mc-showroom-story figure {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #d8d5cd;
}

.mc-showroom-story__front {
  grid-row: 1 / -1;
  border-radius: 1.4rem 0 0 1.4rem;
}

.mc-showroom-story__window {
  border-radius: 0 1.4rem 0 0;
}

.mc-showroom-story figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.mc-showroom-story figure:hover img {
  transform: scale(1.025);
}

.mc-showroom-story__window img {
  object-position: center 31%;
}

.mc-showroom-story figure::after {
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(0deg, rgba(7, 7, 6, 0.62), transparent);
  content: "";
  pointer-events: none;
}

.mc-showroom-story figcaption {
  position: absolute;
  z-index: 1;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mc-showroom-story__route {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  min-height: 0;
}

.mc-showroom-story__route figure:last-child {
  border-radius: 0 0 1.4rem 0;
}

.mc-showroom-story__route figure:first-child img {
  object-position: center 58%;
}

.mc-showroom-story__route figure:last-child img {
  object-position: center 34%;
}

.mc-social-proof {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  margin-top: 1rem;
  padding: clamp(2.25rem, 5vw, 4.5rem);
  border-radius: 1.4rem;
  background: var(--mc-ink-soft);
  color: #fff;
}

.mc-social-proof__copy h2 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1;
}

.mc-social-proof__copy > p:not(.mc-eyebrow) {
  max-width: 42rem;
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.mc-social-proof__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.mc-social-proof__links a {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.85rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.mc-social-proof__links a:hover,
.mc-social-proof__links a:focus-visible {
  border-color: var(--mc-gold);
  background: var(--mc-gold);
  color: var(--mc-ink);
}

.mc-social-proof__links svg {
  width: 1rem;
  height: 1rem;
}

.mc-social-proof__links .mc-social-proof__review {
  border-color: var(--mc-gold);
  background: var(--mc-gold);
  color: var(--mc-ink);
}

.mc-social-proof__links .mc-social-proof__review:hover,
.mc-social-proof__links .mc-social-proof__review:focus-visible {
  background: #fff;
}

.mc-social-proof__qr {
  display: grid;
  width: 12rem;
  justify-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 1rem;
  background: #fff;
  color: var(--mc-ink);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.mc-social-proof__qr img {
  width: 10rem;
  height: 10rem;
  image-rendering: pixelated;
}

.mc-footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.mc-footer-socials a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 180ms ease, color 180ms ease;
}

.mc-footer-socials a:hover,
.mc-footer-socials a:focus-visible {
  border-color: var(--mc-gold);
  color: var(--mc-gold);
}

@media (max-width: 64rem) {
  .mc-showroom-story__gallery {
    grid-template-columns: minmax(0, 1.15fr) minmax(19rem, 0.85fr);
    height: 34rem;
  }
}

@media (max-width: 48rem) {
  .mc-showroom-story__heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1.5rem;
  }

  .mc-showroom-story__heading .mc-text-link {
    margin-top: 1.5rem;
  }

  .mc-showroom-story__gallery {
    display: grid;
    height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .mc-showroom-story__front,
  .mc-showroom-story__window {
    grid-row: auto;
    aspect-ratio: 4 / 3;
    border-radius: 1rem;
  }

  .mc-showroom-story__route {
    min-height: 15rem;
  }

  .mc-showroom-story__route figure,
  .mc-showroom-story__route figure:last-child {
    border-radius: 1rem;
  }

  .mc-social-proof {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 2rem 1.5rem;
    border-radius: 1rem;
  }

  .mc-social-proof__qr {
    width: min(100%, 21rem);
    grid-template-columns: auto 1fr;
    align-items: center;
    justify-items: start;
    text-align: left;
  }

  .mc-social-proof__qr img {
    width: 7rem;
    height: 7rem;
  }
}

@media (max-width: 30rem) {
  .mc-showroom-story__route {
    min-height: 12rem;
    gap: 0.65rem;
  }

  .mc-social-proof__links {
    display: grid;
  }

  .mc-social-proof__links a {
    width: 100%;
  }
}

/* Tablet */
@media (min-width: 48rem) {
  .mc-journey-intro__layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(19rem, 0.65fr);
  }

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

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

  .mc-project-card--wide {
    grid-column: 1 / -1;
  }

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

  .mc-work-item--feature {
    grid-column: 1 / -1;
    min-height: 31rem;
  }
}

/* Desktop layouts */
@media (min-width: 64rem) {
  .mc-split {
    grid-template-columns: minmax(0, 1fr) minmax(24rem, 0.82fr);
  }

  .mc-split--image-wide {
    grid-template-columns: minmax(0, 1.18fr) minmax(24rem, 0.82fr);
  }

  .mc-section-heading {
    grid-template-columns: minmax(0, 1.35fr) minmax(22rem, 0.65fr);
  }

  .mc-section-heading > p,
  .mc-section-heading > div:last-child {
    justify-self: end;
  }

  .mc-project-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 30rem;
  }

  .mc-project-card {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
  }

  .mc-project-card--large,
  .mc-project-card--wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
  }

  .mc-work-grid {
    grid-template-columns: minmax(0, 1.6fr) minmax(20rem, 0.78fr);
    grid-template-rows: repeat(2, 19rem);
  }

  .mc-work-item {
    min-height: 0;
  }

  .mc-work-item--feature {
    grid-row: 1 / 3;
    min-height: 0;
  }

  .mc-why__layout,
  .mc-values__layout {
    grid-template-columns: minmax(0, 0.82fr) minmax(28rem, 1.18fr);
  }

  .mc-process-preview__layout {
    grid-template-columns: minmax(20rem, 0.75fr) minmax(27rem, 1fr) auto;
  }

  .mc-home-contact__layout {
    grid-template-columns: minmax(20rem, 0.82fr) minmax(32rem, 1.18fr);
    gap: clamp(3rem, 5vw, 5rem);
  }

  .mc-journey-contact__layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(22rem, 0.85fr);
    align-items: stretch;
    gap: clamp(2.5rem, 4.5vw, 4.5rem);
  }

  .mc-journey-aside {
    height: 100%;
  }

  .mc-journey-next {
    padding: clamp(2.25rem, 3.5vw, 3rem);
  }

  .mc-journey-next ol {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mc-cta__layout {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .mc-cta .mc-button {
    justify-self: end;
  }

  .mc-process-body__layout {
    grid-template-columns: minmax(22rem, 0.82fr) minmax(30rem, 1.18fr);
  }

  .mc-process-visual {
    position: sticky;
    top: 7.5rem;
  }
}

/* Mobile */
@media (max-width: 47.999rem) {
  .mc-shell {
    width: min(calc(100% - 2.5rem), var(--mc-shell));
  }

  .mc-section {
    padding-block: 4.75rem;
  }

  .mc-title {
    max-width: none;
    font-size: clamp(2.25rem, 11vw, 3rem);
    line-height: 1.04;
  }

  .mc-hero {
    min-height: clamp(32rem, calc(100svh - 9rem), 36rem);
  }

  .mc-hero__shade {
    background:
      linear-gradient(90deg, rgba(8, 8, 7, 0.67), rgba(8, 8, 7, 0.25)),
      linear-gradient(0deg, rgba(8, 8, 7, 0.82) 0%, rgba(8, 8, 7, 0.15) 72%);
  }

  .mc-hero__slide img {
    object-position: 58% center;
  }

  .mc-hero__content {
    align-items: flex-end;
    padding-block: 3.5rem 5.8rem;
  }

  .mc-hero__copy {
    width: 100%;
    padding-left: 1rem;
  }

  .mc-hero__title {
    max-width: 11ch;
    font-size: clamp(2.75rem, 13.5vw, 3.55rem);
    line-height: 0.99;
  }

  .mc-hero__lead {
    max-width: 31rem;
    margin-block: 1.25rem 1.75rem;
    font-size: 1rem;
  }

  .mc-hero__navigation {
    bottom: 1.4rem;
    justify-content: space-between;
  }

  .mc-icon-button {
    width: 2.75rem;
    height: 2.75rem;
  }

  .mc-intro__media,
  .mc-about-intro__media {
    min-height: 25rem;
  }

  .mc-media figcaption {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    max-width: none;
  }

  .mc-section-heading {
    margin-bottom: 2.7rem;
  }

  .mc-project-grid {
    width: calc(100% + 1.25rem);
    grid-auto-flow: column;
    grid-auto-columns: minmax(17rem, 82vw);
    grid-template-columns: none;
    overflow-x: auto;
    padding: 0 1.25rem 0.75rem 0;
    scroll-padding-inline: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .mc-project-card,
  .mc-project-card--wide {
    min-height: 22rem;
    grid-column: auto;
    grid-row: auto;
  }

  .mc-work-item,
  .mc-work-item--feature {
    min-height: 25rem;
    grid-column: auto;
    grid-row: auto;
  }

  .mc-project-card__content {
    right: 1.2rem;
    bottom: 1.2rem;
    left: 1.2rem;
  }

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

  .mc-principles li,
  .mc-value-list article {
    grid-template-columns: 2.8rem 1fr;
  }

  .mc-process-preview__steps {
    display: grid;
    justify-items: start;
    gap: 0.65rem;
  }

  .mc-process-preview__steps i {
    width: 1px;
    height: 1rem;
    margin-left: 0.15rem;
  }

  .mc-form {
    padding: 1.25rem;
  }

  .mc-home-contact {
    padding-block: 4rem;
  }

  .mc-home-contact__layout {
    gap: 2.5rem;
  }

  .mc-home-contact__details {
    margin-top: 2rem;
  }

  .mc-home-contact__details a {
    padding-block: 0.9rem;
  }

  .mc-form--home {
    gap: 0.9rem;
    padding: 1.1rem;
  }

  .mc-form--home .mc-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mc-form--home .mc-options label:last-child {
    grid-column: 1 / -1;
  }

  .mc-form--home .mc-field textarea {
    min-height: 6.5rem;
  }

  .mc-form__heading {
    display: grid;
  }

  .mc-journey-intro h1 {
    font-size: clamp(3rem, 14vw, 4.2rem);
  }

  .mc-journey-map iframe {
    height: 16.5rem;
  }

  .mc-journey-next {
    padding: 1.75rem 1.25rem;
  }

  .mc-journey-next__heading {
    display: grid;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
  }

  .mc-journey-next h2 {
    font-size: 2.15rem;
  }

  .mc-journey-next li {
    min-height: 0;
    padding: 1.25rem;
  }

  .mc-journey-next li p {
    margin-top: 1rem;
  }

  .mc-options {
    grid-template-columns: 1fr;
  }

  .mc-page-hero {
    min-height: 34rem;
  }

  .mc-page-hero__shade {
    background:
      linear-gradient(90deg, rgba(8, 8, 7, 0.58), rgba(8, 8, 7, 0.18)),
      linear-gradient(0deg, rgba(8, 8, 7, 0.78), transparent 70%);
  }

  .mc-page-hero__content {
    padding-block: 3.5rem;
  }

  .mc-page-hero__content h1 {
    max-width: 12ch;
    font-size: clamp(2.8rem, 13vw, 3.65rem);
  }

  .mc-page-hero--process .mc-page-hero__image {
    object-position: 52% center;
  }

  .mc-page-hero--journey .mc-page-hero__image {
    object-position: 58% center;
  }

  .mc-about-showcase {
    min-height: 28rem;
  }

  .mc-about-showcase > img {
    object-position: 58% center;
  }

  .mc-cta__layout {
    gap: 2rem;
  }

  .mc-process-body {
    background: var(--mc-warm);
    padding-top: 1.25rem;
  }

  .mc-process-visual img {
    min-height: 23rem;
    aspect-ratio: 4 / 3;
  }

  .mc-timeline li {
    grid-template-columns: 3.2rem 1fr;
    gap: 0.75rem;
    padding-bottom: 2.7rem;
  }

  .mc-timeline li::before {
    left: 1.2rem;
  }

  .mc-timeline__number {
    width: 2.4rem;
    height: 2.4rem;
  }

  .mc-inline-links {
    display: grid;
    justify-items: start;
  }
}

@media (max-width: 23rem) {
  .site-topbar-contact {
    gap: 0.7rem !important;
    font-size: 0.61rem !important;
  }

  .mc-shell {
    width: min(calc(100% - 2rem), var(--mc-shell));
  }

  .mc-hero__title,
  .mc-page-hero__content h1 {
    font-size: 2.55rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mc-page *,
  .mc-page *::before,
  .mc-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

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

.mc-form__alert {
  margin: 0 0 1.25rem;
  padding: 0.9rem 1rem;
  border: 1px solid currentColor;
  font-size: 0.95rem;
  line-height: 1.5;
}

.mc-form__alert strong {
  display: block;
  margin-bottom: 0.15rem;
}

.mc-form__alert--success {
  color: #285b39;
  background: #edf8f0;
}

.mc-form__alert--error {
  color: #8c2f2f;
  background: #fff1f1;
}

.mc-conditional-field:not([hidden]) {
  animation: mc-field-reveal 180ms ease-out;
}

.mc-contact-preferences .mc-options label:has(input:checked) {
  border-color: var(--mc-gold-dark);
  background: rgba(201, 162, 74, 0.08);
}

@keyframes mc-field-reveal {
  from {
    opacity: 0;
    transform: translateY(-0.35rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Editorial system */
.mc-page {
  font-family: "Manrope", sans-serif;
}

.mc-page h1,
.mc-page h2,
.mc-page h3,
.mc-page .mc-title {
  font-family: "Syne", "Montserrat", sans-serif;
}

.mc-button {
  font-family: "Manrope", sans-serif;
}

.mc-button--light {
  border-color: rgba(255, 255, 255, 0.62);
  background: #fff;
  color: #11110f;
}

.mc-button--light:hover {
  border-color: var(--mc-gold);
  background: var(--mc-gold);
  color: #11110f;
  transform: translateY(-2px);
}

.mc-editorial {
  background: #f4f1eb;
}

.mc-editorial__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(24rem, 0.9fr);
  align-items: stretch;
  gap: clamp(1.25rem, 3vw, 2.5rem);
}

.mc-about-intro .mc-editorial__grid {
  align-items: center;
}

.mc-about-intro {
  padding-block: clamp(4rem, 6vw, 6rem);
}

.mc-about-intro .mc-editorial__media {
  min-height: 0;
  aspect-ratio: 4 / 3;
}

.mc-about-intro .mc-editorial__card {
  padding: clamp(1.75rem, 3vw, 2.75rem);
}

.mc-about-intro .mc-editorial__card .mc-title {
  font-size: clamp(2.2rem, 3.6vw, 3.45rem);
}

.mc-about-intro .mc-copy-block > p:not(.mc-eyebrow) {
  margin-top: 1.2rem;
  font-size: clamp(0.96rem, 1.25vw, 1.05rem);
  line-height: 1.65;
}

.mc-about-intro .mc-lead {
  font-size: clamp(1.08rem, 1.5vw, 1.25rem) !important;
  line-height: 1.55 !important;
}

.mc-about-intro .mc-text-link {
  margin-top: 1.6rem;
}

.mc-editorial__media {
  position: relative;
  min-height: clamp(35rem, 48vw, 44rem);
  margin: 0;
  overflow: hidden;
  border-radius: 1.65rem;
  background: #d7d1c5;
}

.mc-editorial__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 850ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.mc-editorial__media:hover img {
  transform: scale(1.025);
}

.mc-editorial__media figcaption {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  max-width: 18rem;
  padding: 1rem 1.15rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.93);
  color: #525149;
  font-size: 0.76rem;
  line-height: 1.45;
  box-shadow: 0 1rem 2.5rem rgba(15, 15, 13, 0.14);
  backdrop-filter: blur(10px);
}

.mc-editorial__media figcaption strong {
  margin-right: 0.25rem;
  color: var(--mc-gold-dark);
  font-size: 1.15rem;
}

.mc-editorial__card {
  display: flex;
  max-width: none;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.35rem, 5vw, 5rem);
  border-left: 3px solid var(--mc-gold);
  border-radius: 1.65rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 1.25rem 4rem rgba(30, 25, 17, 0.055);
}

.mc-editorial__card .mc-title {
  max-width: 12ch;
  font-size: clamp(2.4rem, 4.8vw, 4.5rem);
}

.mc-editorial__list {
  display: grid;
  gap: 0.75rem;
  margin: 1.65rem 0 0;
  padding: 0;
  color: #46453f;
  list-style: none;
}

.mc-editorial__list li {
  position: relative;
  padding-left: 1.25rem;
  line-height: 1.6;
}

.mc-editorial__list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--mc-gold);
  content: "";
}

/* About service composition */
.mc-about-service {
  background: #dedbd5;
}

.mc-about-service__layout {
  display: grid;
  grid-template-columns: minmax(25rem, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.mc-about-service__media {
  overflow: hidden;
  border-radius: 1.15rem;
  box-shadow: 0 1.5rem 3.5rem rgba(20, 18, 13, 0.1);
}

.mc-about-service__media img {
  display: block;
  width: 100%;
  height: clamp(24rem, 34vw, 32rem);
  object-fit: cover;
}

.mc-about-service__copy .mc-title {
  max-width: 13ch;
}

.mc-about-service__copy > p:not(.mc-eyebrow) {
  max-width: 39rem;
  margin: 1.5rem 0 0;
  color: #57564f;
  line-height: 1.8;
}

.mc-about-service__rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(4rem, 7vw, 6.5rem);
  padding-top: 2.25rem;
  border-top: 1px solid rgba(18, 18, 16, 0.16);
}

.mc-about-service__rail article {
  padding-right: 1rem;
}

.mc-about-service__rail svg {
  width: 1.75rem;
  height: 1.75rem;
  margin-bottom: 1.25rem;
  color: var(--mc-gold-dark);
  stroke-width: 1.5;
}

.mc-about-service__rail h3 {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.mc-about-service__rail p {
  max-width: 15rem;
  margin: 0;
  color: #66645d;
  font-size: 0.83rem;
  line-height: 1.65;
}

/* Process services and cards */
.mc-process-intro {
  background: #fff;
}

.mc-process-offer {
  padding-top: 0;
  background: #fff;
}

.mc-process-offer__heading {
  max-width: 47rem;
  margin: 0 auto clamp(3.5rem, 6vw, 5.5rem);
  text-align: center;
}

.mc-process-offer__heading h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.85rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1;
}

.mc-process-offer__heading > p:last-child {
  margin: 1.35rem 0 0;
  color: var(--mc-muted);
  line-height: 1.75;
}

.mc-process-offer__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2.5rem, 6vw, 5.5rem) 2rem;
}

.mc-process-offer__grid article {
  display: grid;
  justify-items: center;
  text-align: center;
}

.mc-process-offer__grid article > span {
  display: grid;
  width: 6.5rem;
  height: 6.5rem;
  margin-bottom: 1.35rem;
  place-items: center;
  background: #f7f4ee;
  color: #262720;
  transition: background-color 250ms ease, color 250ms ease, transform 250ms ease;
}

.mc-process-offer__grid article:hover > span {
  background: var(--mc-gold);
  color: #11110f;
  transform: translateY(-0.25rem);
}

.mc-process-offer__grid svg {
  width: 3rem;
  height: 3rem;
  stroke-width: 1.35;
}

.mc-process-offer__grid h3 {
  margin: 0;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 600;
}

.mc-process-cards {
  background: #f2f1ee;
}

.mc-process-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 1.25rem;
}

.mc-process-cards__intro,
.mc-process-card {
  min-height: 19rem;
  padding: clamp(2rem, 3.5vw, 3.25rem);
  border: 1px solid rgba(18, 18, 16, 0.07);
  background: #fff;
}

.mc-process-cards__intro {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
  align-items: end;
  gap: 1.5rem 3rem;
  min-height: 0;
  background: var(--mc-gold);
}

.mc-process-cards__intro .mc-eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
  color: rgba(17, 17, 15, 0.76);
}

.mc-process-cards__intro h2 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1;
}

.mc-process-cards__intro > p:last-child {
  max-width: 27rem;
  margin: 0;
  color: rgba(17, 17, 15, 0.72);
  line-height: 1.7;
}

.mc-process-card {
  position: relative;
  display: flex;
  height: 100%;
  flex-direction: column;
  transition: box-shadow 260ms ease, transform 260ms ease;
}

.mc-process-card:hover {
  z-index: 1;
  box-shadow: 0 1.5rem 4rem rgba(23, 21, 16, 0.09);
  transform: translateY(-0.3rem);
}

.mc-process-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: auto;
  color: var(--mc-gold-dark);
}

.mc-process-card__top svg {
  width: 2rem;
  height: 2rem;
  stroke-width: 1.45;
}

.mc-process-card__top span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.mc-process-card h3 {
  margin: 2.5rem 0 0.7rem;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.mc-process-card p {
  margin: 0;
  color: var(--mc-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.mc-process-kitchen,
.mc-project-banner {
  position: relative;
  display: grid;
  min-height: clamp(34rem, 62vw, 48rem);
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  background: #141412;
  color: #fff;
}

.mc-process-kitchen > img,
.mc-project-banner > img,
.mc-process-kitchen__shade,
.mc-project-banner__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.mc-process-kitchen > img,
.mc-project-banner > img {
  z-index: -2;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.mc-process-kitchen:hover > img,
.mc-project-banner:hover > img {
  transform: scale(1.025);
}

.mc-process-kitchen__shade,
.mc-project-banner__shade {
  z-index: -1;
  background: rgba(8, 8, 7, 0.62);
}

.mc-process-kitchen__content,
.mc-project-banner__content {
  display: grid;
  max-width: 61rem;
  justify-items: center;
  padding-block: 5rem;
  text-align: center;
}

.mc-process-kitchen__content h2,
.mc-project-banner__content h2 {
  max-width: 16ch;
  margin: 0;
  font-size: clamp(2.65rem, 6vw, 5.75rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.mc-process-kitchen__content > p:not(.mc-eyebrow),
.mc-project-banner__content > p:not(.mc-eyebrow) {
  max-width: 44rem;
  margin: 1.5rem 0 2rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.7;
}

.mc-project-banner {
  min-height: clamp(32rem, 52vw, 43rem);
}

.mc-project-banner__shade {
  background:
    linear-gradient(90deg, rgba(7, 7, 6, 0.75), rgba(7, 7, 6, 0.38)),
    linear-gradient(0deg, rgba(7, 7, 6, 0.42), transparent 60%);
}

@media (max-width: 64rem) {
  .mc-editorial__grid,
  .mc-about-service__layout {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .mc-editorial__media {
    min-height: 34rem;
  }

  .mc-editorial__card {
    padding: clamp(2rem, 4vw, 3.25rem);
  }

  .mc-about-service__rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1rem;
  }

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

@media (max-width: 48rem) {
  .mc-editorial__grid,
  .mc-about-service__layout {
    grid-template-columns: 1fr;
  }

  .mc-editorial__media {
    min-height: 0;
    aspect-ratio: 4 / 4.6;
    border-radius: 1.1rem;
  }

  .mc-editorial__card {
    padding: 2rem 1.5rem;
    border-left-width: 2px;
    border-radius: 1.1rem;
  }

  .mc-editorial__card .mc-title {
    font-size: clamp(2.2rem, 10.5vw, 3.4rem);
  }

  .mc-about-service__media img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .mc-process-offer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem 1rem;
  }

  .mc-process-offer__grid article > span {
    width: 5.25rem;
    height: 5.25rem;
  }

  .mc-process-offer__grid svg {
    width: 2.4rem;
    height: 2.4rem;
  }

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

  .mc-process-cards__intro,
  .mc-process-card {
    min-height: 17rem;
    padding: 1.75rem;
  }

  .mc-process-card {
    min-height: 18rem;
  }

  .mc-process-cards__intro {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .mc-process-cards__intro .mc-eyebrow {
    grid-column: auto;
  }

  .mc-process-kitchen,
  .mc-project-banner {
    min-height: 38rem;
  }

  .mc-process-kitchen > img,
  .mc-project-banner > img {
    object-position: 62% center;
  }

  .mc-process-kitchen__content h2,
  .mc-project-banner__content h2 {
    font-size: clamp(2.45rem, 11.5vw, 4rem);
  }
}

@media (max-width: 30rem) {
  .mc-about-service__rail {
    grid-template-columns: 1fr;
  }
}

/* Gallery */
.mc-gallery-page {
  background: #f7f5f0;
}

.mc-gallery-hero {
  position: relative;
  display: grid;
  min-height: clamp(40rem, calc(100svh - 7rem), 55rem);
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  background: #0d0d0c;
  color: #fff;
}

.mc-gallery-hero__image,
.mc-gallery-hero__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.mc-gallery-hero__image {
  z-index: -2;
  object-fit: cover;
  object-position: center 48%;
  transform: scale(1.015);
  animation: mc-gallery-hero-breathe 14s ease-out both;
}

.mc-gallery-hero__veil {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 5, 4, 0.82) 0%, rgba(5, 5, 4, 0.38) 52%, rgba(5, 5, 4, 0.2) 100%),
    linear-gradient(0deg, rgba(5, 5, 4, 0.78) 0%, transparent 52%, rgba(5, 5, 4, 0.18) 100%);
}

.mc-gallery-hero__content {
  padding-bottom: clamp(7.5rem, 14vh, 10rem);
}

.mc-gallery-hero__eyebrow {
  color: #e2c370;
}

.mc-gallery-hero__content h1 {
  max-width: 10.5ch;
  margin: 0;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(3.5rem, 7.3vw, 7.25rem);
  font-weight: 500;
  letter-spacing: -0.068em;
  line-height: 0.92;
}

.mc-gallery-hero__content > p:last-child {
  max-width: 42rem;
  margin: 2rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.55vw, 1.22rem);
  line-height: 1.7;
}

.mc-gallery-hero__scroll {
  position: absolute;
  right: max(1.5rem, calc((100vw - var(--mc-shell)) / 2));
  bottom: 3rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.82);
  font-family: "Montserrat", sans-serif;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
}

.mc-gallery-hero__scroll svg {
  width: 2.8rem;
  height: 2.8rem;
  padding: 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.mc-gallery-hero__scroll:hover {
  color: #fff;
}

.mc-gallery-hero__scroll:hover svg {
  border-color: var(--mc-gold);
  transform: translateY(0.25rem);
}

.mc-gallery-hero__scroll:focus-visible,
.mc-gallery-featured__project:focus-visible,
.mc-gallery-archive__item:focus-visible {
  outline: 3px solid var(--mc-gold);
  outline-offset: 4px;
}

#gallery-content {
  scroll-margin-top: 7rem;
}

.mc-gallery-featured {
  background: #f7f5f0;
}

.mc-gallery-heading,
.mc-gallery-process__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
  align-items: end;
  gap: clamp(3rem, 8vw, 8rem);
  margin-bottom: clamp(3rem, 6vw, 5.25rem);
}

.mc-gallery-heading h2,
.mc-gallery-process__heading h2,
.mc-gallery-cta h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.45rem, 5vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.mc-gallery-heading > p,
.mc-gallery-process__heading > p {
  margin: 0;
  color: var(--mc-muted);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.75;
}

.mc-gallery-featured__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: clamp(14rem, 20vw, 18.5rem);
  gap: 1rem;
}

.mc-gallery-featured__project,
.mc-gallery-archive__item {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: #d9d4c9;
  color: #fff;
  cursor: zoom-in;
  font: inherit;
  text-align: left;
}

.mc-gallery-featured__project {
  grid-column: span 5;
  min-height: 0;
}

.mc-gallery-featured__project--lead {
  grid-column: span 7;
  grid-row: span 2;
}

.mc-gallery-featured__project--wide {
  grid-column: span 12;
}

.mc-gallery-featured__project img,
.mc-gallery-archive__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 750ms cubic-bezier(0.2, 0.7, 0.25, 1), filter 350ms ease;
}

.mc-gallery-featured__project::after,
.mc-gallery-archive__item::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.mc-gallery-featured__project::after {
  background: linear-gradient(0deg, rgba(7, 7, 6, 0.82) 0%, rgba(7, 7, 6, 0.05) 55%);
}

.mc-gallery-featured__project:hover img,
.mc-gallery-archive__item:hover img {
  transform: scale(1.035);
}

.mc-gallery-featured__caption {
  position: absolute;
  z-index: 1;
  right: clamp(1.35rem, 3vw, 2.5rem);
  bottom: clamp(1.35rem, 3vw, 2.5rem);
  left: clamp(1.35rem, 3vw, 2.5rem);
  display: grid;
  gap: 0.45rem;
  pointer-events: none;
}

.mc-gallery-featured__caption span {
  color: #e5ca84;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mc-gallery-featured__caption strong {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.35rem, 2.6vw, 2.35rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.mc-gallery-featured__open {
  position: absolute;
  z-index: 1;
  top: 1.4rem;
  right: 1.4rem;
  display: grid;
  width: 2.65rem;
  height: 2.65rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: rgba(12, 12, 10, 0.25);
  font-size: 1rem;
  pointer-events: none;
  backdrop-filter: blur(8px);
  transition: background-color 220ms ease, transform 220ms ease;
}

.mc-gallery-featured__project:hover .mc-gallery-featured__open {
  background: var(--mc-gold);
  color: #111;
  transform: rotate(6deg);
}

.mc-gallery-process {
  padding-block: clamp(5rem, 9vw, 9rem);
  background: #11110f;
  color: #fff;
}

.mc-gallery-process .mc-eyebrow {
  color: #e1c06d;
}

.mc-gallery-process__heading > p {
  color: rgba(255, 255, 255, 0.62);
}

.mc-gallery-process__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.85fr);
  align-items: start;
  gap: clamp(2rem, 5vw, 5rem);
}

.mc-gallery-process__visual {
  position: sticky;
  top: 8rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #181815;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.2);
}

.mc-gallery-process__visual-top,
.mc-gallery-process__visual-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mc-gallery-process__visual-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mc-gallery-process__visual-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mc-gallery-process__live {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #dfc06f;
}

.mc-gallery-process__live i {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--mc-gold);
  box-shadow: 0 0 0 0 rgba(201, 162, 74, 0.55);
  animation: mc-process-pulse 2s ease-out infinite;
}

.mc-gallery-process__svg {
  display: block;
  width: 100%;
  height: auto;
  color: #d6b45f;
}

.mc-gallery-process__grid {
  color: #b9a162;
}

.mc-gallery-process__room,
.mc-gallery-process__cabinet-lines,
.mc-gallery-process__shaker {
  fill: none;
  stroke: rgba(229, 216, 186, 0.68);
  stroke-linecap: square;
  stroke-linejoin: round;
  stroke-width: 1.3;
}

.mc-gallery-process__cabinet-lines,
.mc-gallery-process__shaker {
  stroke: rgba(240, 229, 201, 0.86);
}

.mc-gallery-process__labels text,
.mc-gallery-process__measurements text,
.mc-gallery-process__installation text {
  fill: rgba(255, 255, 255, 0.6);
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
}

.mc-process-line path {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation: mc-process-draw 18s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

.mc-process-phase {
  opacity: 0;
  animation: mc-process-phase 18s linear infinite;
  animation-delay: calc(var(--step) * 3s);
}

.mc-gallery-process__measurements,
.mc-gallery-process__brief,
.mc-gallery-process__approval,
.mc-gallery-process__fabrication,
.mc-gallery-process__installation {
  fill: none;
  stroke: #dbb558;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.mc-gallery-process__brief rect,
.mc-gallery-process__brief circle {
  fill: rgba(13, 13, 11, 0.9);
}

.mc-gallery-process__swatches {
  stroke: rgba(255, 255, 255, 0.45);
  stroke-width: 1;
}

.mc-gallery-process__approval circle {
  fill: rgba(13, 13, 11, 0.92);
  stroke-width: 1.5;
}

.mc-gallery-process__approval path {
  stroke-width: 4;
}

.mc-gallery-process__fabrication rect {
  fill: rgba(201, 162, 74, 0.14);
}

.mc-process-counter,
.mc-process-modern-fill,
.mc-process-shaker-fill {
  opacity: 0;
  animation: mc-process-fill 18s ease-in-out infinite;
}

.mc-process-counter {
  fill: url(#mc-counter-fill);
  animation-delay: 7.5s;
}

.mc-process-modern-fill {
  fill: #383833;
  animation-delay: 8.3s;
}

.mc-process-shaker-fill {
  fill: url(#mc-cabinet-fill);
  animation-delay: 9s;
}

.mc-gallery-process__cursor {
  fill: #e1bf68;
  transform: translate(80px, 135px);
  animation: mc-process-cursor 18s cubic-bezier(0.48, 0, 0.2, 1) infinite;
}

.mc-gallery-process__steps {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mc-gallery-process__step {
  position: relative;
  display: grid;
  grid-template-columns: 3.25rem 1fr;
  gap: 1rem;
  padding: 1.3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.42);
  animation: mc-process-step 18s linear infinite;
  animation-delay: calc(var(--step) * 3s);
}

.mc-gallery-process__step:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.mc-gallery-process__step::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--mc-gold);
  content: "";
  animation: mc-process-step-line 18s linear infinite;
  animation-delay: calc(var(--step) * 3s);
}

.mc-gallery-process__step > span {
  padding-top: 0.2rem;
  color: #d5af50;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.mc-gallery-process__step h3 {
  margin: 0;
  color: currentColor;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.mc-gallery-process__step p {
  margin: 0.55rem 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.82rem;
  line-height: 1.65;
}

.mc-gallery-process__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.mc-gallery-process__footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
}

.mc-gallery-archive {
  background: #fff;
}

.mc-gallery-heading--archive {
  align-items: start;
}

.mc-gallery-archive__grid {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: clamp(4rem, 5.6vw, 5.4rem);
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.85rem;
}

.mc-gallery-archive__item {
  grid-column: span 4;
  grid-row: span 4;
  border-radius: 0;
}

.mc-gallery-archive__item:nth-child(1),
.mc-gallery-archive__item:nth-child(8),
.mc-gallery-archive__item:nth-child(14) {
  grid-column: span 8;
  grid-row: span 5;
}

.mc-gallery-archive__item:nth-child(4),
.mc-gallery-archive__item:nth-child(7),
.mc-gallery-archive__item:nth-child(11),
.mc-gallery-archive__item:nth-child(16) {
  grid-row: span 5;
}

.mc-gallery-archive__item::after {
  background: linear-gradient(0deg, rgba(8, 8, 7, 0.42), transparent 40%);
  opacity: 0;
  transition: opacity 250ms ease;
}

.mc-gallery-archive__item > span {
  position: absolute;
  z-index: 1;
  right: 1rem;
  bottom: 1rem;
  padding-bottom: 0.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  opacity: 0;
  pointer-events: none;
  text-transform: uppercase;
  transform: translateY(0.35rem);
  transition: opacity 250ms ease, transform 250ms ease;
}

.mc-gallery-archive__item:hover::after,
.mc-gallery-archive__item:hover > span {
  opacity: 1;
}

.mc-gallery-archive__item:hover > span {
  transform: translateY(0);
}

.mc-gallery-cta {
  padding-block: clamp(5.5rem, 10vw, 9.5rem);
  background:
    radial-gradient(circle at 78% 20%, rgba(201, 162, 74, 0.14), transparent 24rem),
    #11110f;
  color: #fff;
  text-align: center;
}

.mc-gallery-cta__inner {
  display: grid;
  justify-items: center;
}

.mc-gallery-cta h2 {
  max-width: 13ch;
}

.mc-gallery-cta__inner > p:not(.mc-eyebrow) {
  max-width: 39rem;
  margin: 1.75rem auto 2.25rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.03rem;
  line-height: 1.75;
}

@keyframes mc-gallery-hero-breathe {
  from { transform: scale(1.055); }
  to { transform: scale(1.015); }
}

@keyframes mc-process-pulse {
  70% { box-shadow: 0 0 0 0.5rem rgba(201, 162, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(201, 162, 74, 0); }
}

@keyframes mc-process-draw {
  0%, 5% { stroke-dashoffset: 1200; }
  28%, 88% { stroke-dashoffset: 0; }
  96%, 100% { stroke-dashoffset: 1200; }
}

@keyframes mc-process-phase {
  0%, 16% { opacity: 1; }
  18%, 100% { opacity: 0; }
}

@keyframes mc-process-fill {
  0%, 6% { opacity: 0; transform: translateY(-10px); }
  12%, 42% { opacity: 0.82; transform: translateY(0); }
  48%, 100% { opacity: 0; transform: translateY(0); }
}

@keyframes mc-process-cursor {
  0%, 4% { opacity: 0; transform: translate(80px, 135px); }
  8% { opacity: 1; }
  24% { transform: translate(320px, 276px); }
  38% { transform: translate(610px, 178px); }
  55% { transform: translate(470px, 388px); }
  76% { opacity: 1; transform: translate(650px, 400px); }
  86%, 100% { opacity: 0; transform: translate(690px, 430px); }
}

@keyframes mc-process-step {
  0%, 16% { color: #fff; }
  18%, 100% { color: rgba(255, 255, 255, 0.42); }
}

@keyframes mc-process-step-line {
  0% { width: 0; }
  16% { width: 100%; }
  18%, 100% { width: 0; }
}

@media (max-width: 64rem) {
  .mc-gallery-process__layout {
    grid-template-columns: 1fr;
  }

  .mc-gallery-process__visual {
    position: relative;
    top: auto;
    max-width: 52rem;
  }

  .mc-gallery-process__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 2rem;
  }

  .mc-gallery-featured__grid {
    grid-auto-rows: 15rem;
  }

  .mc-gallery-archive__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: 5rem;
  }

  .mc-gallery-archive__item,
  .mc-gallery-archive__item:nth-child(4),
  .mc-gallery-archive__item:nth-child(7),
  .mc-gallery-archive__item:nth-child(11),
  .mc-gallery-archive__item:nth-child(16) {
    grid-column: span 3;
    grid-row: span 4;
  }

  .mc-gallery-archive__item:nth-child(1),
  .mc-gallery-archive__item:nth-child(8),
  .mc-gallery-archive__item:nth-child(14) {
    grid-column: span 6;
    grid-row: span 5;
  }
}

@media (max-width: 48rem) {
  .mc-gallery-hero {
    min-height: clamp(36rem, calc(100svh - 5rem), 46rem);
  }

  .mc-gallery-hero__image {
    object-position: 62% center;
  }

  .mc-gallery-hero__veil {
    background: linear-gradient(0deg, rgba(5, 5, 4, 0.84), rgba(5, 5, 4, 0.12) 78%);
  }

  .mc-gallery-hero__content {
    padding-bottom: 7.8rem;
  }

  .mc-gallery-hero__content h1 {
    font-size: clamp(3.15rem, 13.8vw, 5rem);
  }

  .mc-gallery-hero__scroll {
    right: auto;
    bottom: 2rem;
    left: 1.5rem;
  }

  .mc-gallery-heading,
  .mc-gallery-process__heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1.5rem;
  }

  .mc-gallery-heading h2,
  .mc-gallery-process__heading h2,
  .mc-gallery-cta h2 {
    font-size: clamp(2.35rem, 11vw, 3.8rem);
  }

  .mc-gallery-featured__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .mc-gallery-featured__project,
  .mc-gallery-featured__project--lead,
  .mc-gallery-featured__project--wide {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .mc-gallery-featured__project--lead {
    aspect-ratio: 4 / 5;
  }

  .mc-gallery-process__visual-top,
  .mc-gallery-process__visual-bottom {
    padding-inline: 0.9rem;
    font-size: 0.55rem;
    letter-spacing: 0.08em;
  }

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

  .mc-gallery-process__step {
    grid-template-columns: 2.8rem 1fr;
  }

  .mc-gallery-process__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .mc-gallery-archive__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: 0.55rem;
  }

  .mc-gallery-archive__item,
  .mc-gallery-archive__item:nth-child(1),
  .mc-gallery-archive__item:nth-child(4),
  .mc-gallery-archive__item:nth-child(7),
  .mc-gallery-archive__item:nth-child(8),
  .mc-gallery-archive__item:nth-child(11),
  .mc-gallery-archive__item:nth-child(14),
  .mc-gallery-archive__item:nth-child(16) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 5;
  }

  .mc-gallery-archive__item:nth-child(1),
  .mc-gallery-archive__item:nth-child(8),
  .mc-gallery-archive__item:nth-child(14) {
    grid-column: span 2;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 30rem) {
  .mc-gallery-hero__content > p:last-child {
    max-width: 29rem;
    font-size: 0.96rem;
  }

  .mc-gallery-process__visual-bottom span:nth-child(2) {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mc-process-line path {
    stroke-dashoffset: 0;
  }

  .mc-process-counter,
  .mc-process-modern-fill,
  .mc-process-shaker-fill {
    opacity: 0.78;
    transform: none;
  }

  .mc-gallery-process__step {
    color: #fff;
  }

  .mc-gallery-process__step::before {
    width: 100%;
  }

  .mc-gallery-process__cursor,
  .mc-process-phase {
    display: none;
  }
}

/* 2026-09 contact, process and scrolling refinement */
html {
  scroll-padding-top: 7rem;
}

html.mc-smooth-scroll-ready {
  scroll-behavior: auto !important;
}

.mc-journey-intro {
  padding-block: clamp(3.75rem, 6vw, 5.75rem);
  background:
    radial-gradient(circle at 84% 18%, rgba(201, 162, 74, 0.1), transparent 24rem),
    #fff;
}

.mc-journey-contact {
  padding-block: clamp(3.5rem, 6vw, 6rem);
  background: #f5f3ee;
}

.mc-journey-contact__layout {
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.mc-journey-form-column {
  padding: clamp(1.5rem, 3.4vw, 3rem);
  border: 1px solid rgba(18, 18, 16, 0.09);
  border-radius: 1.25rem;
  background: #fff;
  box-shadow: 0 1.25rem 4.5rem rgba(34, 29, 20, 0.07);
}

.mc-journey-form-column > .mc-eyebrow {
  margin-bottom: 0.9rem;
}

.mc-journey-form-column > .mc-title {
  max-width: 12ch;
  font-size: clamp(2.35rem, 4.2vw, 4rem);
}

.mc-journey-form-column > .mc-lead {
  max-width: 38rem;
  margin-top: 1.25rem;
  font-size: clamp(1rem, 1.4vw, 1.16rem) !important;
  line-height: 1.65 !important;
}

.mc-form--journey {
  gap: 1.2rem;
  margin-top: clamp(2rem, 3.5vw, 2.75rem);
  padding: clamp(1.5rem, 2.8vw, 2.25rem) 0 0;
  border: 0;
  border-top: 2px solid var(--mc-gold);
  background: transparent;
  box-shadow: none;
}

.mc-form--journey .mc-form__heading {
  padding-bottom: 1rem;
}

.mc-form--journey .mc-field input:not([type="checkbox"]):not([type="radio"]),
.mc-form--journey .mc-field select,
.mc-form--journey .mc-field textarea {
  border-color: rgba(18, 18, 16, 0.16);
  border-radius: 0.55rem;
  background: #fbfaf7;
}

.mc-form--journey .mc-options label {
  border-color: rgba(18, 18, 16, 0.13);
  border-radius: 0.55rem;
  background: #fbfaf7;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.mc-form--journey .mc-options label:hover {
  border-color: rgba(139, 108, 39, 0.5);
  background: #f7f1e3;
  transform: translateY(-1px);
}

.mc-form--journey .mc-form__submit {
  border-radius: 0.55rem;
}

.mc-journey-aside {
  position: relative;
  height: auto;
  overflow: hidden;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border-radius: 1.25rem;
  background:
    radial-gradient(circle at 100% 0, rgba(201, 162, 74, 0.18), transparent 22rem),
    #181815;
  box-shadow: 0 1.25rem 4.5rem rgba(20, 18, 14, 0.12);
}

.mc-journey-aside::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--mc-gold);
  content: "";
}

.mc-journey-map {
  margin-top: 1.75rem;
  border-radius: 0.8rem;
}

.mc-journey-map iframe {
  height: clamp(15rem, 23vw, 18rem);
}

.mc-journey-map a {
  border-radius: 999px;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.2);
}

.mc-journey-aside .mc-direct-contact {
  margin-top: 1.1rem;
}

.mc-journey-aside .mc-direct-contact a {
  padding-block: 1rem;
}

.mc-journey-hours {
  padding: 1.15rem 0 0;
  border-bottom: 0;
}

.mc-journey-next {
  display: grid;
  grid-template-columns: minmax(14rem, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-top: clamp(1.25rem, 2.5vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid rgba(18, 18, 16, 0.09);
  border-radius: 1.25rem;
  background: #fff;
  color: var(--mc-ink);
  box-shadow: 0 1.25rem 4.5rem rgba(34, 29, 20, 0.055);
}

.mc-journey-next__heading {
  display: block;
  margin: 0;
  padding: 0 clamp(1.5rem, 3vw, 2.75rem) 0 0;
  border: 0;
  border-right: 1px solid var(--mc-line);
}

.mc-journey-next__heading .mc-eyebrow {
  margin: 0 0 0.85rem;
  color: var(--mc-gold-dark);
}

.mc-journey-next h2 {
  color: var(--mc-ink);
  font-size: clamp(2rem, 3vw, 2.75rem);
}

.mc-journey-next ol {
  align-items: stretch;
  gap: 0.7rem;
}

.mc-journey-next li {
  min-height: 9.5rem;
  padding: 1.25rem;
  border: 1px solid rgba(18, 18, 16, 0.08);
  border-top: 2px solid var(--mc-gold);
  border-radius: 0.75rem;
  background: #f7f5f0;
}

.mc-journey-next li span {
  width: 2.25rem;
  height: 2.25rem;
  border-color: rgba(139, 108, 39, 0.35);
  color: var(--mc-gold-dark);
}

.mc-journey-next li p {
  margin-top: 1.2rem;
  color: #4f4e47;
  font-size: 0.92rem;
  line-height: 1.55;
}

.mc-process-cards {
  background: #f3f1ec;
}

.mc-process-cards__grid {
  gap: clamp(0.85rem, 1.6vw, 1.25rem);
}

.mc-process-cards__intro {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(17rem, 26vw, 21rem);
  border: 0;
  border-radius: 1.25rem;
  background:
    linear-gradient(115deg, rgba(201, 162, 74, 0.08), transparent 46%),
    #181815;
  color: #fff;
  box-shadow: 0 1.5rem 4.5rem rgba(21, 19, 15, 0.12);
}

.mc-process-cards__intro::after {
  position: absolute;
  z-index: -1;
  right: clamp(-6rem, -4vw, -2rem);
  bottom: clamp(-8rem, -5vw, -4rem);
  width: clamp(15rem, 27vw, 24rem);
  aspect-ratio: 1;
  border: clamp(2.25rem, 5vw, 4.5rem) solid rgba(201, 162, 74, 0.16);
  border-radius: 50%;
  content: "";
}

.mc-process-cards__intro .mc-eyebrow {
  color: #e5c87e;
}

.mc-process-cards__intro h2 {
  max-width: 12ch;
  color: #fff;
}

.mc-process-cards__intro > p:last-child {
  color: rgba(255, 255, 255, 0.68);
}

.mc-process-card {
  min-height: 18rem;
  border: 1px solid rgba(18, 18, 16, 0.08);
  border-radius: 1rem;
  box-shadow: 0 0.8rem 2.5rem rgba(32, 28, 20, 0.035);
}

.mc-process-card__top svg {
  box-sizing: content-box;
  padding: 0.75rem;
  border-radius: 50%;
  background: rgba(201, 162, 74, 0.14);
}

.mc-process-card__top span {
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(139, 108, 39, 0.4);
}

@media (min-width: 64rem) {
  .mc-journey-contact__layout {
    grid-template-columns: minmax(0, 1.12fr) minmax(22rem, 0.88fr);
    gap: clamp(1.25rem, 2.5vw, 2rem);
  }

  .mc-journey-aside {
    position: sticky;
    top: 7rem;
    height: max-content;
  }
}

@media (max-width: 63.999rem) {
  .mc-journey-contact__layout {
    gap: 1.25rem;
  }

  .mc-journey-next {
    grid-template-columns: 1fr;
  }

  .mc-journey-next__heading {
    padding: 0 0 1.35rem;
    border-right: 0;
    border-bottom: 1px solid var(--mc-line);
  }
}

@media (max-width: 47.999rem) {
  html {
    scroll-padding-top: 5.5rem;
  }

  .mc-journey-intro {
    padding-block: 3.5rem;
  }

  .mc-journey-contact {
    padding-block: 2.5rem 4rem;
  }

  .mc-journey-form-column,
  .mc-journey-aside,
  .mc-journey-next,
  .mc-process-cards__intro,
  .mc-process-card {
    border-radius: 0.9rem;
  }

  .mc-journey-form-column {
    padding: 1.25rem;
  }

  .mc-form--journey {
    padding-top: 1.25rem;
  }

  .mc-journey-next {
    padding: 1.25rem;
  }

  .mc-journey-next ol {
    grid-template-columns: 1fr;
  }

  .mc-process-cards__intro,
  .mc-process-card {
    min-height: 0;
  }

  .mc-process-cards__intro {
    padding-block: 2.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html,
  html.mc-smooth-scroll-ready {
    scroll-behavior: auto !important;
  }
}
[id$="-cabinetry"] {
    scroll-margin-top: 7rem;
}
