:root {
  --ink: #171410;
  --ink-soft: #25201b;
  --paper: #f7efe5;
  --paper-strong: #fff8f2;
  --paper-panel: rgba(255, 248, 242, 0.72);
  --paper-panel-strong: rgba(255, 248, 242, 0.86);
  --bronze: #bf8d57;
  --bronze-soft: rgba(191, 141, 87, 0.16);
  --bronze-strong: #d7a56e;
  --clay: #80644f;
  --sage: #6c7a6a;
  --line: rgba(23, 20, 16, 0.1);
  --shadow-soft: 0 22px 70px rgba(23, 20, 16, 0.1);
  --shadow-strong: 0 32px 110px rgba(0, 0, 0, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 12% 16%, rgba(191, 141, 87, 0.14), transparent 24%),
    radial-gradient(circle at 86% 12%, rgba(108, 122, 106, 0.1), transparent 22%),
    linear-gradient(180deg, #fdf7ef 0%, #f2e7d8 50%, #ebdece 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.26), transparent 26%, transparent 74%, rgba(23, 20, 16, 0.03));
}

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

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

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

dialog {
  border: none;
}

.site-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  mix-blend-mode: soft-light;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.9) 0 0.8px, transparent 0.8px),
    radial-gradient(circle at 70% 30%, rgba(23, 20, 16, 0.7) 0 0.7px, transparent 0.7px);
  background-size: 26px 26px, 34px 34px;
}

.section-shell {
  width: min(1380px, calc(100% - 24px));
  margin: 0 auto;
}

.eyebrow {
  margin: 0;
  color: var(--bronze);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.brand-mark,
.hero h1,
.section-heading-block h2,
.visionary-copy h2,
.visionary-copy blockquote,
.principle-tile h3,
.project-card h3,
.legacy-rail h3,
.visit-banner h2,
.site-footer h2,
.subpage-hero h1,
.visit-form-card h2,
.visit-sidebar h2,
.policy-card h2 {
  font-family: "Cormorant Garamond", serif;
}

.brand-mark {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.brand-mark small {
  color: var(--bronze);
  font-size: 1rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(1380px, calc(100% - 24px));
  margin: 14px auto 0;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 999px;
  background: rgba(247, 239, 229, 0.76);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled,
.site-header--subpage {
  background: rgba(247, 239, 229, 0.9);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.site-nav a {
  position: relative;
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(23, 20, 16, 0.74);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--bronze);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button-solid {
  background: var(--ink);
  color: var(--paper-strong);
  box-shadow: var(--shadow-strong);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.54);
  border-color: rgba(23, 20, 16, 0.14);
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: center;
  min-height: calc(100vh - 108px);
  padding: 44px 0 30px;
}

.hero h1 {
  max-width: 9.4ch;
  margin: 16px 0 0;
  font-size: clamp(3.8rem, 8vw, 6.8rem);
  line-height: 0.9;
}

.hero-lead,
.section-heading-block p,
.visionary-copy p,
.visionary-copy blockquote,
.project-card p,
.legacy-copy p,
.legacy-rail p,
.visit-banner p,
.site-footer p,
.subpage-hero p,
.visit-form-card .form-note,
.visit-sidebar p,
.policy-card p,
.policy-card li {
  line-height: 1.8;
}

.hero-lead,
.section-heading-block p,
.visionary-copy p,
.project-card p,
.legacy-copy p,
.legacy-rail p,
.visit-banner p,
.site-footer p,
.subpage-hero p,
.visit-form-card .form-note,
.visit-sidebar p,
.policy-card p,
.policy-card li {
  color: rgba(23, 20, 16, 0.7);
}

.hero-actions,
.visit-banner__actions,
.concierge-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 28px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.hero-metrics article,
.principle-tile,
.visionary-media,
.visionary-copy,
.project-card,
.legacy-rail article,
.visit-banner,
.site-footer,
.subpage-hero,
.video-card,
.visit-form-card,
.visit-sidebar__card,
.policy-card,
.concierge-panel,
.lightbox {
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 30px;
  background: var(--paper-panel);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.hero-metrics article {
  padding: 18px;
}

.hero-metrics strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.hero-metrics span {
  display: block;
  margin-top: 4px;
  color: rgba(23, 20, 16, 0.64);
}

.hero-stage {
  min-height: 680px;
}

.video-chamber {
  position: relative;
  min-height: 680px;
  padding: 28px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 15% 15%, rgba(191, 141, 87, 0.22), transparent 28%),
    linear-gradient(150deg, rgba(23, 20, 16, 0.96), rgba(37, 31, 25, 0.88));
  box-shadow: var(--shadow-strong);
  transform-style: preserve-3d;
  transform: perspective(1600px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 180ms ease;
}

.video-chamber__frame {
  position: absolute;
  inset: 18px;
  border-radius: 30px;
  border: 1px solid rgba(255, 248, 242, 0.14);
}

.video-chamber__surface,
.video-card__surface {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

.video-chamber__surface {
  position: absolute;
  inset: 18px;
  min-height: auto;
}

.video-chamber__surface::after,
.video-card__surface::after,
.immersive-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 15, 13, 0.16), rgba(17, 15, 13, 0.54) 82%),
    radial-gradient(circle at 16% 22%, rgba(191, 141, 87, 0.22), transparent 26%);
  pointer-events: none;
}

.video-cover-embed {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.video-cover-embed iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 170%;
  height: 170%;
  border: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  filter: saturate(0.76) brightness(0.76) contrast(1.08);
}

.video-chamber__card {
  position: absolute;
  z-index: 1;
  max-width: 280px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 248, 242, 0.08);
  color: #fff6ea;
  backdrop-filter: blur(16px);
  transform: translateZ(54px);
}

.video-chamber__card--top {
  top: 34px;
  left: 34px;
}

.video-chamber__card--bottom {
  right: 34px;
  bottom: 34px;
}

.video-chamber__card h2 {
  margin: 10px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.video-chamber__card p:last-child {
  margin: 8px 0 0;
  line-height: 1.75;
  color: rgba(255, 246, 234, 0.8);
}

.video-chamber__meta {
  position: absolute;
  right: 34px;
  left: 34px;
  bottom: 22px;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 246, 234, 0.7);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.immersive-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: calc(100vh - 120px);
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 42px;
  background: #16120f;
  box-shadow: var(--shadow-strong);
  isolation: isolate;
}

.immersive-hero__media {
  position: absolute;
  inset: 0;
}

.video-cover-embed--hero iframe {
  width: 150%;
  height: 150%;
  filter: saturate(0.7) brightness(0.62) contrast(1.08);
}

.immersive-hero__copy,
.immersive-hero__ledger {
  position: relative;
  z-index: 1;
}

.immersive-hero__copy {
  max-width: 660px;
  padding: clamp(34px, 6vw, 74px);
}

.immersive-hero__copy h1 {
  max-width: 8.8ch;
  margin: 12px 0 0;
  color: #fff5e8;
  font-size: clamp(4.2rem, 9vw, 7.4rem);
  line-height: 0.88;
}

.immersive-hero__copy p:not(.eyebrow) {
  max-width: 58ch;
  color: rgba(255, 245, 232, 0.78);
  line-height: 1.85;
}

.immersive-hero__ledger {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 34px 34px;
}

.immersive-hero__ledger article,
.signature-band__item,
.featured-project,
.featured-project__copy {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  background: rgba(255, 248, 242, 0.08);
  backdrop-filter: blur(18px);
}

.immersive-hero__ledger article {
  padding: 18px;
  color: #fff5e8;
}

.immersive-hero__ledger span {
  color: var(--bronze-strong);
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
}

.immersive-hero__ledger strong {
  display: block;
  margin-top: 6px;
  font-size: 1rem;
}

.immersive-hero__ledger p {
  margin: 8px 0 0;
  color: rgba(255, 245, 232, 0.72);
  line-height: 1.72;
}

.signature-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 34px 0;
}

.signature-band__item {
  padding: 22px;
}

.signature-band__item h2,
.featured-project__copy h2 {
  margin: 10px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.3vw, 3rem);
  line-height: 0.98;
}

.signature-band__item p:last-child,
.featured-project__copy p:last-child {
  color: rgba(23, 20, 16, 0.7);
  line-height: 1.8;
}

.visionary--immersive {
  grid-template-columns: 1.12fr 0.88fr;
}

.curations--runway .section-heading-block {
  max-width: 62ch;
}

.featured-project {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 0;
  margin-top: 24px;
  cursor: pointer;
}

.featured-project img {
  min-height: 420px;
  object-fit: cover;
}

.featured-project__copy {
  padding: 28px;
  border: none;
  border-left: 1px solid rgba(23, 20, 16, 0.1);
  border-radius: 0;
  background: rgba(255, 248, 242, 0.8);
}

.legacy--board {
  display: grid;
  gap: 22px;
}

.principles,
.visionary,
.curations,
.legacy,
.visit-banner,
.subpage-main {
  padding-bottom: 34px;
}

.section-heading-block {
  max-width: 68ch;
}

.section-heading-block h2,
.visionary-copy h2,
.visit-banner h2,
.subpage-hero h1,
.visit-form-card h2,
.visit-sidebar h2 {
  margin-top: 12px;
  font-size: clamp(2.7rem, 5vw, 4.5rem);
  line-height: 0.96;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.principle-tile {
  overflow: hidden;
}

.principle-tile img {
  height: 280px;
  object-fit: cover;
}

.principle-tile div,
.project-card div {
  padding: 18px;
}

.principle-tile h3,
.project-card h3,
.legacy-rail h3 {
  margin: 8px 0 0;
  font-size: 2rem;
  line-height: 1.02;
}

.visionary {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 24px;
  align-items: stretch;
}

.visionary-media {
  padding: 18px;
}

.visionary-media img {
  height: 100%;
  min-height: 520px;
  border-radius: 22px;
  object-fit: cover;
}

.visionary-copy {
  padding: 26px;
}

.visionary-copy blockquote {
  margin: 24px 0 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.98;
}

.signature-line {
  display: grid;
  gap: 2px;
  margin-top: 18px;
}

.signature-line strong {
  font-size: 1.04rem;
}

.signature-line span {
  color: rgba(23, 20, 16, 0.58);
}

.accordion-gallery {
  display: flex;
  gap: 14px;
  min-height: 460px;
  margin-top: 24px;
}

.accordion-gallery__item {
  position: relative;
  flex: 1 1 0;
  border: none;
  border-radius: 30px;
  background: var(--paper-panel-strong);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: flex 260ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.accordion-gallery__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(23, 20, 16, 0.06), rgba(23, 20, 16, 0.54)),
    var(--gallery-image) center / cover no-repeat;
}

.accordion-gallery__item.is-active {
  flex: 2.25 1 0;
}

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

.accordion-gallery__item span,
.accordion-gallery__item small {
  position: absolute;
  left: 24px;
  color: #fff7eb;
  z-index: 1;
}

.accordion-gallery__item span {
  bottom: 48px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.accordion-gallery__item small {
  bottom: 24px;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.project-card {
  overflow: hidden;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.project-card:hover {
  transform: translateY(-4px);
}

.project-card img {
  height: 300px;
  object-fit: cover;
}

.project-card small,
.legacy-rail span,
.visit-form-card label span,
.policy-card strong {
  color: rgba(23, 20, 16, 0.58);
}

.legacy {
  display: grid;
  gap: 22px;
}

.legacy-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.legacy-rail article,
.visit-sidebar__card,
.policy-card {
  padding: 22px;
}

.legacy-rail span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.legacy-rail p {
  margin: 10px 0 0;
}

.visit-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  width: min(1380px, calc(100% - 24px));
  margin: 0 auto 42px;
  padding: 24px;
}

.site-footer__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.site-footer__links h3 {
  margin: 0 0 12px;
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
}

.site-footer__links a {
  display: block;
  margin-top: 8px;
  color: rgba(23, 20, 16, 0.76);
}

.subpage-main {
  padding-top: 34px;
}

.subpage-hero {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 24px;
  padding: 28px;
  margin-bottom: 24px;
}

.video-card {
  padding: 18px;
  transform-style: preserve-3d;
  transform: perspective(1600px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 180ms ease;
}

.video-card__surface {
  min-height: 380px;
}

.visit-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

.visit-form-card {
  padding: 24px;
}

.section-heading-block--compact h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

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

.visit-form-card label {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.visit-form-card label span {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.visit-form-card input,
.visit-form-card textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(23, 20, 16, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  outline: none;
}

.visit-form-card input:focus,
.visit-form-card textarea:focus {
  border-color: rgba(191, 141, 87, 0.56);
  box-shadow: 0 0 0 4px rgba(191, 141, 87, 0.12);
}

.visit-sidebar {
  display: grid;
  gap: 18px;
}

.visit-sidebar ol {
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(23, 20, 16, 0.7);
  line-height: 1.8;
}

.visit-sidebar a {
  display: inline-block;
  margin-top: 12px;
  font-size: 1.1rem;
  font-weight: 800;
}

.policy-layout {
  display: grid;
}

.policy-card h2 {
  margin-top: 24px;
  font-size: 2rem;
}

.policy-card ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.concierge-trigger {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 65;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: none;
  border-radius: 999px;
  background: rgba(23, 20, 16, 0.92);
  color: #fff7eb;
  box-shadow: var(--shadow-strong);
  cursor: pointer;
}

.concierge-trigger__label {
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 247, 235, 0.68);
}

.concierge-trigger__icon {
  color: var(--bronze-strong);
  font-weight: 800;
}

.concierge-panel {
  position: fixed;
  right: 22px;
  bottom: 94px;
  z-index: 66;
  width: min(360px, calc(100vw - 24px));
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.concierge-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.concierge-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.concierge-panel h2 {
  margin: 12px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1.02;
}

.concierge-panel p {
  color: rgba(23, 20, 16, 0.72);
  line-height: 1.75;
}

.concierge-panel__close,
.lightbox__close {
  border: none;
  background: transparent;
  color: rgba(23, 20, 16, 0.6);
  font-weight: 700;
  cursor: pointer;
}

.lightbox {
  width: min(1100px, calc(100% - 24px));
  padding: 16px;
  background: rgba(22, 19, 16, 0.92);
  color: #fff7eb;
}

.lightbox::backdrop {
  background: rgba(13, 12, 11, 0.7);
  backdrop-filter: blur(6px);
}

.lightbox figure {
  margin: 0;
}

.lightbox img {
  border-radius: 22px;
  max-height: 76vh;
  object-fit: contain;
}

.lightbox figcaption {
  margin-top: 12px;
  color: rgba(255, 247, 235, 0.8);
}

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

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

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 1120px) {
  .hero,
  .visionary,
  .subpage-hero,
  .visit-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-stage,
  .video-chamber,
  .video-chamber__surface {
    min-height: 540px;
  }

  .project-grid,
  .principle-grid,
  .legacy-rail,
  .site-footer__links,
  .signature-band,
  .immersive-hero__ledger {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-project,
  .visionary--immersive {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .site-header {
    border-radius: 30px;
    padding: 16px 18px;
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }

  .hero,
  .subpage-main {
    padding-top: 24px;
  }

  .hero-metrics,
  .principle-grid,
  .project-grid,
  .legacy-rail,
  .form-grid,
  .site-footer__links,
  .signature-band,
  .immersive-hero__ledger,
  .visit-banner {
    grid-template-columns: 1fr;
  }

  .accordion-gallery {
    flex-direction: column;
    min-height: auto;
  }

  .accordion-gallery__item,
  .accordion-gallery__item.is-active {
    min-height: 220px;
    flex: 1 1 auto;
  }

  .video-chamber {
    padding: 18px;
  }

  .video-chamber__surface {
    min-height: 420px;
  }

  .video-chamber__card {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    max-width: none;
    margin-top: 14px;
  }

  .video-chamber__meta {
    position: relative;
    right: auto;
    left: auto;
    bottom: auto;
    display: grid;
    margin-top: 14px;
  }

  .immersive-hero {
    min-height: auto;
  }

  .immersive-hero__copy {
    padding: 30px 22px 22px;
  }

  .featured-project img {
    min-height: 280px;
  }

  .concierge-trigger {
    right: 12px;
    bottom: 12px;
    padding: 14px 16px;
  }

  .concierge-trigger__label {
    display: none;
  }

  .concierge-panel {
    right: 12px;
    bottom: 78px;
  }
}