*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-text: #1a1a1a;
  --color-text-light: #f5f5f5;
  --color-bg: #ffffff;
  --color-accent: #c8a96e;
  --color-text-dark: #64564e;
  --header-height: 72px;
}

@font-face {
  font-family: "FSSienaWeb-Light";
  src: url("../../fonts/FSSienaWeb-Light.woff2") format("woff2"),
    url("../../fonts/FSSienaWeb-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "FSSienaWeb-ExtraLight";
  src: url("../../fonts/FSSienaWeb-ExtraLight.woff2") format("woff2"),
    url("../../fonts/FSSienaWeb-ExtraLight.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  font-family: FSSienaWeb-Light, sans-serif;
  line-height: 1.6;
  color: var(--color-text-dark);

}

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

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

/* Header */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 0 3.5rem;
  background-color: #fff;
}

.site-header__logo img {
  height: 28px;
  width: auto;
}

.home-page .site-header__logo img {
  height: 100%;
  width: 100%;
}

/* Home logo reveal */

.logo-reveal {
  height: 100vh;
  height: 100dvh;
  pointer-events: none;
}

html.logo-reveal-scrolling {
  scroll-behavior: auto;
}

.logo-reveal__scroll {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  z-index: 51;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #fff;
  transform: translateX(-50%);
  text-decoration: none;
  pointer-events: auto;
}

.logo-reveal.is-complete .logo-reveal__scroll {
  pointer-events: none;
}

.logo-reveal__scroll svg {
  display: block;
  width: 32px;
  height: 32px;
  animation: logo-reveal-scroll-bounce 1.8s ease-in-out infinite;
}

@keyframes logo-reveal-scroll-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

.logo-reveal__bg {
  position: fixed;
  inset: 0;
  z-index: 50;
  background-color: #8a6a45;
  background-image: url("../images/bronze_background.avif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}

.home-page .site-header {
  background-color: transparent;
  transition: none;
}

.home-page .site-header.is-revealed {
  background-color: #fff;
}

.home-page .site-header .burger {
  margin-left: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.home-page .site-header.is-revealed .burger {
  opacity: 1;
  pointer-events: auto;
}

.home-page .logo-reveal__logo {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
  display: grid;
  grid-template: 1fr / 1fr;
  width: auto;
  max-width: none;
  height: auto;
  max-height: none;
  transform-origin: 0 0;
  opacity: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.home-page.is-logo-ready .logo-reveal__logo {
  opacity: 1;
}

.home-page .logo-reveal__logo-img {
  grid-area: 1 / 1;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  min-width: 0;
  object-fit: contain;
  object-position: center;
}

.home-page .logo-reveal__logo-img--white {
  opacity: 1;
}

.home-page .logo-reveal__logo-img--dark {
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  .logo-reveal {
    height: 0;
  }

  .logo-reveal__bg,
  .logo-reveal__scroll {
    display: none;
  }

  .logo-reveal__scroll svg {
    animation: none;
  }

  .home-page .site-header {
    background-color: #fff;
  }

  .home-page .site-header .burger {
    opacity: 1;
    pointer-events: auto;
  }

  .home-page .logo-reveal__logo {
    position: static;
    display: block;
    height: auto;
    transform: none;
  }

  .home-page .logo-reveal__logo-img {
    height: 28px;
  }

  .home-page .logo-reveal__logo-img--white {
    display: none;
  }

  .home-page .logo-reveal__logo-img--dark {
    opacity: 1;
  }
}

/* Burger menu */

.burger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  --burger-gap: 4px;
  --burger-line-height: 2px;
  gap: var(--burger-gap);
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--color-text-dark);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.burger__line {
  display: block;
  width: 22px;
  height: var(--burger-line-height);
  background-color: var(--color-text-dark);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger.is-active .burger__line:nth-child(1) {
  transform: translateY(calc(var(--burger-gap) + var(--burger-line-height))) rotate(45deg);
}

.burger.is-active .burger__line:nth-child(2) {
  opacity: 0;
}

.burger.is-active .burger__line:nth-child(3) {
  transform: translateY(calc(-1 * (var(--burger-gap) + var(--burger-line-height)))) rotate(-45deg);
}

/* Mobile nav */

.mobile-nav {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0rem 3rem 3rem;
  background-color: rgba(0, 0, 0, 0.85);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
}

.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  list-style: none;
  width: 100%;
  margin: 0;
  padding: 0;
  margin-top:1rem
}

.mobile-nav__item {
  display: grid;
  text-decoration: none;
  color: var(--color-text-light);
}

.mobile-nav__item-img {
  display: grid;
  width: 100%;
  grid-area: 1 / 1;
  overflow: hidden;
  background-color: #333;
}

.mobile-nav__item-img img {
  grid-area: 1 / 1;
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: opacity 0.2s ease;
}

.mobile-nav__item-img--hover {
  opacity: 0;
}

.mobile-nav__item:hover .mobile-nav__item-img--default,
.mobile-nav__item:focus-visible .mobile-nav__item-img--default,
.mobile-nav__item:focus-within .mobile-nav__item-img--default {
  opacity: 0;
}

.mobile-nav__item:hover .mobile-nav__item-img--hover,
.mobile-nav__item:focus-visible .mobile-nav__item-img--hover,
.mobile-nav__item:focus-within .mobile-nav__item-img--hover {
  opacity: 1;
}

.mobile-nav__item-label {
  grid-area: 1 / 1;
  place-self: center;
  z-index: 2;
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.mobile-nav__item:hover .mobile-nav__item-label,
.mobile-nav__item:focus-visible .mobile-nav__item-label,
.mobile-nav__item:focus-within .mobile-nav__item-label {
  opacity: 1;
  visibility: visible;
}

.mobile-nav__item:not(.mobile-nav__item--dual):hover .mobile-nav__item-label,
.mobile-nav__item:not(.mobile-nav__item--dual):focus-visible .mobile-nav__item-label,
.mobile-nav__item-label:hover,
.mobile-nav__item-label:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.mobile-nav__item-labels {
  grid-area: 1 / 1;
  place-self: center;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.mobile-nav__item--dual .mobile-nav__item-label {
  grid-area: auto;
  place-self: auto;
  position: relative;
  opacity: 1;
  visibility: visible;
  color: inherit;
  text-decoration: none;
}

.mobile-nav__item--dual .mobile-nav__item-label:hover,
.mobile-nav__item--dual .mobile-nav__item-label:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.mobile-nav__item--dual:hover .mobile-nav__item-labels,
.mobile-nav__item--dual:focus-within .mobile-nav__item-labels {
  opacity: 1;
  visibility: visible;
}

@media (hover: none) {
  .mobile-nav__item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .mobile-nav__item-img {
    width: 100%;
  }

  .mobile-nav__item-img--hover {
    display: none;
  }

  .mobile-nav__item-label {
    position: static;
    grid-area: unset;
    place-self: auto;
    opacity: 1;
    visibility: visible;
    padding: 0.25rem 0 0;
  }

  .mobile-nav__item-labels {
    position: static;
    grid-area: unset;
    place-self: auto;
    opacity: 1;
    visibility: visible;
    gap: 0.15rem;
  }

  .mobile-nav__item--dual .mobile-nav__item-label {
    padding: 0;
  }
}

/* Hero video */

.hero-video {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  padding: 0 3rem;
  background-color: #fff;
}

.hero-video.hero-video--home {
  height: auto;
  min-height: 0;
  padding: var(--header-height) 0 0;
  margin: 0;
}

.hero-video--home .hero-video__inner {
  align-items: flex-start;
  height: auto;
  min-height: 0;
}

.hero-video--home .hero-video__media {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top center;
}

.hero-video__sound-toggle {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--color-text);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-text);
  cursor: pointer;
}

.hero-video__sound-toggle-icon {
  display: none;
  width: 20px;
  height: 20px;
}

.hero-video__sound-toggle-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-video__sound-toggle .hero-video__sound-toggle-icon--muted {
  display: block;
}

.hero-video__sound-toggle.is-unmuted .hero-video__sound-toggle-icon--muted {
  display: none;
}

.hero-video__sound-toggle.is-unmuted .hero-video__sound-toggle-icon--unmuted {
  display: block;
}



.location-map {
  width: 100%;
  height: 100vh;
  height: auto;
  overflow: hidden;
}

.location-map__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.location-map--with-panel {
  background-color: #cfcbc3;
}

.location-map--with-panel .location-map__inner {
  display: flex;
  align-items: stretch;
  min-height: clamp(20rem, 70vh, 48rem);
}

.location-map__panel {
  flex: 0 0 20%;
  padding: 2rem 0 2rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1rem;
}



.location-map__panel-title {
  margin: 0;
  font-size: 1.9rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-map__panel-text-large {
  margin: 0;
  font-size: 1.9rem;
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.location-map__amenities-grid {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 0.5rem;
}

#location-amenities-map .location-map__inner {
  display: grid;
  grid-template-columns: minmax(18rem, 30%) minmax(0, 1fr);
  column-gap: 1.25rem;
  align-items: stretch;
  min-height: clamp(20rem, 70vh, 48rem);
}

#location-amenities-map .location-map__panel {
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: start;
  align-self: stretch;
  min-width: 0;
  min-height: 0;
  height: auto;
  max-width: 100%;
  overflow: hidden;
  padding-right: 0.5rem;
}

#location-amenities-map .location-map__panel-intro {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}

#location-amenities-map .location-map__amenities-grid {
  align-self: end;
  margin-top: 0;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

#location-amenities-map .location-map__media {
  min-width: 0;
  overflow: hidden;
}

.location-map__amenities-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.location-map__amenities-icon {
  display: block;
  width: 1.75rem;
  height: 1.75rem;
  flex-shrink: 0;
  object-fit: contain;
}

.location-map__amenities-label {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-size: 1.35rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.location-map__amenities-toggle {
  margin-left: auto;
  flex-shrink: 0;
}



.location-map--with-panel .location-map__media {
  flex: 1 1 80%;
  min-width: 0;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  align-self: stretch;
  min-height: 0;
}

.location-map__stack {
  display: grid;
  grid-template: 1fr / 1fr;
  place-items: center;
  width: 100%;
  max-height: clamp(20rem, 70vh, 48rem);
}

.location-map__stack .location-map__image,
.location-map__stack .location-map__layer {
  grid-area: 1 / 1;
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: clamp(20rem, 70vh, 48rem);
  object-fit: contain;
  object-position: right center;
}

.location-map__layer[hidden] {
  display: none !important;
}

.location-map--with-panel .location-map__image {
  width: 100%;
  height: auto;
  max-height: clamp(20rem, 70vh, 48rem);
  object-fit: contain;
  object-position: right center;
}

#location-connectivity-map .location-map__media > .location-map__image {
  height: 100%;
  max-height: none;
  object-fit: contain;
  object-position: right center;
}

#location-amenities-map .location-map__stack {
  height: 100%;
  min-height: 100%;
  max-height: none;
  place-items: stretch;
  align-self: stretch;
}

#location-amenities-map .location-map__stack .location-map__image,
#location-amenities-map .location-map__stack .location-map__layer {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  object-position: right center;
}

@media (max-width: 1100px) {
  #location-amenities-map .location-map__inner {
    grid-template-columns: minmax(16rem, 34%) minmax(0, 1fr);
    column-gap: 1rem;
  }

  #location-amenities-map .location-map__panel {
    padding-left: 1.5rem;
    padding-right: 0.75rem;
  }

  #location-amenities-map .location-map__amenities-label {
    font-size: 1.1rem;
    letter-spacing: 0.04em;
  }
}

@media (max-width: 900px) {
  #location-amenities-map .location-map__inner {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: auto;
    column-gap: 0;
  }

  #location-amenities-map .location-map__panel {
    display: flex;
    flex-direction: column;
    height: auto;
    overflow: visible;
    padding: 1.5rem 1rem;
  }

  #location-amenities-map .location-map__amenities-grid {
    align-self: auto;
    margin-top: 1rem;
  }

  #location-amenities-map .location-map__media {
    min-height: clamp(18rem, 55vw, 32rem);
  }
}

@media (max-width: 768px) {
  .location-map--with-panel .location-map__inner {
    flex-direction: column;
  }

  .location-map__panel {
    flex: none;
    width: 100%;
    padding: 1.5rem 1rem;
  }

  .location-map--with-panel .location-map__media {
    flex: none;
    width: 100%;
  }

  .location-map--with-panel .location-map__image {
    object-position: center;
  }

  #location-connectivity-map .location-map__media {
    min-height: clamp(18rem, 55vw, 32rem);
  }

  #location-connectivity-map .location-map__media > .location-map__image {
    object-position: center;
  }

  #location-amenities-map .location-map__inner {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: auto;
  }

  #location-amenities-map .location-map__panel {
    display: flex;
    flex-direction: column;
    height: auto;
    overflow: visible;
  }

  #location-amenities-map .location-map__amenities-grid {
    align-self: auto;
    margin-top: 1rem;
  }

  #location-amenities-map .location-map__media {
    min-height: clamp(18rem, 55vw, 32rem);
  }

  #location-amenities-map .location-map__stack .location-map__image,
  #location-amenities-map .location-map__stack .location-map__layer {
    object-position: center;
  }
}

.location-restaurants {
  margin: 0rem;
  background-color: #d56235;
  display: flex;
  justify-content: center;
  align-items: center;
}

.location-restaurants__image {
  display: block;
  width: 100%;
  height: auto;
}

.location-restaurants--business {
  display: block;
  padding: 3rem;
}

.location-restaurants--venues {
  position: relative;
  display: block;
  padding: 0 3rem 0 0;
  overflow: hidden;
}

.location-venues {
  position: relative;
  padding: 0 0 0 3rem;
}

.location-venues__heading {
  position: absolute;
  top: 2rem;
  left: 3rem;
  z-index: 4;
  margin: 0;
  font-size: 1.9rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}

.location-venues__layout {
  position: relative;
  margin: 0;
  padding: 0;
}

.location-venues__list {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: fit-content;
  max-width: 100%;
}

.location-venues__list li {
  margin: 0;
  padding: 0;
  font-family: FSSienaWeb-ExtraLight, sans-serif;
  font-size: clamp(2.25rem, 7.5vw, 7rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
}

.location-venues__list li:first-child {
  margin-top: 0em;
}

.location-venues__list li:last-child {
  margin-bottom: 0em;
}

.location-venues__list--reveal li {
  opacity: 0;
  transform: translateY(0.65rem);
}

.location-venues__list--reveal.is-visible li {
  animation: hero-text-reveal 0.55s ease-out forwards;
}

.location-venues__list--reveal.is-visible li:nth-child(1) { animation-delay: 0.05s; }
.location-venues__list--reveal.is-visible li:nth-child(2) { animation-delay: 0.12s; }
.location-venues__list--reveal.is-visible li:nth-child(3) { animation-delay: 0.19s; }
.location-venues__list--reveal.is-visible li:nth-child(4) { animation-delay: 0.26s; }
.location-venues__list--reveal.is-visible li:nth-child(5) { animation-delay: 0.33s; }
.location-venues__list--reveal.is-visible li:nth-child(6) { animation-delay: 0.4s; }
.location-venues__list--reveal.is-visible li:nth-child(7) { animation-delay: 0.47s; }
.location-venues__list--reveal.is-visible li:nth-child(8) { animation-delay: 0.54s; }
.location-venues__list--reveal.is-visible li:nth-child(9) { animation-delay: 0.61s; }
.location-venues__list--reveal.is-visible li:nth-child(10) { animation-delay: 0.68s; }

@keyframes location-venues-left-reveal {
  from {
    opacity: 0;
    transform: translateY(calc(-42% + 2rem));
  }

  to {
    opacity: 1;
    transform: translateY(-42%);
  }
}

@keyframes location-venues-rise {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes location-venues-caption-reveal {
  from {
    opacity: 0;
    transform: translateY(calc(-30% + 1.5rem));
  }

  to {
    opacity: 1;
    transform: translateY(-30%);
  }
}

.location-venues__image {
  display: block;
  height: auto;
  object-fit: cover;
}

.location-venues__image--left {
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 1;
  width: min(33%, 26.5rem);
  opacity: 0;
  transform: translateY(calc(-42% + 2rem));
}

.location-restaurants--venues.is-visible .location-venues__image--left {
  animation: location-venues-left-reveal 0.75s ease-out 0.35s forwards;
}

.location-venues__image--right {
  width: 100%;
  margin: 0;
  opacity: 0;
  transform: translateY(2rem);
}

.location-restaurants--venues.is-visible .location-venues__image--right {
  animation: location-venues-rise 0.75s ease-out 0.75s forwards;
}

.location-venues__right {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: min(30%, 24rem);
}

.location-venues__caption {
  position: relative;
  z-index: 3;
  max-width: 100%;
  margin: 0;
  padding: 0;
  font-size: clamp(0.8125rem, 1.9vw, 1.95rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-align: left;
  color: #fff;
  opacity: 0;
  transform: translateY(calc(-30% + 1.5rem));
}

.location-restaurants--venues.is-visible .location-venues__caption {
  animation: location-venues-caption-reveal 0.7s ease-out 1.2s forwards;
}

@media (prefers-reduced-motion: reduce) {
  .location-venues__list--reveal li,
  .location-venues__image--left,
  .location-venues__image--right,
  .location-venues__caption {
    opacity: 1;
    animation: none !important;
  }

  .location-venues__list--reveal li {
    transform: none;
  }

  .location-venues__image--left {
    transform: translateY(-42%);
  }

  .location-venues__image--right {
    transform: none;
  }

  .location-venues__caption {
    transform: translateY(-30%);
  }
}

.location-restaurants__content {
  width: 100%;
  color: #fff;
  text-align: left;
}

.location-restaurants__heading {
  margin: 0 0 1rem;
  font-size: 1.9rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}

.location-restaurants__intro {
  margin: 0 0 2.5rem;
  max-width: 42rem;
  font-size: 1.9rem;
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: #fff;
}

.location-restaurants__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 1.5rem 2rem;
  width: 100%;
}

.location-restaurants__grid-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding:2rem;
}




.location-restaurants__grid-cell.boa img {
  display: block;
  max-width: 100%;
  max-height: 3rem;
  width: auto;
  height: auto;
  object-fit: contain;
}

.location-restaurants__grid-cell.bny img {
  display: block;
  max-width: 100%;
  max-height: 2rem;
  width: auto;
  height: auto;
  object-fit: contain;
}

.location-restaurants__grid-cell.crs img {
  display: block;
  max-width: 100%;
  max-height: 5rem;
  width: auto;
  height: auto;
  object-fit: contain;
}

.location-restaurants__grid-cell.fidelity img {
  display: block;
  max-width: 100%;
  max-height: 3.8rem;
  width: auto;
  height: auto;
  object-fit: contain;
}

.location-restaurants__grid-cell.goldman-sachs img {
  display: block;
  max-width: 100%;
  max-height: 3.8rem;
  width: auto;
  height: auto;
  object-fit: contain;
}

.location-restaurants__grid-cell.goodwin img {
  display: block;
  max-width: 100%;
  max-height: 2.5rem;
  width: auto;
  height: auto;
  object-fit: contain;
}

  .location-restaurants__grid-cell.hogan-lovells img {
    display: block;
    max-width: 100%;
    max-height: 4.8rem;
    width: auto;
    height: auto;
    object-fit: contain;
  } 

  .location-restaurants__grid-cell.hsbc img {
    display: block;
    max-width: 100%;
    max-height: 3rem;
    width: auto;
    height: auto;
    object-fit: contain;
  }
  .location-restaurants__grid-cell.ice img {
    display: block;
    max-width: 100%;
    max-height: 4.8rem;
    width: auto;
    height: auto;
    object-fit: contain;
  }
  .location-restaurants__grid-cell.kl-gates img {
    display: block;
    max-width: 100%;
    max-height: 2.5rem;
    width: auto;
    height: auto;
    object-fit: contain;
  }
  .location-restaurants__grid-cell.lseg img {  
    display: block;
    max-width: 100%;
    max-height: 2.8rem;
    width: auto;
    height: auto;
    object-fit: contain;
  }
  .location-restaurants__grid-cell.mizuho img {    
    display: block;
    max-width: 100%;
    max-height: 2.8rem;
    width: auto;
    height: auto;
    object-fit: contain;
  }
  .location-restaurants__grid-cell.petronas img {  
    display: block;
    max-width: 100%;
    max-height: 3.3rem;
    width: auto;
    height: auto;
    object-fit: contain;
  }
  .location-restaurants__grid-cell.skate-street img {  
    display: block;
    max-width: 100%;
    max-height: 2.8rem;
    width: auto;
    height: auto;
    object-fit: contain;
  }
  .location-restaurants__grid-cell.t-rowe-price img {  
    display: block;
    max-width: 100%;
    max-height: 3rem;
    width: auto;
    height: auto;
    object-fit: contain;
  }

















@media (max-width: 768px) {
  .location-restaurants__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 1rem;
  }

  .location-restaurants__grid-cell {
    padding: 1rem 0.5rem;
    min-height: auto;
  }
}

.location-amenities-slider {
  width: 100%;
  padding: 0.5rem 0 3rem 0;
  background-color: #e9e8d6;
  overflow: hidden;
}

.location-amenities-slider__carousel {
  width: 100%;
}

.location-amenities-slider__carousel .flickity-slider {
  display: flex;
  align-items: flex-start;
}

.location-amenities-slider__cell {
  width: 20%;
  margin-right: 0.5rem;
}

.location-amenities-slider__cell img {
  display: block;
  width: 100%;
  aspect-ratio: 1000 / 1415;
  object-fit: cover;
}

.location-amenities-slider__caption {
  margin: 0.75rem 0 0;
  font-family: FSSienaWeb-Light, sans-serif;
  font-size: 0.775rem;
  line-height: 1.3;
  letter-spacing: 0.15em;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-text-dark);
}

.location-amenities-slider .flickity-button {
  background: transparent;
}

.location-amenities-slider .flickity-button-icon {
  fill: var(--color-text-dark);
}

.location-amenities-slider--variable .location-amenities-slider__cell {
  width: auto;
}

.location-amenities-slider--variable .location-amenities-slider__cell--narrow {
  width: 14%;
}

.location-amenities-slider--variable .location-amenities-slider__cell--mid {
  width: 22%;
}

.location-amenities-slider--variable .location-amenities-slider__cell--wide {
  width: 34%;
}

.location-amenities-slider--variable .location-amenities-slider__cell img {
  aspect-ratio: auto;
  height: clamp(18rem, 42vh, 28rem);
  width: 100%;
  object-fit: cover;
}

.hero-video__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-video__media {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.hero-video.hero-video--image {
  height: auto;
  padding: var(--header-height) 3rem 0;
}

.hero-video--image .hero-video__inner {
  height: auto;
}

.hero-video--image .hero-video__media {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.hero-video.hero-video--statement {
  padding: var(--header-height) 0 0;
}

.hero-video--statement .hero-video__inner {
  position: relative;
  display: block;
  min-height: clamp(28rem, 75vh, 52rem);
  overflow: hidden;
}

.hero-video--statement .hero-video__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-text__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  min-height: clamp(28rem, 75vh, 52rem);
  padding: clamp(2rem, 5vw, 4rem) clamp(2rem, 6vw, 5rem);
  padding-bottom: clamp(2.5rem, 8vh, 5rem);
  color: #fff;
  pointer-events: none;
}

.hero-text__title-1,
.hero-text__title-2,
.hero-text__title-3 {
  margin: 0;
  font-family: FSSienaWeb-ExtraLight, sans-serif;
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-text__title-1,
.hero-text__title-3 {
  font-size: clamp(3.25rem, 10.5vw, 8.25rem);
}

.hero-text__middle {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  width: 100%;
  max-width: 54rem;
  margin: -0.05em 0;
}

.hero-text__title-2 {
  flex-shrink: 0;
  font-size: clamp(2.75rem, 8.5vw, 6.75rem);
  line-height: 1;
}

.hero-text__statement {
  margin: 0;
  max-width: 22rem;
  font-family: FSSienaWeb-Light, sans-serif;
  font-size: clamp(0.8125rem, 1.35vw, 1rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.hero-video--statement-right .hero-text__content {
  align-items: flex-end;
}

.hero-video--statement-right .hero-text__title-1,
.hero-video--statement-right .hero-text__title-2,
.hero-video--statement-right .hero-text__title-3 {
  text-align: right;
}

.hero-video--statement-right .hero-text__middle {
  flex-direction: row-reverse;
  justify-content: flex-start;
  align-self: flex-end;
  width: auto;
  max-width: min(54rem, 100%);
}



@keyframes hero-text-reveal {
  from {
    opacity: 0;
    transform: translateY(0.65rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-text__content--reveal .hero-text__title-1,
.hero-text__content--reveal .hero-text__title-2,
.hero-text__content--reveal .hero-text__title-3,
.hero-text__content--reveal .hero-text__statement {
  opacity: 0;
  animation: hero-text-reveal 0.75s ease-out forwards;
}

.hero-text__content--reveal .hero-text__title-1 {
  animation-delay: 0.15s;
}

.hero-text__content--reveal .hero-text__title-2 {
  animation-delay: 0.4s;
}

.hero-text__content--reveal .hero-text__title-3 {
  animation-delay: 0.65s;
}

.hero-text__content--reveal .hero-text__statement {
  animation-delay: 0.9s;
}

.hero-text__content--reveal .hero-text__title-1,
.hero-text__content--reveal .hero-text__title-3 {
  font-size: clamp(4.25rem, 13.65vw, 10.75rem);
}

.hero-text__content--reveal .hero-text__title-2 {
  font-size: clamp(3.6rem, 11vw, 8.75rem);
}

.hero-text__content--reveal .hero-text__statement {
  max-width: 28.6rem;
  font-size: clamp(1.05rem, 2vw, 1.8rem);
}

.hero-text__content--reveal .hero-text__middle {
  max-width: 70rem;
  gap: clamp(1.25rem, 3.9vw, 3.25rem);
}

@media (prefers-reduced-motion: reduce) {
  .hero-text__content--reveal .hero-text__title-1,
  .hero-text__content--reveal .hero-text__title-2,
  .hero-text__content--reveal .hero-text__title-3,
  .hero-text__content--reveal .hero-text__statement {
    opacity: 1;
    animation: none;
    transform: none;
  }
}

.hero-video__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
}

.hero-video__title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-light);
  text-align: center;
  padding: 0 1.5rem;
}

/* Schedule page */

.schedule-section {
  background-color: #cfcbc3;
  margin:0rem 
}

.schedule-section__inner {
  position: relative;
  padding: clamp(32px, 5vw, 32px) 3rem;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: auto;
  width: 100%;
}

.schedule-grid__cell {
  padding: 1.5rem 0.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 1.2rem;
  line-height: 1.4;
  color: var(--color-text-dark);
}

.schedule-grid__cell span {
font-weight: 700;
}

.schedule-grid__level-group {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: 1 / -1;
  transition: background-color 0.15s ease;
  cursor: pointer;
}

.schedule-grid__level-group:hover,
.schedule-grid__level-group:active,
.schedule-grid__level-group.is-active {
  background-color: rgba(0, 0, 0, 0.1);
}

.schedule-grid__level-group .schedule-grid__cell {
  background-color: transparent;
}

.schedule-grid__cell--level-span {
  grid-row: span 2;
  display: flex;
  align-items: center;
}

.schedule-grid__cell--split-line {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding:0.5rem 0.75rem
}

.schedule-grid__cell--action {
  display: flex;
  align-items: center;
}

.schedule-grid .btn-pill {
 
  margin-left:auto
}

button.btn-pill {
  appearance: none;
}

.schedule-grid__accordion {
  grid-column: 1 / -1;
}

.plan-subtitle-source,
.plan-copy-source {
  display: none;
}

.schedule-grid__accordion .plan-panel {
  position: relative;
  background-color: #cfcbc3;
  border-bottom: 1px solid var(--color-text);
}

.schedule-grid__accordion .plan-popup__dialog {
  height: auto;
  min-height: 0;
  grid-template-rows: auto auto;
  padding: 2rem 0rem;
}

.schedule-grid__accordion .plan-popup__image-stack {
  max-width: min(100%, 936px);
  max-height: min(84.5vh, 676px);
  overflow: hidden;
}

.schedule-grid__accordion .plan-popup__image {
  max-width: 100%;
  max-height: min(84.5vh, 676px);
}

.schedule-grid__accordion .plan-popup__top {
  position: relative;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 2rem;
}

.schedule-grid__accordion .plan-popup__top:has(.plan-popup__position-image) {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.schedule-grid__accordion .plan-popup__header-left:not(:has(.plan-popup__position-image)) {
  display: none;
}

.schedule-grid__accordion .plan-popup__media {
  align-items: stretch;
  justify-self: stretch;
  min-width: 0;
}

.schedule-grid__accordion .plan-popup__content {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(1rem, 2vw, 2rem);
  width: 100%;
  min-width: 0;
}

.schedule-grid__accordion .plan-popup__copy {
  position: static;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
  transform: none;
  z-index: 2;
  flex: 0 0 auto;
  width: min(14rem, 100%);
  max-width: 14rem;
  min-width: 0;
  margin: 0;
  text-align: left;
}

.schedule-grid__accordion .plan-popup__copy[hidden] {
  display: none !important;
}

.schedule-grid__accordion .plan-popup__image-stack {
  flex: 1 1 auto;
  min-width: 0;
}

@media (max-width: 1024px) {
  .schedule-grid__accordion .plan-popup__content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .schedule-grid__accordion .plan-popup__image-stack {
    order: 1;
    max-height: min(70vh, 560px);
  }

  .schedule-grid__accordion .plan-popup__image {
    max-height: min(70vh, 560px);
  }

  .schedule-grid__accordion .plan-popup__copy {
    position: static;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none;
    order: 2;
    flex: none;
    width: 100%;
    max-width: none;
    margin: 1rem 0 0;
  }
}

.plan-panel .btn-pill {
  background-color: var(--color-text-dark);

  color: #fff;
}

.plan-panel .btn-pill .btn-pill__arrow {
  border-color: #fff;
}

.plan-panel .btn-pill:hover {
  background-color: rgba(0, 0, 0, 1);
  background-blend-mode: multiply;
  color: #fff;
}

.plan-panel .btn-pill:hover .btn-pill__arrow {
  border-color: #fff;
}

.schedule-grid__accordion .plan-popup__header-right {
  gap: 1rem;
}

.schedule-grid__accordion .plan-popup__controls {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.25rem;
  width: 100%;
  margin-top: 0.25rem;
}

.schedule-grid__accordion .plan-popup__toggle-wrap,
.schedule-grid__accordion .plan-popup__feature-wrap {
  align-items: flex-end;
}

.schedule-grid__accordion .plan-popup__toggle-heading,
.schedule-grid__accordion .plan-popup__feature-heading {
  text-align: right;
  width: 100%;
}

.schedule-grid__accordion[data-accordion="ground"] .plan-popup__top {
  align-items: stretch;
}

.schedule-grid__accordion[data-accordion="ground"] .plan-popup__header-left {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  max-width: 13rem;
  min-height: 0;
}

.schedule-grid__accordion[data-accordion="ground"] .plan-popup__position-image {
  width: 85%;
  height: auto;
  margin-top: auto;
  align-self: flex-start;
}



.schedule-grid .btn-pill__arrow {
  width: 7px;
  height: 7px;
}

.schedule-grid__cell--header {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
  padding-bottom: 1.25rem;
  font-weight: 700;
}

.plan-copy-outer-wrapper {display:flex; width:100%;  }
.plan-copy-inner-left {flex:0 0 80%; }
.plan-copy-inner-right {flex:0 0 20%;  text-align:right}

@media (max-width: 768px) {
  .schedule-grid {
    grid-template-columns: repeat(6, minmax(7rem, 1fr));
  }
}


.plan-popup {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #cfcbc3;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.plan-popup.is-open {
  opacity: 1;
  visibility: visible;
}

.plan-popup__feature-overlay[hidden] {
  display: none !important;
}

.plan-popup__feature-overlay {
  position: absolute;
  inset: 0;
  z-index: 25;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 3rem;
  background-color: #cfcbc3;
}

.plan-popup__feature-stage {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 100%;
  max-height: 100%;
}

.plan-popup__feature-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  background-color: #ffffff;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.plan-popup__feature-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 1;
}

.plan-popup__close.plan-popup__feature-close {
  background-color: rgba(255, 255, 255, 0.5);
}

.plan-popup__feature-overlay-image {
  display: block;
  max-width: 100%;
  max-height: min(65vh, 520px);
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.plan-popup__feature-caption {
  margin: 0.75rem 0 0;
  max-width: 100%;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1.4;
  color: var(--color-text);
  text-align: left;
}

.plan-popup__dialog {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: stretch;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 1.25rem 3rem 1.25rem;
  gap: 1rem;
}

.end-of-journey-plan {
  width: 100%;
  margin-top: 0rem;
  padding-top:3rem;
  background-color: #cfcbc3;
}

.end-of-journey-plan .plan-popup__dialog {
  height: auto;
  min-height: clamp(24rem, 60vh, 44rem);
}

.end-of-journey-plan .plan-popup__top {
  grid-template-columns: minmax(0, 13rem) minmax(0, 1fr) minmax(0, 6.5rem);
  gap: 1rem 1.25rem;
  align-items: stretch;
}

.end-of-journey-plan .plan-popup__header-left {
  max-width: 13rem;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  height: 100%;
}

.end-of-journey-plan .location-map__amenities-grid {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  min-height: 0;
}

.end-of-journey-plan .end-of-journey-plan__image {
  width: 60%;
  height: auto;
  margin-top: auto;
  align-self: flex-start;
  margin-top:4rem
}

.end-of-journey-plan .plan-popup__header-right {
  max-width: 6.5rem;
}

.end-of-journey-plan .plan-popup__media {
  width: 100%;
  justify-self: stretch;
}

.end-of-journey-plan .plan-popup__content {
  width: 100%;
}

.end-of-journey-plan .plan-popup__image-stack,
.end-of-journey-plan .plan-popup__image {
  width: 100%;
  max-width: 100%;
  max-height: min(72vh, 680px);
}

.end-of-journey-plan .plan-popup__title {
  font-size: clamp(1.5rem, 1.8vw, 2rem);
  line-height: 1.1;
}

.plan-popup__top {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: start;
  gap: 1rem 2rem;
  width: 100%;
  min-height: 0;
}

.plan-popup__header-left {
  align-self: start;

}

.plan-popup__label {
  margin: 0;
  font-size: clamp(0.95rem, 2.5vw, 0.95rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.plan-popup__header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  justify-self: end;
  align-self: start;
  /* background-color: lightgreen; */
}

.plan-popup__title-group {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
  text-align: right;
}

.plan-popup__title {
  margin: 0;
  font-size: clamp(2.75rem, 2.5vw, 2.75rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
line-height:3rem
}

.plan-popup__subtitle {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.3;
}

.plan-popup__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-text);
  border-radius: 50%;
  background: transparent;
  color: var(--color-text);
  font-family: inherit;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 0 5px 0;
}

.plan-popup__footer {
  text-align: right;
}

.plan-popup__north-symbol {
  display: block;
  width: 30px;
  height: auto;
  margin-left: auto;
  margin-bottom: 0.5rem;
}

.plan-popup__note {
  margin: 0;
  font-size: 0.645rem;
  font-weight: 300;
  letter-spacing: 0em;
  text-align: right;
}

.plan-popup__media {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  width: 100%;
  min-height: 0;
  justify-self: stretch;
  /* background-color: lightblue; */
}

.plan-popup__content {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.plan-popup__copy {
  position: absolute;
  right: calc(100% + clamp(1.5rem, 3vw, 2.5rem));
  top: 50%;
  width: 16rem;
  max-width: 16rem;
  transform: translateY(-50%);
}

.plan-popup__copy-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-popup__copy-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--color-text);
}

.plan-popup__image-stack {
  position: relative;
  display: grid;
  grid-template: 1fr / 1fr;
  place-items: center;
  max-width: min(100%, 720px);
  max-height: min(65vh, 520px);
}

.plan-popup__feature-marker {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: 1px solid var(--color-text-dark);
  border-radius: 50%;
  background: var(--color-text-dark);
  color: #fff;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.schedule-grid__accordion[data-accordion="level-6"] .plan-popup__feature-marker {
  left: 77%;
  top: 70%;
}

.schedule-grid__accordion[data-accordion="level-5"] .plan-popup__feature-marker {
  left: 26.5%;
  top: 74%;
}

.schedule-grid__accordion[data-accordion="level-3"] .plan-popup__feature-marker {
  left: 54%;
  top: 13%;
}

.schedule-grid__accordion[data-accordion="level-2"] .plan-popup__feature-marker {
  left: 45%;
  top: 11%;
}

.schedule-grid__accordion[data-accordion="level-1"] .plan-popup__feature-marker {
  left: 55%;
  top: 52%;
}

.schedule-grid__accordion[data-accordion="ground"] .plan-popup__feature-marker {
  left: 51%;
  top: 54%;
}


.plan-popup__feature-marker[hidden] {
  display: none !important;
}

.plan-popup__feature-marker:hover,
.plan-popup__feature-marker[aria-pressed="true"] {
  background: var(--color-text-dark);
  color: #fff;
  border-color: var(--color-text-dark);
}

.plan-popup__feature-marker-icon {
  width: 1.25rem;
  height: 1.25rem;
  display: block;
}

.plan-popup__image {
  grid-area: 1 / 1;
  display: block;
  max-width: 100%;
  max-height: min(85vh, 820px);
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.plan-popup__image--overlay {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.plan-popup__image-stack.is-overlay-on .plan-popup__image--overlay {
  opacity: 1;
  visibility: visible;
}

.plan-popup__toggle-wrap[hidden],
.plan-popup__feature-wrap[hidden],
.plan-popup__controls[hidden] {
  display: none !important;
}

.plan-popup__toggle-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.plan-popup__feature-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .plan-popup__feature-marker {
    width: 1.5rem;
    height: 1.5rem;
  }

  .plan-popup__feature-marker-icon {
    width: 1rem;
    height: 1rem;
  }
}


.plan-popup__feature-heading {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-dark);
}

.plan-popup__controls {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  flex-shrink: 0;
}

.plan-popup__toggle-heading {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-dark);
}

.plan-popup__toggle {
  flex-shrink: 0;
  padding: 4px 10px;
  border: 0px solid #000;
  border-radius: 1000px;
  background-color: var(--color-text-dark);
  color: #ffffff;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1;
  cursor: pointer;
}

.plan-popup__toggle-track {
  position: relative;
  display: block;
  width: 3.5rem;
  height: 1.25rem;
}

.plan-popup__toggle-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.plan-popup__toggle-text--off {
  left: 0;
}

.plan-popup__toggle-text--on {
  right: 0;
}

.plan-popup__toggle-knob {
  position: absolute;
  top: 50%;
  right: 0;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background-color: #ffffff;
  transform: translateY(-50%);
  transition: left 0.25s ease, right 0.25s ease;
}

.plan-popup__toggle[aria-pressed="false"] .plan-popup__toggle-text--on {
  opacity: 0;
  visibility: hidden;
}

.plan-popup__toggle[aria-pressed="true"] .plan-popup__toggle-text--off {
  opacity: 0;
  visibility: hidden;
}

.plan-popup__toggle[aria-pressed="true"] .plan-popup__toggle-knob {
  right: auto;
  left: 0;
}

.btn-pill--image {
  background: url("../images/button_background.jpg") center / cover no-repeat;
  color: #fff;
}

.btn-pill--image:hover {
  background-color: rgba(0, 0, 0, 0.2);
  background-blend-mode: multiply;
  color: #fff;
}

.btn-pill__arrow--white {
  border-color: #fff;
}

.btn-pill--image:hover .btn-pill__arrow--white {
  border-color: #fff;
}

@media (max-width: 768px) {
  .plan-popup__copy {
    right: auto;
    left: 50%;
    top: auto;
    bottom: calc(100% + 1rem);
    width: min(100%, 16rem);
    max-width: min(100%, 16rem);
    transform: translateX(-50%);
  }

  .schedule-grid__accordion .plan-popup__copy {
    position: static;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    max-width: none;
    margin: 1rem 0 0;
    transform: none;
    order: 2;
  }
}

/* 50/50 split sections */

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

:root {
  --line-gap: 14px;
  --gutter: clamp(32px, 5vw, 64px);
}

body {
  margin: 0;
  font-family: FSSienaWeb-Light, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.feature-grid {
  background: #fff;
  padding: clamp(32px, 3vw, 72px) clamp(20px, 4vw, 60px);
  scroll-margin-top: var(--header-height);
}

.feature-grid--dark {
  background-color: #2f2017;
}

.feature-grid--dark .feature-grid__line,
.feature-grid--dark .feature-grid__line--vert-top,
.feature-grid--dark .feature-grid__line--vert-bottom {
  background: #817a74;
}

.feature-grid--dark .feature-grid__heading,
.feature-grid--dark .feature-grid__caption {
  color: #fff;
}

.feature-grid--dark .btn-pill {
  border-color: #fff;
  color: #fff;
}

.feature-grid--dark .btn-pill .btn-pill__arrow {
  border-color: #fff;
}

.feature-grid--dark .btn-pill:hover {
  background: #fff;
  color: #2f2017;
}

.feature-grid--dark .btn-pill:hover .btn-pill__arrow {
  border-color: #2f2017;
}

.feature-grid__columns {
  display: grid;
  grid-template-columns: 1fr var(--gutter) 1fr;
  min-height: min(80vh, 860px);
}

.feature-grid__gutter {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  pointer-events: none;
}

.feature-grid__line--vert-top,
.feature-grid__line--vert-bottom {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background: #272626;
}

.feature-grid__line--vert-top {
  top: 2rem;
}

.feature-grid__line--vert-bottom {
  bottom: 2rem;
}

.feature-grid__col {
  display: flex;
  flex-direction: column;
  min-height: inherit;
}

.feature-grid__col--left {
  grid-column: 1;
  position: relative;
}

.feature-grid__col--right {
  grid-column: 3;
  position: relative;
}

.feature-grid__media__top {
  position: relative;
  width: 100%;
}

.feature-grid__media__top img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-top:2rem
}

.feature-grid__media__bottom {
  position: relative;
  width: 100%;
}

.feature-grid__media__bottom img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom:2rem
}

/* Line segments — sized to image, with gaps at corners */
.feature-grid__line {
  position: absolute;
  background: #5d5d5c;
  pointer-events: none;
}

/* Top horizontal lines */
.feature-grid__col--left .feature-grid__line--top,
.feature-grid__col--right > .feature-grid__line--top {
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
}

/* Bottom horizontal lines */
.feature-grid__col--left > .feature-grid__line--bottom,
.feature-grid__col--right .feature-grid__line--bottom {
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
}

.feature-grid__heading {
  margin: 0;
  font-family: FSSienaWeb-Light, serif;
  font-size: clamp(2rem, 3.2vw, 2.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--color-text-dark);
}

.feature-grid__col--left .feature-grid__heading {
  margin-top: clamp(24px, 3vw, 40px);
}

.feature-grid__footer,
.feature-grid__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

.feature-grid__footer {
  margin-top: auto;
  padding-top: clamp(24px, 4vw, 60px);
  margin-bottom: 2rem;
}

.feature-grid__header {
  padding-bottom: clamp(24px, 4vw, 60px);
  margin-top:2rem
}

.feature-grid__caption {
  margin: 0;
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  line-height: 1.4;
  color: var(--color-text-dark);
  flex: 1;
}

.feature-grid__col--right .feature-grid__media__bottom {
  margin-top: auto;
}

.feature-grid--compact .feature-grid__columns {
  min-height: 0;
  align-items: stretch;
}

.feature-grid--compact .feature-grid__col {
  min-height: 0;
}

.feature-grid--compact .feature-grid__col--right {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-bottom:1px solid #817a74
}



.feature-grid--compact .feature-grid__media__top img {
  margin: 2rem 0;
}

.feature-grid--compact .feature-grid__col--left .feature-grid__line--bottom {
  position: static;
  display: block;
  width: 100%;

}

.feature-grid--compact .feature-grid__header {
  margin-top: 2rem;
  align-items: flex-start;
}

.feature-grid--compact .feature-grid__heading {
  font-size: clamp(1.5rem, 2.4vw, 2.25rem);
}

.feature-grid--compact .feature-grid__footer {
  margin-top: auto;
}

.feature-grid--compact .feature-grid__line--vert-bottom {
  display: none;
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 10px 20px;
  border: 1px solid var(--color-text-dark);
  border-radius: 1000px;
  background: var(--color-text-dark);
  color: #fff;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.home-page .btn-pill {margin-bottom:2rem}

.btn-pill:hover {
  background: #2f2017;
  color: #fff;
}

.btn-pill:hover .btn-pill__arrow {
  border-color: #fff;
}

.btn-pill__arrow {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  transition: border-color 0.2s ease;
}

@media (max-width: 1024px) {
  .plan-popup__header-right { width:200px}
  }



@media (max-width: 768px) {
  .feature-grid__columns {
    grid-template-columns: 1fr;
    row-gap: 1.5rem;
    min-height: auto;
  }

 

  .feature-grid__gutter {
    display: none;
  }

  .feature-grid__col--left,
  .feature-grid__col--right {
    grid-column: 1;
  }

  /* .feature-grid__col--left .feature-grid__line--top,
  .feature-grid__col--right > .feature-grid__line--top {
    width: 100%;
    margin-bottom:1rem;
    height:0px
  } */

  .feature-grid__col--left > .feature-grid__line--bottom,
  .feature-grid__col--right .feature-grid__line--bottom {
    width: calc(100% - var(--line-gap));

  bottom: 0;
    right: 0;
    width: 100%;
    height: 1px;
}



  .feature-grid__footer,
  .feature-grid__header {
    flex-direction: column;
    align-items: flex-start;
    margin-top:0px;
    padding-bottom:0px
  }

.feature-grid__footer,
.feature-grid__header {
  gap: 14px;
}

  .feature-grid__footer {margin-bottom:0rem; padding-top:0.5rem}

  .feature-grid__media__bottom img {margin-bottom:0px; padding-top:0rem}

  .feature-grid--compact .feature-grid__col--left {
    max-width: none;
  }

  .feature-grid--compact .feature-grid__heading {
    max-width: none;
  }

  .feature-grid__footer .no-button {height:1rem}

}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  padding: 0 3rem;
  background-color: #fff;
}

.split-section__left,
.split-section__right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(2rem, 5vw, 5rem);
  background-color: #fff;
}

.split-section__left {
  border-right: 1px solid #000;
}

.hero-video + .split-section .split-section__left,
.hero-video + .split-section .split-section__right {
  border-top: 1px solid #000;
  margin-top:20px
}

.split-section__left h2,
.split-section__right h2 {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.split-section__left p,
.split-section__right p {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 2rem;
  max-width: 42ch;
}

.split-section__left img {
  width: 100%;
  object-fit: cover;
  margin-bottom: 2rem;
}

.split-section__right img {
  width: 100%;
  object-fit: cover;
  margin-top: auto;
}

.large__text {
  font-family: FSSienaWeb-ExtraLight, sans-serif;
  line-height: 1;
  color: #fff;
  white-space: nowrap;
}

.large__text--count {
  font-variant-numeric: tabular-nums;
}

.btn {
  display: inline-block;
  align-self: flex-start;
  padding: 0.85rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-light);
  background-color: var(--color-text);
  transition: background-color 0.2s ease;
}

.btn:hover {
  background-color: #333;
}

/* Bronze background section */

.bronze-section {
  width: 100%;
  height: 80vh;
  height: 80dvh;
  background-image: url("../images/bronze_background.avif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bronze-section--stats {
  height: auto;
  min-height: 0;
}

.bronze-section--stats .bronze-section__content,
.bronze-section--stats .bronze-section__content-inner,
.bronze-section--stats .bronze-section__content-inner--stats {
  height: auto;
}


.specification-page .bronze-section {  width: 100%;
  height: 80vh;
  height: 80dvh; 
  background-image: none!important;
  background-color:#2f2017!important ;}

.specification-page .bronze-section.bronze-section--spec-icons {
  height: auto;
  min-height: 80vh;
  min-height: 80dvh;
  padding-bottom: 3rem;
  box-sizing: border-box;
}


.bronze-section.bronze-section--icons {
  width: 100%;
  height: 80vh;
  height: 80dvh;
  background-image: none!important;
background-color:#2f2017!important 
}



.bronze-section__content {
  width: 100%;
  height: 100%;
}

.bronze-section__content-inner {
  width: 100%;
  height: 100%;
  padding: 4rem;
}

.bronze-section__content-inner--stats {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: visible;
  padding: clamp(2rem, 5vw, 4rem) clamp(2rem, 3.5vw, 3.5rem);
}

.bronze-stats__row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0;
  overflow: visible;
}

/* .bronze-stats__row--1 {background-color: lightblue;}
.bronze-stats__row--3 {background-color: lightgreen;  }

.bronze-stats__row--2 {background-color: lightcoral;}
.bronze-stats__row--4 {background-color: lightseagreen;} */




.bronze-stats__row--1,
.bronze-stats__row--3 {
  justify-content: flex-start;
}

.bronze-stats__row--2,
.bronze-stats__row--4 {
  justify-content: flex-end;
}

.bronze-stats__row--2,
.bronze-stats__row--3,
.bronze-stats__row--4 {
  margin-top: 3em;
}

.bronze-stats__row--3 {
  z-index: 2;
}

.bronze-section__content-inner--stats .large__text {
  display: block;
  font-size: 10vw;
  line-height: 0.72;
  /* padding: 0.18em 0 0.28em; */
  overflow: visible;
}

.bronze-stats__copy {
  position: relative;
  z-index: 3;
  margin: 0;
  font-family: FSSienaWeb-Light, sans-serif;
  font-size: clamp(0.875rem, 2.2vw, 1.6rem);
  font-weight: 300;
  line-height: 1.8rem;
  letter-spacing: 0.02em;
  color: #fff;
  margin-top:3rem
}

.bronze-section__content-inner__left_top {

  height: 22vh;
}

.bronze-section__content-inner__left_bottom {

  height: 22vh;
  justify-content: flex-end;
}

.bronze-section__content-inner__right_top {

  height: 22vh;
}

.bronze-section__content-inner__right_bottom {

  height: 22vh;
  justify-content: flex-end;
}

.bronze-section__content-inner__left_top,
.bronze-section__content-inner__left_bottom,
.bronze-section__content-inner__right_top,
.bronze-section__content-inner__right_bottom {
  display: flex;
  align-items: center;
  overflow: visible;
  container-type: size;
  font-family: FSSienaWeb-Light, sans-serif;
}

.bronze-section__content-inner__left_top .large__text,
.bronze-section__content-inner__left_bottom .large__text,
.bronze-section__content-inner__right_top .large__text,
.bronze-section__content-inner__right_bottom .large__text {
  font-size: clamp(3rem, calc(1.3 * 100cqh), 14rem);
  line-height: 0.78;
  padding: 0.18em 0 0.28em;
}

.bronze-section__content__icons {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 4rem;
}

.bronze-section__content__icons-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 1.5rem;
  width: 100%;
  max-width:1150px;
  margin: 0 auto;
}

.bronze-section__icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

.bronze-section__icon-item img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 8rem;
  margin-bottom: 1rem;
  object-fit: contain;
  object-position: center;
}

.bronze-section__icon-item span {
  font-family: FSSienaWeb-Light, sans-serif;
  font-size: 0.875rem;
  line-height: 1.1;
  color: #fff;
  letter-spacing: 0.04em;
  color: #dbbc89;
}


.bronze-section__icon-label {
  font-family: FSSienaWeb-Light, sans-serif;
  font-size: 1.2rem;
  line-height: 1.4;
  color: #fff;
  letter-spacing: 0.04em;
  color: #dbbc89;
}

.bronze-section--spec-icons .bronze-section__content__icons-inner {
  grid-template-columns: repeat(3, 1fr);
  row-gap: 3rem;
}

.bronze-section--spec-icons .bronze-section__content__icons {
  align-items: flex-start;
  justify-content: flex-start;
  height: auto;
  min-height: 0;
}

.main-image-text {
  font-size: 1.4rem;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-dark);  
  margin-left:1rem;
  margin-top:10px
}



@media (max-width: 768px) {
  .bronze-section__content__icons-inner,
  .bronze-section--spec-icons .bronze-section__content__icons-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Specification page */

.specification-section {
  background-color: #cc6238;
  color: var(--color-text-light);
}

.specification-section__inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) 3rem;
}

.specification-section__item {
  padding: clamp(8px, 3vw, 10px) 0;
}

.specification-section__item:first-child {
  padding-top: 0;
}

.specification-section__item:last-child {
  padding-bottom: 0;
}

.specification-section__title {
  margin: 0;
}

.specification-section__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  margin: 0;
  padding: 0 0 0.75rem;
  border-bottom: 1px solid #fff;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  background: transparent;
  color: inherit;
  font-family: inherit;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 700;
  line-height: inherit;
  letter-spacing: 0.04em;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
}

.specification-section__heading[aria-expanded="true"] {
  margin-bottom: 1rem;
}

.specification-section__heading:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 5px;
}

.specification-section__icon {
  position: relative;
  flex: 0 0 1rem;
  width: 1rem;
  height: 1rem;
}

.specification-section__icon::before,
.specification-section__icon::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 200ms ease;
}

.specification-section__icon::after {
  transform: rotate(90deg);
}

.specification-section__heading[aria-expanded="true"] .specification-section__icon::after {
  transform: rotate(0);
}

.specification-section__body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.specification-section__body[hidden] {
  display: none;
}

.specification-section__row {
  display: grid;
  grid-template-columns: minmax(10rem, 1fr) 2fr;
  gap: 1.5rem 2.5rem;
  align-items: start;
  border-bottom:1px solid #db9175;
  padding-bottom:1rem
}

.specification-section__label {
  margin: 0;
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.specification-section__detail {
  margin: 0;
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  font-weight: 300;
  line-height: 1.6;
}

.specification-section__detail--full {
  grid-column: 2;
}

@media (max-width: 768px) {
  .specification-section__row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .specification-section__detail--full {
    grid-column: 1;
  }
}

/* Full-bleed image band */

.full-bleed-image {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #000;
}

.full-bleed-image__media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Projects image gallery */

.projects {
  padding: 7.5rem 0;
  background-color: #ffffff;
}

.location-page .projects {background-color: #000000; margin-top:0rem;}
.team-page .projects {background-color: #dc5a29; margin-top:1rem; padding:3rem 0}

.team-split {
  background-color: #dc5a29;
  color: #fff;
  scroll-margin-top: var(--header-height);
}

.site-footer {
  scroll-margin-top: var(--header-height);
}

.team-split__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
  max-width: 1600px;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4.5rem) 3rem;
}

.team-split__text {
  max-width: 32rem;
}

.team-split__heading {
  margin: 0 0 1.25rem;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 300;
  line-height: 1.15;
  color: #fff;
}

.team-split__copy {
  margin: 0;
  font-size: clamp(1rem, 2.4vw, 1.9rem);
  font-weight: 300;
  line-height: 1.15;
  color: #fff;
  margin-bottom:2rem
}

.team-split__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.team-split__cell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.team-split__cell--full {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}

.team-split__cell img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-split__cell::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-family: FSSienaWeb-Light, sans-serif;
  font-size: clamp(0.875rem, 1.4vw, 1.125rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

@media (hover: hover) {
  .team-split__cell:hover::after {
    opacity: 1;
  }
}

.projects-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
  padding: 0rem;
}

.projects-gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative;
}

.projects-heading {
  width: 100%;
  margin-bottom: 3rem;
  text-align: center;
}

.projects-caption {
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #666;
}

.project-titles {
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: var(--carousel-center-w);
  max-width: calc(100% - 2rem);
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.project-title {
  position: absolute;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.project-title.is-first {
  position: static;
}

.project-title.is-active {
  opacity: 1;
  visibility: visible;
}

.project-title h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}

.projects-gallery:not(.is-ready) .projects-carousel__slide {
  transition: none !important;
}

#projects-carousel {
  scroll-margin-top: var(--header-height);
}

.projects-carousel {
  --carousel-gap: clamp(0.625rem, 1.5vw, 1.75rem);
  --carousel-center-w: clamp(22rem, 70vw, 68rem);
  --carousel-side-w: calc((100vw - var(--carousel-center-w) - (var(--carousel-gap) * 2)) / 2);
  --carousel-side-hide: 0.426;
  --carousel-center-h: calc(var(--carousel-center-w) * 9 / 16);
  --carousel-side-h: calc(var(--carousel-center-h) * 0.82);
  --carousel-duration: 1.2s;
  --carousel-ease: cubic-bezier(0.22, 1, 0.36, 1);
  width: 100vw;
  max-width: 100%;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow-x: hidden;
}

.projects-carousel__viewport {
  position: relative;
  width: 100%;
  height: var(--carousel-center-h);
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.projects-carousel__viewport.is-dragging {
  cursor: grabbing;
}

.projects-carousel__slide {
  position: absolute;
  bottom: 0;
  left: 0;
  right: auto;
  width: var(--carousel-side-w);
  height: var(--carousel-side-h);
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  transform-origin: 50% 100%;
  opacity: 1;
  visibility: visible;
  transition:
    left var(--carousel-duration) var(--carousel-ease),
    width var(--carousel-duration) var(--carousel-ease),
    height var(--carousel-duration) var(--carousel-ease),
    transform var(--carousel-duration) var(--carousel-ease),
    opacity calc(var(--carousel-duration) * 0.85) var(--carousel-ease),
    visibility 0s linear 0s,
    z-index 0s linear calc(var(--carousel-duration) * 0.5);
  will-change: left, width, height, transform, opacity;
}

.projects-carousel__slide.is-left {
  left: calc(var(--carousel-side-w) * var(--carousel-side-hide) * -1);
  width: var(--carousel-side-w);
  height: var(--carousel-side-h);
  transform-origin: 0% 100%;
  transform: scale(0.95);
  z-index: 1;
  cursor: pointer;
}

.projects-carousel__slide.is-center {
  left: 50%;
  width: var(--carousel-center-w);
  height: var(--carousel-center-h);
  transform-origin: 50% 100%;
  transform: translateX(-50%) scale(1);
  z-index: 3;
  cursor: default;
  transition:
    left var(--carousel-duration) var(--carousel-ease),
    width var(--carousel-duration) var(--carousel-ease),
    height var(--carousel-duration) var(--carousel-ease),
    transform var(--carousel-duration) var(--carousel-ease),
    opacity calc(var(--carousel-duration) * 0.85) var(--carousel-ease),
    visibility 0s linear 0s,
    z-index 0s;
}

.projects-carousel__slide.is-right {
  left: calc(100% + (var(--carousel-side-w) * var(--carousel-side-hide)));
  width: var(--carousel-side-w);
  height: var(--carousel-side-h);
  transform-origin: 100% 100%;
  transform: translateX(-100%) scale(0.95);
  z-index: 2;
  cursor: pointer;
}

.projects-carousel__slide.is-instant {
  transition: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

.projects-carousel__slide.is-entering {
  opacity: 1 !important;
  visibility: visible !important;
}

.projects-carousel__slide.is-hidden-left,
.projects-carousel__slide.is-hidden-right {
  width: var(--carousel-side-w);
  height: var(--carousel-side-h);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 0;
  cursor: default;
}

.projects-carousel__slide.is-hidden-left {
  left: calc((var(--carousel-side-w) * var(--carousel-side-hide) * -1) - var(--carousel-side-w) - var(--carousel-gap));
  transform-origin: 0% 100%;
  transform: scale(0.95);
}

.projects-carousel__slide.is-hidden-right {
  left: calc(100% + (var(--carousel-side-w) * var(--carousel-side-hide)) + var(--carousel-gap) + var(--carousel-side-w));
  transform-origin: 100% 100%;
  transform: translateX(-100%) scale(0.95);
}

.projects-carousel__slide.is-hidden {
  left: 50%;
  width: var(--carousel-side-w);
  height: var(--carousel-side-h);
  transform: translateX(-50%) scale(0.8);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 0;
  cursor: default;
  transition:
    left var(--carousel-duration) var(--carousel-ease),
    width var(--carousel-duration) var(--carousel-ease),
    height var(--carousel-duration) var(--carousel-ease),
    transform var(--carousel-duration) var(--carousel-ease),
    opacity calc(var(--carousel-duration) * 0.7) var(--carousel-ease),
    visibility calc(var(--carousel-duration) * 0.7) var(--carousel-ease),
    z-index 0s;
}

.projects-carousel__img {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.projects-carousel__arrow {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.66);
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.projects-carousel__slide.is-left .projects-carousel__arrow,
.projects-carousel__slide.is-right .projects-carousel__arrow {
  display: flex;
}

.projects-carousel__slide.is-left .projects-carousel__arrow {
  left: calc(50% + (50% * var(--carousel-side-hide)) + 0.75rem);
}

.projects-carousel__slide.is-right .projects-carousel__arrow {
  left: calc(50% - (50% * var(--carousel-side-hide)) - 0.75rem);
}

.projects-carousel__arrow::after {
  content: '';
  display: block;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 1.5px solid #fff;
  border-right: 1.5px solid #fff;
}

.projects-carousel__slide.is-left .projects-carousel__arrow::after {
  transform: rotate(-135deg) translate(-1px, 1px);
}

.projects-carousel__slide.is-right .projects-carousel__arrow::after {
  transform: rotate(45deg) translate(-1px, 1px);
}

/* Viewport-level controls: hidden on desktop (side-slide arrows are used instead). */
.projects-carousel__nav {
  display: none;
  position: absolute;
  top: 50%;
  z-index: 6;
  width: 2.75rem;
  height: 2.75rem;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.66);
  transform: translateY(-50%);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.projects-carousel__nav::after {
  content: '';
  display: block;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 1.5px solid #fff;
  border-right: 1.5px solid #fff;
}

.projects-carousel__nav--prev {
  left: calc(50% - (var(--carousel-center-w) / 2) + 0.75rem);
}

.projects-carousel__nav--next {
  left: calc(50% + (var(--carousel-center-w) / 2) - 0.75rem);
  transform: translate(-100%, -50%);
}

.projects-carousel__nav--prev::after {
  transform: rotate(-135deg) translate(-1px, 1px);
}

.projects-carousel__nav--next::after {
  transform: rotate(45deg) translate(-1px, 1px);
}

@media (hover: hover) {
  .projects-carousel__slide.is-left:hover .projects-carousel__arrow,
  .projects-carousel__slide.is-right:hover .projects-carousel__arrow {
    background: rgba(0, 0, 0, 0.5);
    transform: translate(-50%, -50%) scale(1.05);
  }

  .projects-carousel__nav:hover {
    background: rgba(0, 0, 0, 0.5);
  }

  .projects-carousel__nav--prev:hover {
    transform: translateY(-50%) scale(1.05);
  }

  .projects-carousel__nav--next:hover {
    transform: translate(-100%, -50%) scale(1.05);
  }
}

.projects-carousel__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}

@media (hover: hover) {
  .projects-carousel__slide.is-left:hover {
    transform: scale(0.97);
  }

  .projects-carousel__slide.is-right:hover {
    transform: translateX(-100%) scale(0.97);
  }
}

.project-texts {
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 37.38rem;
  max-width: 100%;
  padding-top: 1rem;
  position: relative;
}

.project-text {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  width: 100%;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.project-text.is-first {
  position: static;
}

.project-text.is-active {
  opacity: 1;
  visibility: visible;
}

.project-text p {
  font-size: 1.5rem;
  line-height: 1.3;
  color: var(--color-text-dark);
  max-width: 48ch;
  text-align: center;
  margin: 0 auto;
}

.projects-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1rem;
  position: relative;
  z-index: 4;
}

.projects-pagination-page {
  width: 0.5rem;
  height: 0.5rem;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.35;
  transform: scale(1);
  font-size: 0;
  color: var(--color-text-dark);
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.projects-pagination-page::before,
.projects-pagination-page::after {
  content: none;
  display: none;
}

.projects-pagination-page.is-active {
  opacity: 1;
  transform: scale(1.25);
}

.location-page .projects-pagination-page,
.team-page .projects-pagination-page {
  color: #fff;
}

@media (hover: hover) {
  .projects-pagination-page:hover {
    opacity: 1;
    background-color: #d56235;
  }
}

@media (max-width: 768px) {
  .projects {
    padding: 6.25rem 0;
  }

  .projects-wrap {
    padding: 0;
  }

  .projects-heading {
    margin-bottom: 3.75rem;
  }

  .projects-gallery {
    align-items: flex-start;
  }

  .projects-carousel {
    --carousel-gap: 0.7rem;
    --carousel-side-hide: 0.405;
    --carousel-center-w: min(78vw, 28rem);
    --carousel-side-w: calc((100vw - var(--carousel-center-w) - (var(--carousel-gap) * 2)) / 2);
    --carousel-center-h: calc(var(--carousel-center-w) * 9 / 16);
    --carousel-side-h: calc(var(--carousel-center-h) * 0.8);
  }

  /* Side peeks are too narrow on mobile; in-slide arrows sit in clipped gaps. */
  .projects-carousel__slide.is-left .projects-carousel__arrow,
  .projects-carousel__slide.is-right .projects-carousel__arrow {
    display: none;
  }

  .projects-carousel__nav {
    display: flex;
  }

  .project-titles {
    width: var(--carousel-center-w);
  }

  .projects-pagination {
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    row-gap: 0.5rem;
    width: 100%;
    max-width: 100%;
    padding: 0 5rem;
    margin-top:3rem;
    box-sizing: border-box;
  }

  .schedule-page .projects-pagination {
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    row-gap: 0.5rem;
    width: 100%;
    max-width: 100%;
    padding: 0 5rem;
    margin-top:2rem;
    box-sizing: border-box;
  }

  .projects-carousel__nav--prev {
    left: calc(35% - (var(--carousel-center-w) / 2) + 3.5rem);
  }

  .projects-carousel__nav--next {
    left: calc(50% + (var(--carousel-center-w) / 2) - 1.75rem);
    transform: translate(100%, -50%);
}




  .location-page .projects-pagination {
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    row-gap: 0.5rem;
    width: 100%;
    max-width: 100%;
    padding: 0 5rem;
    margin-top:1rem;
    box-sizing: border-box;
  }

  .projects-pagination-page {
    flex: 0 0 auto;
    width: 0.5rem;
    height: 0.5rem;
    text-align: center;
    font-size: 0;
  }

  .projects-pagination-page:not(:last-child)::after {
    content: none;
  }

  .projects-pagination-page::after {display:none}

  .location-venues__caption {font-size:1.6rem; margin-top:10px}

  .project-title h2 {
    font-size: clamp(1.25rem, 5vw, 2rem);
    letter-spacing: 0.1em;
  }

  .project-texts {
    width: 100%;
    padding-top: 1rem;
    align-items: flex-start;
  }

  .project-text p {
    text-align: center;
    margin: 0;
    padding:0 10px;
  }

  .full-bleed-image {height:50vh}
.full-bleed-image__media {height:50vh}

.schedule-grid .btn-pill {margin-left:0px }
}


.privacy-page {
  background-color: #f4f1ec;
}

.privacy-page main {
  padding-top: var(--header-height);
}

.privacy-section {
  max-width: 46rem;
  margin: 0 auto;
  padding: 4.5rem 2.8rem 6rem;
}

.privacy-section h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 300;
  line-height: 1.15;
  color: #2f2017;
}

.privacy-updated {
  margin: 0 0 2.25rem;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: #64564e;
}

.privacy-section h2 {
  margin: 2.25rem 0 0.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2f2017;
}

.privacy-section p,
.privacy-section li {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #64564e;
}

.privacy-section ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.privacy-section a {
  color: #2f2017;
  text-decoration: underline;
}

/* Footer */

.site-footer,
.team-section {
  background-color: #111;
  background-image: url("../images/bronze_background.avif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #aaa;
  padding:3rem
}

.site-footer--solid {
  background-color: #2f2017;
  background-image: none;
}

.team-section {
  padding: 3rem;
}

.team-section .footer-left,
.team-section .footer-right {
  justify-content: flex-start;
}

.team-section__kicker {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
}

.team-section__heading {
  margin: 0 0 2rem;
  max-width: 22rem;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 300;
  line-height: 1.15;
  color: #fff;
}

.team-section__role {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  line-height: 1.4;
  color: #fff;
}

.team-section__role .footer-label {
  display: inline-block;
  margin-bottom: 0.35rem;
}
.footer-inner {
 
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 3rem;
  font-size: 1rem;
  color: #ffffff;
}

.footer-inner p {
  margin: 0px 0px;
}
.footer-left,
.footer-right {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-right {
  justify-content: flex-end; 
}

.footer-right-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 1.25rem;
  text-align: right;
  margin-left: auto;
}

.footer-right-wrap .footer-right {
  align-items: flex-start;
  text-align: left;
}

.footer-right-bottom {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: #ffffff;
  text-align: right;
}

.footer-right-bottom a {
  color: #ffffff;
  text-decoration: none;
}

.footer-right-bottom a:hover {
  text-decoration: underline;
}

.footer-right-bottom .footer-privacy-link {
  margin-top: 0;
}

.footer-left {
  justify-content: flex-start;
}

.footer-intro {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
  color: #ffffff;
}

.footer-enquiries {
  display: flex;
  gap: 2.5rem;
  flex-wrap: nowrap;
}

.footer-downloads {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  margin-top: 2rem;
}

.footer-downloads-label {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
}

.footer-downloads-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-downloads-buttons[hidden],
.download-gate-form[hidden],
.footer-downloads-intro[hidden] {
  display: none !important;
}

.footer-downloads-intro {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #ffffff;
}

.download-gate-form {
  position: relative;
  width: 100%;
  max-width: 34rem;
}

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

.download-gate-form__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.download-gate-form__input {
  flex: 1 1 16rem;
  min-width: 0;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 1000px;
  background: transparent;
  color: #fff;
  font-family: inherit;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  outline: none;
}

.download-gate-form__input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.download-gate-form__input:focus {
  border-color: #fff;
}

.download-gate-form__input.is-invalid {
  border-color: #f0c7b0;
}

.download-gate-form .btn-pill {
  margin-bottom: 0;
}

.download-gate-form .btn-pill:disabled {
  opacity: 0.65;
  cursor: wait;
}

.download-gate-form__error {
  margin: 0.5rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: #f0c7b0;
}

.download-gate-form__privacy {
  margin: 0.65rem 0 0;
  font-size: 0.8rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.8);
}

.download-gate-form__privacy a {
  color: #ffffff;
  text-decoration: underline;
}

.download-gate-form__privacy a:hover {
  color: #ffffff;
}

.download-gate-honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.footer-downloads-buttons.is-revealed {
  animation: download-gate-reveal 0.4s ease;
}

@keyframes download-gate-reveal {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.footer-downloads .btn-pill {
  background: #2f2017;
  border-color: #2f2017;
  color: #fff;
}

.footer-downloads .btn-pill:hover {
  background: #000000;
  color: #fff;
}

.btn-pill__download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  color: currentColor;
}

.btn-pill__download svg {
  display: block;
  width: 100%;
  height: 100%;
}

.footer-enquiry-one {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 0 0 40%;
  /* background-color: lightcoral; */
 
}

.footer-enquiry-two {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 0 0 60%;
  /* background-color: lightblue; */

}

.footer-enquiry-logo-epr-architects {
  width: 14rem;
  height: auto;
  padding-top:20px
}

.footer-enquiry-logo-edit {
  width: 4.8rem;
  height: auto;
  padding-top:10px
}

.footer-enquiry-logo-arup {
  width: 6rem;
  height: auto;
  padding-top:20px
}




.footer-enquiry-logo-waterman {
  width: 10rem;
  height: auto;
  padding-top:20px
}


.footer-enquiry-logo-avison-young {
  width: 5rem;
  height: auto;
  padding-top:10px
}

.footer-enquiry-logo-gt-gardiner-theobald {
  width: 9rem;
  height: auto;
  padding-top:10px
}

.footer-enquiry-logo-fflo {
  width: 5rem;
  height: auto;
  padding-top:10px
}

.footer-enquiry-logo-jll {
  width: 9rem;
  height: auto;
  padding-top:6px;
  padding-bottom:0px
}

.footer-enquiry-logo-squarebrook {
  width:22rem;
  height: auto;
  padding-top:18px;
  padding-bottom:11px
}

.footer-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 2.75rem;
  color: #ffffff;
  margin-bottom: 2.4rem;
}

.footer-enquiry-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 8px 0px;
  line-height: 0;
}


.footer-intro-wrapper-space {height:4rem;}

.footer-enquiry-logo-royal-london {width:14rem;height:auto; margin-bottom:0px}

.footer-privacy-link {
  margin-top: 1.25rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: #ffffff;
  text-decoration: none;
}

.footer-privacy-link:hover {
  text-decoration: underline;
}

.footer-enquiry-name {margin-bottom:30px; font-size:1.05rem; line-height:1.3;}
.footer-enquiry-name-small {margin-bottom:20px; font-size:1.2rem; line-height:1.1;}


.footer a {
  color: #ffffff;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* Responsive */

@media (max-width: 768px) {
  .site-header {
    padding: 0 1.25rem;
  }

  .site-header__logo img {
    height: 24px;
  }

  .home-page .logo-reveal__logo {
    height: 24px;
  }

  @media (prefers-reduced-motion: reduce) {
    .home-page .logo-reveal__logo img {
      height: 24px;
    }
  }

  .mobile-nav {
    padding: 0 1.25rem 2rem;
  }

  .mobile-nav__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
 
  }

  .mobile-nav__item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .mobile-nav__item-img {
    width: 100%;
  }

  .mobile-nav__item-img--hover {
    display: none;
  }

  .mobile-nav__item-label {
    position: static;
    grid-area: unset;
    place-self: auto;
    opacity: 1;
    visibility: visible;
    padding: 0.25rem 0 0;
    font-size: 0.85rem;
  }

  .mobile-nav__item-labels {
    position: static;
    grid-area: unset;
    place-self: auto;
    opacity: 1;
    visibility: visible;
    gap: 0.15rem;
  }

  .mobile-nav__item--dual .mobile-nav__item-label {
    padding: 0;
  }

  .hero-video {
    height: auto;
    min-height: calc(100dvh - var(--header-height));
    padding: 0 1rem;
  }

  .hero-video.hero-video--home {
    height: auto;
    min-height: 0;
    padding: var(--header-height) 0 0;
    margin: 0;
  }

  .hero-video__inner {
    min-height: calc(100dvh - var(--header-height));
  }

  .hero-video.hero-video--image,
  .hero-video--image .hero-video__inner {
    min-height: auto;
  }

  .hero-video.hero-video--image {
    padding: var(--header-height) 1rem 0;
  }

  .hero-video.hero-video--statement {
    padding: var(--header-height) 0 0;
  }

  .hero-video--statement .hero-video__inner,
  .hero-text__content {
    min-height: clamp(18rem, 62vh, 20rem);
  }

  .footer-enquiry-name {
    margin-bottom: 10px;
    font-size: 1.2rem;
    line-height: 1.1;
}

  .footer-enquiry-logo-squarebrook {padding-top:0px; padding-bottom:5px}

  .feature-grid--compact .feature-grid__col--right {border-bottom:0px solid #817a74}

  .feature-grid--compact .feature-grid__header {margin-top:0px}


  .hero-text__content {
    padding: 1.5rem 1.25rem 2rem;
  }

  .hero-text__middle {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin: 0.25rem 0;
  }

  .hero-text__statement {
    max-width: 18rem;
  }

  .hero-text__content--reveal .hero-text__title-1,
  .hero-text__content--reveal .hero-text__title-3 {
    font-size: clamp(3.5rem, 12vw, 7rem);
  }

  .hero-text__content--reveal .hero-text__title-2 {
    font-size: clamp(3rem, 9.5vw, 6rem);
  }

  .hero-text__content--reveal .hero-text__statement {
    max-width: 20rem;
    font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  }

  .hero-video--statement .hero-text__middle {
    display: contents;
  }

  .hero-video--statement .hero-text__title-1 {
    order: 1;
  }

  .hero-video--statement .hero-text__title-2 {
    order: 2;
  }

  .hero-video--statement .hero-text__title-3 {
    order: 3;
  }

  .hero-video--statement .hero-text__statement {
    order: 4;
    margin-top: 0.5rem;
  }

  .hero-video--statement-right .hero-text__content {
    align-items: flex-start;
  }

  .hero-video--statement-right .hero-text__title-1,
  .hero-video--statement-right .hero-text__title-2,
  .hero-video--statement-right .hero-text__title-3,
  .hero-video--statement-right .hero-text__statement {
    text-align: left;
  }

  .hero-video--statement-right .hero-text__statement {
    max-width: 16rem;
  }

  .location-page .hero-video {
    margin-bottom: 1.5rem;
  }

  .location-map--with-panel .location-map__inner {
    min-height: auto;
  }

  .location-restaurants {
    margin: 1.5rem 1rem;
  }

  .location-restaurants--business {
    padding: 2rem 1.25rem;
  }

  .location-restaurants--venues {
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1.25rem;
    gap: 1.25rem;
  }

  .location-restaurants--venues .location-venues__image--left {
    order: 3;
    width: 100%;
  }

  .location-venues {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 0;
    order: 1;
  }

  .location-venues__heading {
    position: static;
    left: auto;
    order: 1;
  }

  .location-venues__layout {
    order: 2;
  }

  .location-venues__right {
    order: 3;
    position: static;
    width: 100%;
  }

  .location-venues__list {
    order: unset;
    padding: 0;
    width: 100%;
    z-index: 3;
  }

  .location-venues__image--left,
  .location-venues__image--right {
    position: static;
    width: 100%;
    max-width: 100%;
    transform: translateY(1.5rem);
  }

  .location-restaurants--venues.is-visible .location-venues__image--left,
  .location-restaurants--venues.is-visible .location-venues__image--right {
    animation-name: location-venues-rise;
  }

  .location-map__amenities-row {
    flex-wrap: wrap;
    row-gap: 0.5rem;
  }

  #location-amenities-map .location-map__panel {
    display: flex;
    flex-direction: column;
    height: auto;
  }

  #location-amenities-map .location-map__amenities-grid {
    align-self: auto;
    margin-top: 1rem;
  }

  .location-venues__list li {
    font-size: clamp(1.75rem, 9vw, 3rem);
  }

  .location-venues__list li:first-child {
    margin-top: 0;
  }

  .location-venues__list li:last-child {
    margin-bottom: 0;
  }

  .location-venues__caption {
    position: static;
    max-width: none;
    transform: translateY(1.25rem);
  }

  .location-restaurants--venues.is-visible .location-venues__caption {
    animation-name: location-venues-rise;
  }

  @media (prefers-reduced-motion: reduce) {
    .location-venues__image--left,
    .location-venues__image--right,
    .location-venues__caption {
      transform: none;
    }
  }

  .location-restaurants__intro {
    margin-bottom: 1.5rem;
  }

    .location-restaurants__intro br {
    display:none
  }

  .location-map__panel-text-large {
    font-size: 1.15rem;
  }

  .location-map__panel-text-icon {
    margin-top: 0.75rem;
  }

  .location-map__panel-text-icon-image-tube,
  .location-map__panel-text-icon-image-railway,
  .location-map__panel-text-icon-image-airport {
    width: 2rem;
    height: auto;
  }

  .location-map__amenities-toggle {
    margin-left: auto;
  }

  .location-amenities-slider {
    padding: 2rem 0;
  }

  .location-amenities-slider__cell {
    width: 72%;
  }

  .location-amenities-slider--variable .location-amenities-slider__cell--narrow {
    width: 48%;
  }

  .location-amenities-slider--variable .location-amenities-slider__cell--mid {
    width: 62%;
  }

  .location-amenities-slider--variable .location-amenities-slider__cell--wide {
    width: 78%;
  }

  .location-amenities-slider--variable .location-amenities-slider__cell img {
    height: clamp(14rem, 48vw, 20rem);
  }



  .schedule-section__inner {
    padding: 1.5rem 1rem;
    overflow-x: hidden;
  }

  .schedule-grid {
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    padding-bottom: 0.5rem;
  }

  .schedule-grid__accordion {
    grid-column: 1 / -1;
    width: 100vw;
    max-width: 94vw;
    margin-left:0px;
    padding-left: 0rem;
    padding-right: 0rem;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .schedule-grid__accordion[data-accordion="ground"] .plan-popup__header-left {
    max-width: none;
    height: auto;
  }

  .schedule-grid__accordion[data-accordion="ground"] .plan-popup__position-image {
    width: min(50%, 11rem);
    margin-top: 1rem;
  }

  .schedule-grid__level-group {
    scroll-snap-align: start;
  }

  .schedule-grid__cell {
    padding: 1rem 0.5rem;
    font-size: 0.9rem;
  }

  .schedule-grid__cell--header {
    font-size: 0.7rem;
    padding-bottom: 0.75rem;
  }

  .schedule-grid__cell--level-span {
    position: sticky;
    left: 0;
    z-index: 2;
    min-width: 5.5rem;
    background-color: #cfcbc3;
  }

  .schedule-grid__level-group:hover .schedule-grid__cell--level-span,
  .schedule-grid__level-group.is-active .schedule-grid__cell--level-span {
    background-color: rgba(0, 0, 0, 0.1);
  }

  .schedule-grid .btn-pill {
    font-size: 0.7rem;
    padding: 8px 12px;
  }

  .plan-popup__dialog,
  .schedule-grid__accordion .plan-popup__dialog,
  .end-of-journey-plan .plan-popup__dialog {
    padding: 1rem;
    height: auto;
    min-height: 0;
  }

  .plan-popup__top,
  .schedule-grid__accordion .plan-popup__top,
  .end-of-journey-plan .plan-popup__top {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
  }

  .plan-popup__header-left,
  .schedule-grid__accordion .plan-popup__header-left,
  .end-of-journey-plan .plan-popup__header-left {
    order: 3;
    max-width: none;
    width: 100%;
    align-items: flex-start;
    justify-self: stretch;
    height: auto;
  }

  .end-of-journey-plan .location-map__amenities-grid {
    width: 100%;
  }

  .plan-popup__header-right,
  .schedule-grid__accordion .plan-popup__header-right,
  .end-of-journey-plan .plan-popup__header-right {
    order: 0;
    max-width: none;
    width: 100%;
    align-items: flex-start;
    justify-self: stretch;
    margin-top:1rem;
 

  }

  .plan-popup__media,
  .end-of-journey-plan .plan-popup__media {
    order: 2;
    width: 100%;
  }

  .plan-popup__title-group {
    align-items: flex-start;
    text-align: left;
    width: 100%;
  }

  .plan-popup__title {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
    line-height: 1.1;
  }

  .end-of-journey-plan .plan-popup__title {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .plan-popup__header-right .plan-popup__close {
    align-self: flex-end;
    margin-bottom: 0.5rem;
  }

  .schedule-grid__accordion .plan-popup__controls {
    align-items: flex-start;
    margin-top: 0.5rem;
  }

  .schedule-grid__accordion .plan-popup__toggle-wrap,
  .schedule-grid__accordion .plan-popup__feature-wrap {
    align-items: flex-start;
    width: 100%;
  }

  .schedule-grid__accordion .plan-popup__toggle-heading,
  .schedule-grid__accordion .plan-popup__feature-heading {
    text-align: left;
  }

  .plan-popup__copy,
  .schedule-grid__accordion .plan-popup__copy {
    position: static;
    transform: none;
    width: 100%;
    max-width: none;
    margin: 0 0 1rem;
    order: -1;
  }

  .schedule-grid__accordion .plan-popup__copy {
    margin: 1rem 0 0;
    order: 2;
  }

  .plan-popup__content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .plan-popup__image-stack,
  .plan-popup__image,
  .end-of-journey-plan .plan-popup__image-stack,
  .end-of-journey-plan .plan-popup__image {
    max-width: 100%;
    max-height: min(52vh, 420px);
  }

  .schedule-grid__accordion .plan-popup__image-stack,
  .schedule-grid__accordion .plan-popup__image {
    max-height: min(67.6vh, 546px);
  }

  .plan-popup__footer {
    text-align: left;
    margin-top: 0.5rem;
  }

  .plan-popup__north-symbol {
    margin-left: 0;
  }

  .plan-popup__note {
    text-align: left;
  }

  .plan-popup__feature-overlay {
    padding: 1rem;
  }

  .plan-popup__feature-overlay-image {
    max-height: min(55vh, 400px);
  }

  .plan-copy-outer-wrapper {
    flex-direction: row;
    gap: 0.75rem;
  }

  .plan-copy-inner-left {
    flex: none;
    width:50%;
    text-align: left;
  }

  .plan-copy-inner-right {
    flex: none;
    width: 20%;
    text-align: right;
  }

  .end-of-journey-plan {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }

  .end-of-journey-plan .end-of-journey-plan__image {
    width: 100%;
    max-width: 8rem;
    margin-top: auto;
    margin-top:1rem;
  }

  .split-section {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 0 1.25rem;
  }

  .split-section__left,
  .split-section__right {
    padding: 2rem 0;
  }

  .split-section__left {
    border-right: none;
    border-bottom: 1px solid #000;
  }

  .bronze-section {
    height: auto;
    min-height: auto;
  }

  .specification-page .bronze-section.bronze-section--spec-icons {
    height: auto;
    min-height: 0;
    padding-bottom: 2rem;
  }

  .bronze-section__content-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    height: auto;
    min-height: 0;
    padding: 1.25rem;
    gap: 0;
  }

  .bronze-section__content-inner--stats {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    padding: 2rem 1.25rem;
  }

  .bronze-section.bronze-section--icons {height:auto}

  .bronze-stats__row--2,
  .bronze-stats__row--3,
  .bronze-stats__row--4 {
    margin-top: -0.22em;
  }

  .bronze-stats__row--3 {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }

  .bronze-section__content-inner--stats .large__text {
    font-size: clamp(3.25rem, 16vw, 6.5rem);
    white-space: normal;
    line-height: 1;
  }

  .bronze-stats__copy {
    max-width: 18rem;
    margin-top: 1.5rem;
    line-height: 1.05;
  }

  .bronze-section__content-inner__left_top,
  .bronze-section__content-inner__left_bottom,
  .bronze-section__content-inner__right_top,
  .bronze-section__content-inner__right_bottom {
    height: auto;
    min-height: 6.5rem;
    padding: 0.75rem;
  }

  .bronze-section__content-inner__left_top .large__text,
  .bronze-section__content-inner__left_bottom .large__text,
  .bronze-section__content-inner__right_top .large__text,
  .bronze-section__content-inner__right_bottom .large__text {
    font-size: clamp(2.6rem, 14.3vw, 5.85rem);
    white-space: normal;
  }

  .bronze-section__content__icons {
    height: auto;
    min-height: auto;
    padding: 2rem 1.25rem;
  }

  .bronze-section__content__icons-inner,
  .bronze-section--spec-icons .bronze-section__content__icons-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .bronze-section--spec-icons .bronze-section__content__icons {
    align-items: center;
  }

  .bronze-section__icon-item {
    max-width: 16rem;
    margin: 0 auto;
    width: 100%;
  }

  .bronze-section__icon-item img {
    height: clamp(4rem, 12vw, 5rem);
  }

  .feature-grid {
    padding: clamp(18px, 4vw, 48px) 1rem;
  }

  .feature-grid__heading {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-top:0rem
  }

  .feature-grid__caption {
    font-size: clamp(0.875rem, 3.5vw, 1rem);
  }

  .full-bleed-image {
    height: clamp(16rem, 45vh, 100dvh);
  }

  .feature-grid__media__top img {margin-top:0rem}

  .hero-video__sound-toggle {
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .logo-reveal__scroll {
    bottom: 1.25rem;
  }

  .projects {
    padding: 3rem 0;
  }

  .project-title h2 {
    font-size: clamp(1rem, 4.5vw, 1.5rem);
    line-height: 1.2;
    hyphens: auto;
  }

  .accreditations-wrapper {
    padding-top: 2rem;
  }

  p.accreditations-heading {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .rlam-text-wrapper {
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.25rem;
    max-width: 100%;
  }

  .rlam-text-wrapper-inner-left,
  .rlam-text-wrapper-inner-right {
    flex: none;
    width: 100%;
  }

  .rlam-text-wrapper p {
    font-size: 1.1rem;
  }

  .specification-section__inner {
    padding: 2.5rem 1.25rem;
  }

  .privacy-section {
    padding: 3rem 1.25rem 4rem;
  }

  .team-section,
  .site-footer {
    padding: 2rem 1.25rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 2.5rem;
  }

  .footer-right {
    justify-content: flex-start;
  }

  .footer-right-wrap {
    width: 100%;
    justify-content: flex-start;
  }

  .footer-enquiries {
    flex-direction: column;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .footer-downloads {
    margin-top: 1.5rem;
    width: 100%;
  }

  .footer-downloads-buttons {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .download-gate-form__row {
    flex-direction: column;
    align-items: stretch;
  }

  .download-gate-form__input,
  .download-gate-form .btn-pill {
    width: 100%;
    justify-content: center;
  }

  .footer-enquiry-one,
  .footer-enquiry-two {
    flex: none;
    width: 100%;
  }

  .footer-label {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
    margin-bottom: 1.5rem;
  }

  .footer-intro-wrapper-space {
    height: 1.5rem;
  }

  .footer-enquiry-logo-squarebrook {
    width: min(20rem, 100%);
  }

  .footer-enquiry-logo-jll,
  .footer-enquiry-logo-arup {
    width: min(100%, 6rem);
    height: auto;
  }

  .footer-enquiry-logo-edit{
    width: min(100%, 5rem);
    height: auto;
  }







  .footer-enquiry-logo-royal-london {
    width: min(14rem, 70vw);
  }

  .logo-royal-london {
    width: min(20rem, 72vw);
    height: auto;
  }

  .location-page .projects,
  .team-page .projects {
    margin-top: 1.5rem;
  }

  .team-split__inner {
    grid-template-columns: 1fr;
    padding: 2.5rem 1.25rem;
  }

  .team-split__text {
    max-width: none;
  }
}

@media (max-width: 600px) {
  .mobile-nav__list {
    grid-template-columns: 1fr;
  }

  .mobile-nav__item-label {
    font-size: 0.95rem;
  }

  .bronze-section__content-inner {
    grid-template-columns: 1fr;
  }

  .bronze-section__content__icons-inner,
  .bronze-section--spec-icons .bronze-section__content__icons-inner {
    grid-template-columns: 1fr;
    row-gap: 2rem;
  }

  .location-restaurants__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .schedule-grid__cell--level-span {
    min-width: 4.75rem;
  }
  

}

@media (max-width: 666px) {
  .schedule-grid {
    grid-template-columns: repeat(6, minmax(20%, 1fr));

  }

    .projects-carousel__nav--prev {
    left: calc(38% - (var(--carousel-center-w) / 2) + 1.5rem);
  }

  .projects-carousel__nav--next {
    left: calc(43% + (var(--carousel-center-w) / 2) - 1.5rem);
    transform: translate(100%, -50%);
}


  .schedule-grid .btn-pill{display:none}

  .schedule-grid__cell.schedule-grid__cell--action {display:none}

  .download-gate-form__input {flex:0 0 100%}
}
