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

@font-face {
  font-family: "Vanitas";
  src: url("../fonts/Reserves - Vanitas-Bold.otf") format("opentype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #1a1210;
  --muted: #5c4338;
  --cream: #e9e3d1;
  --paper: #faf6f1;
  --terracotta: #a15437;
  --white: #fff;
  --font-display: "Vanitas", Georgia, serif;
  --font-body: "gotham", Helvetica Neue, Helvetica, Arial, sans-serif;
  --pad: clamp(1.5rem, 5vw, 5rem);
  --max: 72rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --site-bar-height: 4.5rem;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.section_beige_divider {height:2rem; background-color: var(--cream);}

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

ul {
  list-style: none;
}

/* ——— Minimised header (location + floor plans) ——— */
.site-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: auto;
  padding: 1rem 5rem;
  background: url(../images/marble-red-background.avif);
  background-size: cover;
  background-position: center;
  border-bottom:1px solid var(--cream);
}

.site-bar__logo {
  display: flex;
  align-items: center;
}

.site-bar__logo img {
  display: block;
  height: 2.68rem;
  width: auto;
}

.site-bar .menu-toggle {
  position: relative;
  top: auto;
  right: auto;
}

.site-bar .menu-toggle__bar {
  background: var(--cream);
  box-shadow: none;
}

body.is-menu-open .site-bar {
  background: transparent;
  border-bottom: none;
  pointer-events: none;
}

body.is-menu-open .site-bar__logo {
  visibility: hidden;
}

body.is-menu-open .site-bar .menu-toggle {
  pointer-events: auto;
}

body:has(.site-bar) .level__copy {
  padding-top: calc(var(--site-bar-height) + 0.6rem);
}

body:has(.site-bar) .location-intro .spec__eyebrow {
  top: calc(var(--site-bar-height) + 0.75rem);
}

/* ——— Burger + slide-down menu ——— */
.menu-toggle {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 60;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
  width: 2.5rem;
  height: 2.25rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  box-shadow: 0 0 0.4rem rgba(0, 0, 0, 0.35);
  transition: transform 0.35s var(--ease), opacity 0.25s ease;
  transform-origin: center;
}

body.is-menu-open .menu-toggle__bar {
  box-shadow: none;
}

body.is-menu-open .menu-toggle__bar:nth-child(1) {
  transform: translateY(calc(0.4rem + 2px)) rotate(45deg);
}

body.is-menu-open .menu-toggle__bar:nth-child(2) {
  opacity: 0;
}

body.is-menu-open .menu-toggle__bar:nth-child(3) {
  transform: translateY(calc(-0.4rem - 2px)) rotate(-45deg);
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #5c2418;
  background-image: url("../images/marble-red-background.avif");
  background-size: cover;
  background-position: center;
  transform: translate3d(0, -100%, 0);
  transition: transform 0.55s var(--ease);
  pointer-events: none;
}

body.is-menu-open .site-menu {
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}

.site-menu__list {
  text-align: center;
  list-style: none;
}

.site-menu__list li {
  opacity: 0;
  transform: translateY(1.75rem);
}

body.is-menu-open .site-menu__list li:nth-child(1) {
  animation: level-drift-up 0.85s var(--ease) 0.18s forwards;
}

body.is-menu-open .site-menu__list li:nth-child(2) {
  animation: level-drift-up 0.85s var(--ease) 0.4s forwards;
}

body.is-menu-open .site-menu__list li:nth-child(3) {
  animation: level-drift-up 0.85s var(--ease) 0.62s forwards;
}

body.is-menu-open .site-menu__list li:nth-child(4) {
  animation: level-drift-up 0.85s var(--ease) 0.84s forwards;
}

.site-menu__list a {
  display: block;
  padding: 0.65rem 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.275rem, 5.2vw, 4.225rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--cream);
  text-decoration: none;
  transition: opacity 0.3s var(--ease);
  letter-spacing: 0.1em;
}

.site-menu__list a:hover,
.site-menu__list a:focus-visible {
  opacity: 0.65;
}

body.is-menu-open {
  overflow: hidden;
}

/* ——— Full-width header image ——— */
.hero {
  position: relative;
  isolation: isolate;
  width: 100%;
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  min-height: 100svh;
  overflow: hidden;
  background: #3a1c16;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.hero__panel {
  --hero-panel-w: min(51.61vw, 63.76vh);
  --hero-panel-h: min(59.84vw, 73.92vh);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 2px;
  height: var(--hero-panel-h);
  overflow: hidden;
  background: #612715;
  mix-blend-mode: hard-light;
  transform: translate(-50%, -50%);
  pointer-events: none;
  text-align:center;
  animation: hero-panel-zip 0.58s cubic-bezier(0.12, 0.72, 0.18, 1) forwards;
}

@keyframes hero-panel-zip {
  0% {
    width: 2px;
  }

  100% {
    width: var(--hero-panel-w);
  }
}

.hero__panel-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}



.hero__panel-top {

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 0 0 70%;
  height: 70%;
/* background-color: red; */
}

.hero__panel-bottom {
  flex: 0 0 30%;
  height: 30%;
  /* background-color: orange; */
  margin-bottom:auto;
}

.hero__panel-bottom img {
  width: 80%;
margin:0 auto
}

.hero img.is-missing {
  display: none;
}

.ten-title-top { width: 45%; height: auto;  padding-bottom:2rem}
.chiswell-st-title-top { width: 80%; height: auto; padding-bottom:2rem}
.london-ec1-title-top { width: 25%; height: auto; }

.ten-title-top,
.chiswell-st-title-top,
.london-ec1-title-top,
.two-exceptional-title {
  opacity: 0;
  transform: translateY(1.25rem);
}

.home .hero .ten-title-top {
  animation: level-drift-up 0.8s var(--ease) 0.58s forwards;
}

.home .hero .chiswell-st-title-top {
  animation: level-drift-up 0.8s var(--ease) 0.8s forwards;
}

.home .hero .london-ec1-title-top {
  animation: level-drift-up 0.8s var(--ease) 1.02s forwards;
}

.home .hero .two-exceptional-title {
  animation: level-drift-up 0.8s var(--ease) 1.24s forwards;
}

.hero__panel h3 {
  font-family: var(--font-display);
  font-size: 2.6vw;
  font-weight: 900;
  line-height: 1.1em;
  margin: 0;
  letter-spacing: 0.09em;
  color: var(--cream);
}

/* ——— Large heading + three lines ——— */
.intro {
  padding: clamp(4rem, 10vw, 8rem) var(--pad);
  background: var(--paper);
}

.intro__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.intro__heading {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.92rem, 4.8vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
  letter-spacing: 0.05em;
}

.intro__copy {
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  line-height: 1.45;
  color: var(--muted);
  max-width: 36rem;
}

/* ——— 50/50 split ——— */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 90svh;
  background-color: var(--cream);
  background-image: url("../images/brick-bg.avif");
  background-size: cover;
  background-position: center;
}

.split__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding: clamp(3rem, 7vw, 6rem) var(--pad);
}

.split__eyebrow {

  font-size: clamp(0.8rem, 0.7rem + 0.3vw, 1rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--terracotta);
  margin-bottom: 3rem;
  font-family: ;
  opacity: 0;
  transform: translateY(1.75rem);
}

.split__heading {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 3.2vw, 3.84rem);
  letter-spacing: 0.09em;
  line-height: 0.95;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(1.75rem);
}

.split__copy {
  font-size: clamp(1rem, 1.4vw, 1.68rem);
  letter-spacing: 0.16em;
 font-weight: 400;
  color: var(--terracotta);
  opacity: 0;
  transform: translateY(1.75rem);
}

.split__copy .small-text {
  font-size: clamp(0.85rem, 1vw, 1.2rem);
  letter-spacing: 0.09em;
  font-weight: 400;
  line-height: 0.95;
  margin-top: 0.5rem;
}

.split__copy p {
  margin: 0;
}

.split__copy span {
  display: block;
  font-size: clamp(1rem, 1.4vw, 1.68rem);
  font-weight: 800;
  letter-spacing: 0.16em;

}

.split__rule {
  display: block;
  width: max-content;
  height: 1px;
  margin: 1.0rem auto;
  overflow: hidden;
  background: #000;
  color: transparent;
  font-size: inherit;
  line-height: 0;
  user-select: none;
}

.split__media {
  position: relative;
  overflow: hidden;
  min-height: 28rem;
  height: 100%;
}

.split__media img {
  position: absolute;
  left: 0;
  top: 0%;
  width: 100%;
  height: 120%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  will-change: transform;
  transition: opacity 0.85s var(--ease);
}

.split.is-inview .split__eyebrow {
  animation: level-drift-up 0.85s var(--ease) forwards;
}

.split.is-inview .split__heading {
  animation: level-drift-up 0.85s var(--ease) 0.22s forwards;
}

.split.is-inview .split__copy {
  animation: level-drift-up 0.85s var(--ease) 0.44s forwards;
}

.split.is-inview .split__media img {
  opacity: 1;
  transition-delay: 0.7s;
}

/* ——— Full-width image ——— */
.banner {
  position: relative;
  width: 100%;
  min-height: 85svh;
  background: #2c1612;
}

.banner__image {
  display: block;
  width: 100%;
  max-width: none;
  height: 85svh;
  min-height: 24rem;
  object-fit: cover;
}

.banner--photo {
  min-height: 0;
}

.banner--photo .banner__image {
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 9;
}

.banner--parallax {
  overflow: hidden;
}

.banner--photo.banner--parallax {
  aspect-ratio: 16 / 9;
}

.banner.banner--parallax:not(.banner--photo) {
  height: 85svh;
  min-height: 85svh;
}

.banner.banner--parallax.banner--full {
  height: 100vh;
  height: 100svh;
  min-height: 100vh;
  min-height: 100svh;
  aspect-ratio: auto;
}

body:has(.site-bar) .banner.banner--parallax.banner--full {
  height: calc(100vh - var(--site-bar-height));
  height: calc(100svh - var(--site-bar-height));
  min-height: calc(100vh - var(--site-bar-height));
  min-height: calc(100svh - var(--site-bar-height));
}

/* Landscape full banners: stay ~100vh, but cap on tall viewports so cover-crop does not eat the sides. */
@media (min-width: 769px) {
  .banner.banner--parallax.banner--full {
    height: min(100vh, calc(100vw * 1121 / 2054 * 1.08));
    height: min(100svh, calc(100vw * 1121 / 2054 * 1.08));
    min-height: 0;
    max-height: calc(100vw * 1121 / 2054 * 1.08);
  }

  .banner.banner--parallax.banner--full .banner__image {
    max-height: calc(100vw * 1121 / 2054 * 1.08 * 1.12);
  }

  body:has(.site-bar) .banner.banner--parallax.banner--full {
    height: min(calc(100vh - var(--site-bar-height)), calc(100vw * 1121 / 2054 * 1.08));
    height: min(calc(100svh - var(--site-bar-height)), calc(100vw * 1121 / 2054 * 1.08));
    min-height: 0;
  }
}

.banner--parallax .banner__image {
  position: absolute;
  left: 0;
  top: -30%;
  width: 100%;
  height: 160%;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  will-change: transform;
  transition: opacity 0.9s var(--ease);
}

.banner--parallax.banner--full .banner__image {
  top: -6%;
  height: 112%;
  object-fit: cover;
  object-position: center;
}

.banner--parallax.is-inview .banner__image {
  opacity: 1;
}

.banner__heading {
  position: absolute;
  bottom: var(--pad);
  right: var(--pad);
  z-index: 1;

  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 2.4vw;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: left;
  color: var(--cream);
  pointer-events: none;
  opacity: 0;
  transform: translateY(1.75rem);

}

.banner--parallax.is-inview .banner__heading {
  animation: level-drift-up 0.85s var(--ease) 0.28s forwards;
}

@media (prefers-reduced-motion: reduce) {
  .banner--parallax .banner__image {
    position: relative;
    height: auto;
    aspect-ratio: 16 / 9;
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }

  .banner__heading {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.banner__caption {
  position: absolute;
  left: var(--pad);
  bottom: var(--pad);
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.5vw, 1.15rem);
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--cream);
  text-shadow: 0 1px 1.25rem rgba(26, 18, 16, 0.55);
  pointer-events: none;
}

.banner img.is-missing {
  display: none;
}

.banner:has(img.is-missing) {
  min-height: 70svh;
}

/* ——— Sliding gallery ——— */
.gallery {
  position: relative;
  background: var(--cream);
  padding: 2rem 0;
  user-select: none;
  cursor: grab;
  touch-action: pan-y;
}

.gallery.is-dragging {
  cursor: grabbing;
  touch-action: none;
}

.gallery:not(.is-ready) .gallery__track {
  visibility: hidden;
}

.gallery__viewport {
  overflow: hidden;
  width: 100%;
}

.gallery__track {
  display: flex;
  width: 100%;
  gap: 2rem;
  will-change: transform;
}

.gallery__slide {
  flex: 0 0 50%;
  width: 50%;
}

.gallery__media {
  position: relative;
  width: 90%;
  height: 62.5svh;
  min-height: 16.5rem;
  margin-left: auto;
  overflow: hidden;
  background-color: #3a1c16;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.gallery__slide.is-active .gallery__media {
  width: 100%;
}

.gallery__slide.is-next .gallery__media {
  margin-left: 0;
}

.gallery__slide img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
}

.gallery__caption {
  position: absolute;
  left: 1.05rem;
  bottom: 1.05rem;
  z-index: 1;
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 1.25rem rgba(26, 18, 16, 0.55);
  pointer-events: none;
}

.gallery__btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background-color: #a15437;
  background-image: url("../images/marble-red-background.avif");
  background-size: cover;
  background-position: center;
  color: var(--cream);
  cursor: pointer;
  transform: translateY(-50%);
}

.gallery__btn svg {
  width: 1.75rem;
  height: 1.75rem;
}

.gallery__btn--prev {
  left: clamp(0.75rem, 2vw, 2rem);
}

.gallery__btn--next {
  right: clamp(0.75rem, 2vw, 2rem);
}

.gallery__btn:hover,
.gallery__btn:focus-visible {
  opacity: 0.7;
}

@media (max-width: 540px) {
  .gallery__media,
  .gallery__slide img {
    height: 25.08svh;
    min-height: 7.88rem;
  }
}

/* ——— Spec split under gallery ——— */
.spec {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 85svh;
  color: var(--cream);
  background-color: #5c2418;
  background-image: url("../images/marble-red-background.avif");
  background-size: cover;
  background-position: center;
}

.spec::after {
  content: "";
  position: absolute;
  top: 3rem;
  bottom: 3rem;
  left: 50%;
  width: 1px;
  background: #fff;
  pointer-events: none;
}

.spec__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding: clamp(3rem, 7vw, 6rem) var(--pad);
}

.spec__eyebrow {
 
  font-size: clamp(0.8rem, 0.7rem + 0.3vw, 1rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 3rem;
  font-weight: 800;
}

.spec__heading {
  font-family: var(--font-display);
  color: var(--cream);
  font-weight: 500;
  font-size: clamp(2.4rem, 3.2vw, 3.84rem);
  line-height: 0.95;
  letter-spacing: 0.09em;
  margin-bottom: 1.5rem;
}

.spec__copy__top {
  font-size: clamp(1rem, 1.05vw, 1.3rem);
  color: var(--cream);
  line-height: 1.45em;
  margin-bottom:1rem;
  margin-top:1em
}

.spec__copy {
  font-size: clamp(1rem, 1.05vw, 1.3rem);
  color: var(--cream);
  line-height: 1.45em;
  font-weight:400
}



.location-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  min-height: 100svh;
  color: var(--cream);
  background-color: #3a1c16;
  background-image: url("../images/location-intro-pic.avif");
  background-size: cover;
  background-position: center;
  margin-top:4rem;
}

.location-intro .spec__eyebrow {
  font-size: clamp(0.8rem, 0.7rem + 0.3vw, 1rem);
}

.location-intro .spec__heading {
  font-size: clamp(2.4rem, 3.2vw, 3.84rem);
}

.location-intro .spec__copy__top,
.location-intro .spec__copy {
  font-size: clamp(1rem, 1.05vw, 1.3rem);
}


.location-intro .spec__eyebrow,
.location-intro .spec__heading,
.location-intro .spec__copy__top,
.location-intro .spec__copy {
  opacity: 0;
  transform: translateY(1.75rem);
}

.location-intro.is-inview .spec__eyebrow {
  animation: level-drift-up 0.85s var(--ease) forwards;
}

.location-intro.is-inview .spec__heading {
  animation: level-drift-up 0.85s var(--ease) 0.22s forwards;
}

.location-intro.is-inview .spec__copy__top {
  animation: level-drift-up 0.85s var(--ease) 0.44s forwards;
}

.location-intro.is-inview .spec__copy {
  animation: level-drift-up 0.85s var(--ease) 0.66s forwards;
}

.spec__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(7, auto);
  align-content: center;
  gap: 1.5rem 1.25rem;
  padding: clamp(3rem, 7vw, 5rem) var(--pad);
}

.spec__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.65rem;
}

.spec .spec__eyebrow,
.spec .spec__heading,
.spec .spec__copy__top,
.spec .spec__copy,
.spec .spec__item {
  opacity: 0;
  transform: translateY(1.75rem);
}

.spec.is-inview .spec__eyebrow {
  animation: level-drift-up 0.85s var(--ease) forwards;
}

.spec.is-inview .spec__heading {
  animation: level-drift-up 0.85s var(--ease) 0.22s forwards;
}

.spec.is-inview .spec__copy__top {
  animation: level-drift-up 0.85s var(--ease) 0.44s forwards;
}

.spec.is-inview .spec__copy {
  animation: level-drift-up 0.85s var(--ease) 0.66s forwards;
}

.spec.is-inview .spec__item:nth-child(1),
.spec.is-inview .spec__item:nth-child(2) {
  animation: level-drift-up 0.85s var(--ease) 0.88s forwards;
}

.spec.is-inview .spec__item:nth-child(3),
.spec.is-inview .spec__item:nth-child(4) {
  animation: level-drift-up 0.85s var(--ease) 1.1s forwards;
}

.spec.is-inview .spec__item:nth-child(5),
.spec.is-inview .spec__item:nth-child(6) {
  animation: level-drift-up 0.85s var(--ease) 1.32s forwards;
}

.spec.is-inview .spec__item:nth-child(7),
.spec.is-inview .spec__item:nth-child(8) {
  animation: level-drift-up 0.85s var(--ease) 1.54s forwards;
}

.spec.is-inview .spec__item:nth-child(9),
.spec.is-inview .spec__item:nth-child(10) {
  animation: level-drift-up 0.85s var(--ease) 1.76s forwards;
}

.spec.is-inview .spec__item:nth-child(11),
.spec.is-inview .spec__item:nth-child(12) {
  animation: level-drift-up 0.85s var(--ease) 1.98s forwards;
}

.spec.is-inview .spec__item:nth-child(13),
.spec.is-inview .spec__item:nth-child(14) {
  animation: level-drift-up 0.85s var(--ease) 2.2s forwards;
}

.spec__icon {
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  color: var(--cream);
}

.spec__icon svg {
  width: 2.5rem;
  height: 2.5rem;
}

.spec__title {
  color: var(--cream);
  font-size: 0.9rem;
  line-height: 1.2;
  letter-spacing: 0.1em;
}


.spec__icon__eliz {width:88px; height:auto}
.spec__icon__national {width:88px; height:auto}
.spec__icon__fibre {width:  88px; height:auto}
.spec__icon__views {width:78px; height:auto}
.spec__icon__lifts{width:88px; height:auto}
.spec__icon__raised {width:88px; height:auto}
.spec__icon__floor-ceiling {width:88px; height:auto}
.spec__icon__balconies {width:88px; height:auto}
.spec__icon__air-con {width:88px; height:auto}
.spec__icon__shower {width:88px; height:auto}
.spec__icon__cycle {width:88px; height:auto}
.spec__icon__lockers {width:88px; height:auto}

/* ——— Text block ——— */
.statement {
  padding: clamp(4.5rem, 10vw, 8rem) var(--pad);
  background: var(--paper);
}

.statement__inner {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.statement__heading {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  line-height: 1.1;
  margin-bottom: 1.75rem;
}

.statement__copy {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--muted);
}

/* ——— Icons on marble ——— */
.amenities {
  position: relative;
  isolation: isolate;
  padding: clamp(4.5rem, 10vw, 8.5rem) var(--pad);
  color: var(--cream);
  background-color: #5c2418;
  background-image: url("../images/marble-red-background.avif");
  background-size: cover;
  background-position: center;
}

.amenities::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(28, 12, 8, 0.38);
  z-index: -1;
}

.amenities__inner {
  max-width: 78rem;
  margin: 0 auto;
}

.amenities__heading {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.25rem);
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.amenities__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.amenity {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.amenity__icon {
  display: grid;
  place-items: center;
  width: 4.25rem;
  height: 4.25rem;
  color: var(--cream);
}

.amenity__icon svg {
  width: 3rem;
  height: 3rem;
}

.amenity__label {
  font-size: 0.95rem;
  line-height: 1.35;
  max-width: 10rem;
}

.reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.amenity.reveal {
  transition-delay: calc(var(--i, 0) * 80ms);
}

.amenity:nth-child(1) { --i: 0; }
.amenity:nth-child(2) { --i: 1; }
.amenity:nth-child(3) { --i: 2; }
.amenity:nth-child(4) { --i: 3; }
.amenity:nth-child(5) { --i: 4; }
.amenity:nth-child(6) { --i: 5; }


@media (max-width: 1050px) {

.location-intro .spec__copy br {
  display: none;
}

}

@media (max-width: 1024px) {
  .amenities__grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 2.5rem;
  }
}


@media (max-width: 970px) {
.spec__copy br {display: none;}

}

@media (max-width: 800px) {
  .split,
  .spec,
  .location-intro {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 100svh;
  }

  .spec::after {
    display: none;
  }

  .split__media {
    min-height: 50svh;
    padding: 0;
  }

  .banner__heading {    font-size: 1.56rem;}

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

@media (max-width: 768px) {
  .banner {
    min-height: 0;
  }

  .banner__image {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .banner--photo .banner__image {
    height: auto;
    min-height: 0;
  }

  .banner--parallax .banner__image {
    height: 160%;
    min-height: 0;
    aspect-ratio: auto;
  }

  .banner.banner--parallax:not(.banner--photo) {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .banner.banner--parallax.banner--full {
    height: 50vh;
    height: 50svh;
    min-height: 50vh;
    min-height: 50svh;
    aspect-ratio: auto;
  }

  body:has(.site-bar) .banner.banner--parallax.banner--full {
    height: 50vh;
    height: 50svh;
    min-height: 50vh;
    min-height: 50svh;
    aspect-ratio: auto;
  }

  body:has(.site-bar) .banner.banner--parallax.banner--full .banner__image {
    top: -6%;
    height: 108%;
  }

  .banner--parallax.banner--full .banner__image {
    top: -6%;
    height: 108%;
  }

  .gallery__media,
  .gallery__slide img {
    height: 31.5svh;
    min-height: 9.9rem;
  }
}

@media (max-width: 540px) {
  .banner__image {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .banner--photo .banner__image {
    height: auto;
  }

  .banner--parallax .banner__image {
    height: 160%;
    aspect-ratio: auto;
  }
}

.level:first-of-type {

  margin-top:4rem
}

.level {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  background-color: #3a1c16;
  background-image: url("../images/chair2.avif");
  background-size: cover;
  background-position: center;
  margin-top:0rem
}
@media (max-width: 1280px) {
  .level {
  height: 80vh;
  height: 80svh;
  height: 80dvh;
  }

  .location-intro {    min-height: 80svh;}

}


.level--5 {
  background-image: url("../images/level5-intro.avif");
}

.level__copy {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  width: max-content;
  padding: clamp(3rem, 7vw, 6rem) var(--pad);
  color: #ffffff;
  opacity: 0;
  transform: translateY(2rem);
}

.level__copy p {
  width: 100%;
  font-family: var(--font-display);
  font-size: 2.7vw;
  font-weight: 800;
  line-height: 0.9em;
  padding-bottom: 0.4rem;
  margin: 0 0 0.9rem;
  border-bottom: 1px solid #ffffff;
}

.level__copy p:first-child {
  border-top: 1px solid #ffffff;
  padding-top: 0.6rem;
}

.level__numeral {
  position: absolute;
  top: 5rem;
  bottom: 5rem;
  right: var(--pad);
  height: auto;
  pointer-events: none;
  opacity: 0;
  transform: translateY(2.5rem);
}

.level.is-inview .level__copy {
  animation: level-drift-up 0.95s var(--ease) forwards;
}

.level.is-inview .level__numeral {
  animation: level-drift-up 0.65s var(--ease) 0.4s forwards;
}

@keyframes level-drift-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .level__numeral,
  .level__copy,
  .plan__text,
  .plan__media,
  .plan-headline-stack,
  .plan__note,
  .split__eyebrow,
  .split__heading,
  .split__copy,
  .spec .spec__eyebrow,
  .spec .spec__heading,
  .spec .spec__copy__top,
  .spec .spec__copy,
  .spec .spec__item,
  .location-intro .spec__eyebrow,
  .location-intro .spec__heading,
  .location-intro .spec__copy__top,
  .location-intro .spec__copy,
  .area__map,
  .area__lists,
  .transport__map,
  .transport__heading,
  .transport__group,
  .transport__list,
  .transport__note,
  .site-menu__list li,
  .ten-title-top,
  .chiswell-st-title-top,
  .london-ec1-title-top,
  .two-exceptional-title {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .hero__panel {
    animation: none;
    width: var(--hero-panel-w);
  }

  .split__media img {
    position: relative;
    height: 100%;
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}

.level__numeral img {
  display: block;
  height: 100%;
  width: auto;
  max-width: min(45vw, 100%);
  object-fit: contain;
  object-position: right center;
}



.plan {
  display: grid;
  grid-template-columns: minmax(12rem, 0.72fr) minmax(0, 2.4fr) minmax(8rem, 0.85fr);
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "text media stack"
    "text media note";
  align-items: stretch;
  gap: var(--pad);
  min-height: 100svh;
  padding: clamp(3rem, 7vw, 6rem) var(--pad);
  background-color: var(--cream);
  background-image: url("../images/brick-bg.avif");
  background-size: cover;
  background-position: center;
}

.plan__text {
  grid-area: text;
  font-size: 0.85vw;
  line-height: 1.2;
  color: var(--ink);
  font-weight:400;
  opacity: 0;
  transform: translateY(1.75rem);
}

.plan__media {
  grid-area: media;
  display: flex;
  justify-content: center;
  align-self:flex-start;
  opacity: 0;
  transform: translateY(1.75rem);
}

.plan-headline-stack {
  grid-area: stack;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-self: end;
  align-self: start;
  width: min-content;
  max-width: 100%;
  text-align: left;
  opacity: 0;
  transform: translateY(1.75rem);
}

.plan.is-inview .plan__text {
  animation: level-drift-up 0.85s var(--ease) forwards;
}

.plan.is-inview .plan__media {
  animation: level-drift-up 0.85s var(--ease) 0.35s forwards;
}

.plan.is-inview .plan-headline-stack,
.plan.is-inview .plan__note {
  animation: level-drift-up 0.85s var(--ease) 0.7s forwards;
}

.plan__eyebrow {
  font-family: var(--font-body);
  font-size: 1vw;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
  font-weight:600;
  letter-spacing: 0.24em;
}

.plan__data li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: baseline;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--ink);
}

.plan__data li:first-child {
  border-top: 1px solid var(--ink);
}

.plan__media img {
  width: 100%;
  max-height: 88vh;
  object-fit: contain;
}

.plan-headline-stack img {
  display: block;
  width: 100%;
  height: auto;
}

.banner__numeral {
  pointer-events: none;
}



.plan__title {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  margin-top: 0.65rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size:1.5vw;
  line-height: 1;
  text-align: left;
  white-space: nowrap;
}

.plan__title span {
  display: block;
  padding: 0.22em 0;
}

.plan__title span + span {
  border-top: 1px solid #000;
}

.plan__note {
  grid-area: note;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-self: end;
  align-self: end;
  gap: 0.55rem;
  max-width: 9.5rem;
  text-align: right;
  opacity: 0;
  transform: translateY(1.75rem);
}

.plan__north {
  display: block;
  width: auto;
  height: 3.4rem;
}

.plan__note p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 400;
  line-height: 1.35;
  color: var(--ink);
}

@media (max-width: 800px) {
  .plan {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-template-areas:
      "stack"
      "media"
      "text"
      "note";
  }

  .plan-headline-stack {
    justify-self: end;
  }

  .plan__note {
    justify-self: end;
  }
}

.area {
  display: grid;
  grid-template-columns: 35% 65%;
  grid-template-areas: "lists map";
  align-items: start;
  padding: 3rem 5rem;
  background: var(--cream);
  color: var(--ink);
}

.area__map,
.area__lists {
  opacity: 0;
  transform: translateY(1.75rem);
}

.area.is-inview .area__map {
  animation: level-drift-up 0.85s var(--ease) forwards;
}

.area.is-inview .area__lists {
  animation: level-drift-up 0.85s var(--ease) 0.45s forwards;
}


.area__heading {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.0vw, 1rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.area__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1.5rem;
  align-items: start;
}

.area__col h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 800;
  margin: 0rem;
  padding-top:0.5rem
}

.area__col h3:first-child {
  margin-top: 0;
}

.area__col ul {
  list-style: none;
}

.area__col li {
  font-size: 0.78rem;
  line-height: 1.45;
  font-weight: 400;
}

.area__place {
  appearance: none;
  display: inline;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  color: inherit;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.area__place.is-active {
  color: #a35437;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.area__place:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 0.15em;
}

.area__lists {
  grid-area: lists;
}

.area__map {
  grid-area: map;
  position: relative;
  scroll-margin-top: calc(var(--site-bar-height) + 0.75rem);
}

.area__map img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  object-fit: contain;
}

.area__pins {
  position: absolute;
  inset: 0;
}

.area__pin {
  position: absolute;
  width: clamp(0.7rem, 1.15vw, 0.95rem);
  height: clamp(0.7rem, 1.15vw, 0.95rem);
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(92, 91, 91, 0.4);
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 2;
  scroll-margin-top: calc(var(--site-bar-height) + 1.25rem);
  scroll-margin-bottom: 1.25rem;
}

.area__pin.is-active {
  background: #a35437;
  animation: area-pin-pulse 1.5s ease-out infinite;
}

.area__pin:focus-visible {
  outline: 2px solid #e9e3d1;
  outline-offset: 2px;
}

@keyframes area-pin-pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 0 0 rgba(163, 84, 55, 0.65);
  }
  70% {
    transform: translate(-50%, -50%) scale(1.18);
    box-shadow: 0 0 0 0.7rem rgba(163, 84, 55, 0);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 0 0 rgba(163, 84, 55, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .area__pin.is-active {
    animation: none;
  }
}

@media (max-width: 1190px) {
  .area {
    grid-template-columns: 1fr;
    grid-template-areas:
      "map"
      "lists";
  }

  .area__map {
    margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  }
}

.transport {
  display: grid;
  grid-template-columns: 25% 75%;
  grid-template-areas:
    "heading map"
    "lists map";
  align-items: start;
  padding: 3rem 5rem;
  background-color: var(--cream);
  color: var(--ink);
}

.transport__map,
.transport__heading,
.transport__group,
.transport__list,
.transport__note {
  opacity: 0;
  transform: translateY(1.75rem);
}

.transport.is-inview .transport__map {
  animation: level-drift-up 0.85s var(--ease) forwards;
}

.transport.is-inview .transport__heading {
  animation: level-drift-up 0.85s var(--ease) 0.45s forwards;
}

.transport.is-inview .transport__group,
.transport.is-inview .transport__list,
.transport.is-inview .transport__note {
  animation: level-drift-up 0.85s var(--ease) 0.67s forwards;
}

.transport__map {
  grid-area: map;
}

.transport__map img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  object-fit: contain;
}

.transport__panel {
  grid-area: lists;
  padding: 0 clamp(1.25rem, 3vw, 2.5rem) 0 0;
}

.transport__heading {
  grid-area: heading;
  font-family: var(--font-display);
  font-size: 3.2vw;
  font-weight: 500;
  margin-bottom: 1.75rem;
  padding-right: clamp(1.25rem, 3vw, 2.5rem);
  line-height: 0.95;
}

.transport__group {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 2.5rem 0 0.6rem;
  padding:0.6rem 0;

  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

.transport__group span {

  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.2;
}





.transport__list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: baseline;
  padding: 0.45rem 0;
  border-bottom: 1px solid #000;
  font-size: 0.65rem;
  line-height: 1.1;
  letter-spacing: 0.1em;
}

.transport__note {
  font-size: 0.5rem;
  font-weight: 500;
  margin: 0.2rem 0;
  padding:0.2rem 0;

}

.transport__head {
  font-weight: 500;
}

@media (max-width: 1450px) {

  .transport {
    grid-template-columns: 23% 77%;

}



  .transport__list li {
    gap: 0.4rem;

    padding: 0.45rem 0;
    font-size: 10px;
    line-height: 0.9;
    letter-spacing: 0em;
  }

  .transport__group {

    font-size: 0.8rem;
    font-weight: 600;
    margin: 1.5rem 0 0.6rem;
    padding:0.6rem 0;
  }

  .transport__group span {

    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.2;
  }

}

@media (max-width: 1190px) {
  .transport {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "map"
      "lists";
  }

  .transport__heading,
  .transport__panel {
    padding-right: 0;
  }

  .transport__map {
    margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  }

  .transport__panel {
    padding: 0;
  }
}

.site-footer {
  background-color: #5c2418;
  background-image: url("../images/marble-red-background.avif");
  background-size: cover;
  background-position: center;
  color: var(--cream);
  padding: clamp(3rem, 7vw, 5.5rem) var(--pad);
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(2rem, 8vw, 6rem);
}

.site-footer__group {
  display: flex;
  flex-direction: column;
  width: 50%;
  gap: 1.5rem;
}

p.site-footer__lead {
  font-family: var(--font-display);
  font-size: 3.5rem!important;
  font-weight: 500!important;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin: 0;
}

.site-footer__cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}

.site-footer__brochure {
  display: block;
  width: 100%;
  align-self: stretch;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  padding: 0.7rem 0;
  font-size: 1.5vw;
  font-weight: 400;
  letter-spacing: 0em;

}

.site-footer__aside {
  max-width: 18rem;
  text-align: right;
  margin-left: auto;
}

.site-footer__aside--landlord {
  align-self: flex-end;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.site-footer__landlord-logo {
  display: block;
  align-self: flex-end;
  margin-left: auto;
  height: 2.6rem;
  width: auto;
}

.site-footer__col p:last-child {
  margin-bottom: 0;
}

.site-footer__heading {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 1rem;
}



.site-footer__aside .site-footer__heading img {
  margin-left: auto;
}

.site-footer p {
  font-size: 1rem;
  line-height: 1.44;
  margin-bottom: 1rem;
  font-weight: 400;

}

p.site-footer__landlord-label {
  margin: 0 0 0.65rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer__name {
  display: block;
  font-weight: 800;
}

p.site-footer__further-info {font-size: 0.8rem; font-weight:700; letter-spacing: 0.16em; text-transform: uppercase;}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  opacity: 0.7;
}

.site-footer__link {
  display: inline-block;
  margin-top: 0.25rem;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.15rem;
}

.site-footer__legal {
  margin: clamp(2.25rem, 4vw, 3.5rem) 0 0;
  font-size: 0.55rem;
  line-height: 1;
  opacity: 1;
  font-;
}

p.site-footer__legal {
  font-size: 0.65rem;
  line-height: 1.1;
  margin-bottom: 1rem;
  font-weight: 400;
  text-align: justify;
}

.site-footer__logo__kf {
  width: 140px;
  padding-bottom: 21px;
  height: auto;
}

.site-footer__logo__colliers {
  width: 130px;
  height: auto;
}


.site-footer__logo__rubix {
  width: 130px;
  padding-bottom: 18px;
  padding-top: 18px;
  height: auto;
}




@media (max-width: 900px) {
  .site-footer__inner {
    flex-direction: column;
  }

  .site-footer__group {
    width: 100%;
  }

  .site-footer__aside {
    max-width: none;
    text-align: left;
    margin-left: 0;
  }

  .site-footer__aside .site-footer__heading img {
    margin-left: 0;
  }

  .site-footer__aside--landlord {

    width: auto;
    max-width: none;
  }

  .site-footer__landlord-logo {
    margin-left: auto;
  }

  .site-footer__brochure {

    font-size: 1rem;
  
  }
}


@media (max-width: 768px) {
  .level__numeral {height: 50%;}
  .level {height: 60dvh;}
  .location-intro {min-height: 50dvh;}

  .level__copy p {
 
    font-size: 2rem;
   
 padding-bottom: 0.3rem;
    margin: 0 0 0.6rem;
}

.level__copy p:first-child {
  border-top: 1px solid #ffffff;
  padding-top: 0.6rem;
}

body:has(.site-bar) .level__copy {
  padding-top: 5rem;
}

body:has(.site-bar) .location-intro .spec__eyebrow {
  top: 2.75rem; 
}

.spec__heading {padding-top:2rem}

.spec__copy__top {
line-height: 1.2em;

}

.home h2.spec__heading {margin-top:2rem}
.home .split__heading {margin-top:2rem}

.spec__copy {  line-height: 1.2em;  max-width:100%}

  .hero__panel h3 {font-size: 2rem; line-height: 1.2em;}

  .split__copy {
    letter-spacing: 0.16em;

}

.split__copy .small-text {
  letter-spacing: 0.09em;

}



  .split__copy span {
    font-weight: 800;
    letter-spacing: 0.16em;
}
.transport__heading {font-size: 2.4rem;}
.transport__group {margin:2rem 0 0.6rem;}

}

@media (max-width: 640px) {
  .site-footer__cols {
    grid-template-columns: 1fr;
  }

  .gallery__media,
  .gallery__slide img {
    height: 25.08svh;
    min-height: 7.88rem;
  }

  .plan__eyebrow {font-size: 1rem;}
  .site-footer__aside--landlord {align-self:flex-start;}
  .spec__heading {
    padding-top: 2rem;
}

.spec__copy__top {
  line-height: 1.2em;
}

.spec__copy {
  line-height: 1.2em;
}

.spec__copy br {
 display:none
}

.split__copy span {
 width: 100%;
}

.hero__panel
 {

     --hero-panel-h:46%;
    --hero-panel-w:80%;

}

.site-bar {padding: 1rem 2rem;}

.hero__panel h3 {
  font-size: 1.7rem;
  line-height: 1.2em;
}
.gallery {padding: 1rem 0;}
.gallery__track {gap:1rem}

.gallery__slide {
  flex: 0 0 26.875%;
  width: 26.875%;
}

.gallery__slide.is-active {
  flex-basis: 81.25%;
  width: 81.25%;
}

.gallery__media,
.gallery__slide img,
.gallery__slide.is-active .gallery__media,
.gallery__slide.is-active img {
  width: 100%;
  margin-left: 0;
}
.section_beige_divider {
  height: 1rem;
}

.section_beige_divider.intro_divider {display:none}

body:has(.site-bar) .level__copy {
  padding-top: 2rem;
}

.level__numeral {top: 2rem;}

.level__numeral {
  height: 40%;
}

.gallery__caption {letter-spacing: 0.09em; font-size: 0.6rem;}

}

@media (max-width: 1024px) {  
.plan__text {
  font-size: 0.7rem;
  line-height: 1.2;
}

}