:root {
  --navy: #0B3854;
  --ink: #102C3F;
  --gold: #DFB66D;
  --white: #FFFFFF;
  --neutral: #F4F6F7;
  --divider: #D7E0E5;
  --muted-ink: rgb(16 44 63 / .74);
  --navy-deep: var(--navy);
  --content: 1220px;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 4px;
}

.site-header :focus-visible,
.hero-panel :focus-visible,
.floor-explorer :focus-visible,
.contact-section :focus-visible,
.site-footer :focus-visible,
.language-page :focus-visible {
  outline-color: var(--gold);
}

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

h1,
h2,
h3 {
  line-height: 1.04;
  letter-spacing: -.025em;
  text-wrap: balance;
}

p,
li {
  text-wrap: pretty;
}

.container {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.section-heading {
  max-width: 860px;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section-heading h2 {
  max-width: 18ch;
  margin-bottom: 1rem;
  color: var(--navy);
  font-size: clamp(2.1rem, 5vw, 4.75rem);
}

.section-heading p {
  max-width: 68ch;
  margin-bottom: 0;
  color: var(--muted-ink);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: .74rem 1.15rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: background-color 180ms var(--ease-out), color 180ms var(--ease-out), border-color 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.button:hover {
  transform: translateY(-2px);
}

.button--gold {
  background: var(--gold);
  color: var(--navy-deep);
}

.button--gold:hover {
  background: color-mix(in srgb, var(--gold) 86%, var(--white));
}

.button--outline-light {
  border-color: rgba(255, 255, 255, .72);
  color: var(--white);
}

.button--outline-light:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--navy);
}

.button--outline-dark {
  border-color: var(--navy);
  color: var(--navy);
}

.button--outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  background: var(--navy);
  color: var(--white);
}

.header-main {
  display: grid;
  min-height: 76px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.4rem);
}

.brand-lockup {
  display: flex;
  min-width: 0;
  min-height: 44px;
  align-items: center;
  gap: .85rem;
  color: var(--white);
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  width: 56px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border: 2px solid var(--white);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: .02em;
}

.brand-address {
  overflow: hidden;
  font-size: 1.02rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(.75rem, 1.5vw, 1.6rem);
}

.desktop-nav a,
.mobile-nav a {
  min-height: 44px;
  align-content: center;
  color: rgba(255, 255, 255, .9);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
}

.desktop-nav a:hover,
.mobile-nav a:hover {
  color: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: .85rem;
}

.language-link {
  display: inline-grid;
  min-width: 44px;
  min-height: 44px;
  place-items: center;
  font-weight: 800;
  text-decoration: none;
}

.language-link:hover {
  color: var(--gold);
}

.mobile-nav {
  display: none;
}

.mobile-nav summary {
  min-height: 44px;
  padding: .65rem 20px;
  border-top: 1px solid rgba(255, 255, 255, .17);
  cursor: pointer;
  font-weight: 700;
  list-style-position: inside;
}

.mobile-nav nav {
  display: flex;
  padding: 0 20px 1rem;
  flex-wrap: wrap;
  gap: .2rem 1.25rem;
}

.hero {
  background: var(--neutral);
}

.hero-stage {
  position: relative;
  display: grid;
  height: calc(100svh - 76px);
  min-height: calc(100svh - 76px);
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(580px, 1fr);
  isolation: isolate;
}

.hero-media,
.hero-panel {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  min-height: 44px;
}

.hero-media {
  overflow: hidden;
  background: var(--navy);
}

.hero-media picture,
.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media img {
  object-position: 58% 100%;
}

.hero-panel {
  z-index: 1;
  display: flex;
  width: min(48%, 690px);
  align-items: center;
  justify-self: start;
  background: rgba(11, 56, 84, .78);
  color: var(--white);
}

.hero-panel__inner {
  width: 100%;
  padding: clamp(2.5rem, 5vw, 5rem) clamp(2rem, 5vw, 5.5rem);
}

.hero-location {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: 1.4rem;
  color: var(--gold);
  font-weight: 700;
}

.hero-location::before {
  width: 28px;
  height: 2px;
  background: currentColor;
  content: "";
}

.hero h1 {
  max-width: 14ch;
  margin-bottom: 1.35rem;
  font-size: clamp(2.8rem, 5.3vw, 4.75rem);
  letter-spacing: -.035em;
}

.hero-summary {
  max-width: 54ch;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(1.04rem, 1.6vw, 1.23rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--white);
  color: var(--ink);
}

.hero-proof__item {
  min-height: 108px;
  padding: 1.55rem clamp(1.1rem, 2vw, 2.1rem);
  border-bottom: 1px solid var(--divider);
}

.hero-proof__item + .hero-proof__item {
  border-left: 1px solid var(--divider);
}

.hero-proof__item strong {
  display: block;
  margin-bottom: .18rem;
  color: var(--navy);
  font-size: 1.08rem;
}

.hero-proof__item span {
  color: var(--muted-ink);
  font-size: 1rem;
}

.spaces-section {
  padding: clamp(4.5rem, 9vw, 8.5rem) 0;
  background: var(--neutral);
}

.floor-explorer {
  overflow: hidden;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
  border-radius: 14px;
  background: var(--navy);
  color: var(--white);
}

.floor-explorer__bar {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 3vw, 2.25rem);
}

.floor-explorer__bar h3 {
  margin-bottom: 0;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  letter-spacing: -.015em;
}

.floor-explorer__view-controls {
  display: inline-flex;
  gap: .25rem;
  padding: .25rem;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 999px;
}

.floor-explorer__view-controls button {
  min-height: 44px;
  padding: .5rem .9rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.floor-explorer__view-controls button[aria-selected="true"] {
  background: var(--gold);
  color: var(--navy);
}

.floor-explorer__controls {
  display: inline-flex;
  flex: 0 0 auto;
  gap: .35rem;
  padding: .28rem;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 999px;
}

.floor-explorer__controls a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  min-height: 44px;
  padding: .5rem .85rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  font: inherit;
  font-size: .88rem;
  font-weight: 700;
  cursor: pointer;
}

.floor-explorer__controls a[aria-current="true"] {
  background: var(--gold);
  color: var(--navy);
}

.floor-explorer__hint {
  max-width: 56ch;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: .9rem;
  text-align: right;
}

.floor-stage,
.floor-noscript {
  background: var(--white);
}

.floor-stage {
  min-height: 420px;
}

.floor-turntable {
  position: relative;
  width: 100%;
  aspect-ratio: 3600 / 2480;
  touch-action: pan-y;
  cursor: grab;
}

.floor-room-hotspot {
  position: absolute;
  z-index: 2;
  box-sizing: border-box;
  min-width: 0;
  min-height: 44px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.floor-room-hotspot:hover {
  box-shadow: 0 0 0 3px rgb(255 255 255 / .9), 0 0 0 6px rgb(8 36 58 / .55);
}

.floor-room-hotspot:focus-visible {
  outline: 4px solid var(--gold);
  outline-offset: 3px;
}

.floor-turntable:active {
  cursor: grabbing;
}

.floor-turntable img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.floor-stage img {
  width: 100%;
}

.floor-stage figcaption,
.floor-noscript figcaption {
  padding: .85rem 1.25rem 1.1rem;
  color: var(--muted-ink);
  font-size: .9rem;
}

.floor-noscript {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.floor-noscript figure {
  margin-bottom: 0;
}

.floor-noscript figure + figure {
  border-left: 1px solid var(--divider);
}

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

.floor-plan-stage {
  margin: 0;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: var(--white);
  color: var(--ink);
}

.floor-plan-stage__viewport {
  max-height: min(68vh, 760px);
  overflow: auto;
  border: 1px solid var(--divider);
  background: var(--white);
  cursor: grab;
  overscroll-behavior: contain;
  touch-action: pan-y;
}

.floor-plan-stage__viewport[data-dragging="true"] {
  cursor: grabbing;
}

.floor-plan-stage__viewport:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 3px;
}

.floor-plan-stage img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  user-select: none;
}

.floor-plan-stage figcaption {
  padding-top: .75rem;
  color: var(--muted-ink);
  font-size: 1rem;
}

.floor-plan-stage__toolbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: .75rem;
}

.floor-plan-stage__toolbar button {
  min-width: 48px;
  min-height: 44px;
  padding: .55rem .8rem;
  border: 1px solid var(--navy);
  background: var(--white);
  color: var(--navy);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.floor-plan-stage__toolbar button:hover,
.floor-plan-stage__toolbar button:focus-visible {
  background: var(--navy);
  color: var(--white);
}

.floor-plan-stage__toolbar button:disabled {
  cursor: not-allowed;
  opacity: .45;
}

.floor-plan-stage__toolbar [data-plan-inline-zoom-level] {
  min-width: 4rem;
  color: var(--muted-ink);
  font-weight: 700;
  text-align: center;
}

.floor-plan-stage__hint {
  margin-left: auto;
  color: var(--muted-ink);
  font-size: .95rem;
}

.plan-dialog {
  width: min(96vw, 1500px);
  max-width: none;
  max-height: 94vh;
  padding: 1rem;
  border: 0;
  background: var(--white);
  color: var(--ink);
}

.plan-dialog::backdrop {
  background: rgb(16 44 63 / .76);
}

.plan-dialog__scroller {
  max-height: 76vh;
  margin-bottom: 1rem;
  overflow: auto;
  border: 1px solid var(--divider);
}

.plan-dialog__scroller[data-zoomed="true"] {
  cursor: grab;
  touch-action: none;
}

.plan-dialog__scroller[data-dragging="true"] {
  cursor: grabbing;
  user-select: none;
}

.plan-dialog__scroller img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}

.plan-dialog__toolbar {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin: 0 0 .75rem;
}

.plan-dialog__toolbar button {
  min-width: 48px;
  min-height: 44px;
  padding: .55rem .8rem;
  border: 1px solid var(--navy);
  background: var(--white);
  color: var(--navy);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.plan-dialog__toolbar button:hover,
.plan-dialog__toolbar button:focus-visible {
  background: var(--navy);
  color: var(--white);
}

.plan-dialog__toolbar [data-plan-zoom-level] {
  min-width: 4rem;
  color: var(--muted-ink);
  font-weight: 700;
  text-align: center;
}

.plan-dialog__close {
  min-width: 120px;
}

.space-roster {
  border-top: 3px solid var(--navy);
}

.space-row {
  display: grid;
  min-height: 148px;
  grid-template-columns: minmax(150px, 1fr) minmax(150px, .9fr) minmax(250px, 1.8fr) minmax(190px, auto);
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  padding: 1.45rem clamp(.5rem, 1.4vw, 1rem);
  border-bottom: 1px solid var(--divider);
}

.space-row--feature {
  background: rgba(223, 182, 109, .18);
}

.space-identity {
  display: flex;
  align-items: baseline;
  gap: .72rem;
}

.space-number {
  color: var(--navy);
  font-size: clamp(2.15rem, 4vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1;
}

.space-status {
  color: var(--ink);
  font-size: .79rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.space-area {
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  font-weight: 700;
}

.space-facts {
  display: grid;
  gap: .18rem;
}

.space-rent {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 800;
}

.space-height {
  color: var(--muted-ink);
  font-size: .92rem;
  font-weight: 700;
}

.space-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .85rem;
}

.text-link {
  min-height: 44px;
  align-content: center;
  color: var(--navy);
  font-weight: 800;
  text-underline-offset: .24em;
}

.space-split {
  display: flex;
  grid-column: 1 / -1;
  align-items: baseline;
  flex-wrap: wrap;
  gap: .45rem 1.15rem;
  padding: 1rem 0 .2rem;
  border-top: 1px solid var(--divider);
  color: var(--navy);
}

.space-split span {
  font-weight: 700;
}

.space-split small {
  width: 100%;
  color: var(--muted-ink);
  font-size: .95rem;
}

.space-copy {
  margin: 0;
  color: var(--muted-ink);
}

.benefits-section {
  padding: clamp(4.5rem, 9vw, 8.5rem) 0;
  background: var(--white);
}

.benefits-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(280px, .72fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.technical-list,
.uses-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.technical-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 3px solid var(--navy);
}

.technical-list li {
  min-height: 138px;
  padding: 1.4rem 1.2rem 1.4rem 0;
  border-bottom: 1px solid var(--divider);
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  font-weight: 700;
}

.technical-list li:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.technical-list li:nth-child(even) {
  padding-left: 1.2rem;
  border-left: 1px solid var(--divider);
}

.technical-icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: .7rem;
  place-items: center;
  color: var(--navy);
}

.technical-icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  vector-effect: non-scaling-stroke;
}

.technical-list strong,
.technical-copy {
  display: block;
}

.technical-copy {
  max-width: 44ch;
  margin-top: .3rem;
  color: var(--muted-ink);
  font-size: .94em;
  font-weight: 400;
  line-height: 1.45;
}

.uses-column {
  padding-top: .2rem;
}

.uses-column h3 {
  margin-bottom: 1.4rem;
  color: var(--navy);
  font-size: clamp(1.65rem, 2.6vw, 2.45rem);
}

.uses-list li {
  padding: .72rem 0;
  border-bottom: 1px solid var(--divider);
  font-weight: 700;
}

.technical-note {
  margin: 1.6rem 0 0;
  color: var(--muted-ink);
  font-size: .92rem;
}

.building-facts {
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  background: var(--navy);
  color: var(--white);
}

.building-facts__layout {
  display: grid;
  grid-template-columns: minmax(190px, .55fr) minmax(0, 1.45fr);
  align-items: start;
  gap: clamp(2.5rem, 7vw, 7rem);
}

.building-facts h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.3vw, 4rem);
}

.building-facts .eyebrow {
  color: var(--gold);
}

.building-facts__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid rgb(255 255 255 / .35);
}

.building-facts__grid div {
  min-height: 105px;
  padding: 1.1rem 1rem 1rem 0;
  border-bottom: 1px solid rgb(255 255 255 / .22);
}

.building-facts__grid div:nth-child(3n + 2),
.building-facts__grid div:nth-child(3n + 3) {
  padding-left: 1rem;
  border-left: 1px solid rgb(255 255 255 / .22);
}

.building-facts dt {
  color: var(--gold);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.building-facts dd {
  margin: .3rem 0 0;
  font-size: 1.02rem;
  font-weight: 700;
}

.gallery-section {
  padding: clamp(4.5rem, 9vw, 8.5rem) 0;
  background: var(--neutral);
}

.gallery-filters {
  display: flex;
  margin: -1rem 0 1.5rem;
  flex-wrap: wrap;
  gap: .55rem;
}

.gallery-filters button {
  min-height: 44px;
  padding: .58rem .9rem;
  border: 1px solid var(--navy);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.gallery-filters button[aria-pressed="true"] {
  background: var(--navy);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: clamp(190px, 18vw, 270px);
  gap: 12px;
}

.gallery-item {
  position: relative;
  min-height: 0;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--divider);
}

.gallery-trigger {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item:nth-child(4) {
  grid-column: span 2;
  grid-row: auto;
}

.gallery-item:nth-child(5) {
  grid-column: auto;
  grid-row: auto;
}

.gallery-item:nth-child(6) {
  grid-column: auto;
  grid-row: auto;
}

.gallery-item picture,
.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-item img {
  object-fit: cover;
  transition: transform 600ms var(--ease-out);
}

.gallery-item:hover img {
  transform: scale(1.025);
}

.gallery-item figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 2.8rem 1rem .85rem;
  background: linear-gradient(to top, rgb(11 56 84 / .82), transparent);
  color: var(--white);
  font-size: .87rem;
}

[data-gallery-dialog] {
  width: min(94vw, 1200px);
  max-width: none;
  max-height: 94vh;
  padding: 1rem;
  border: 0;
  background: var(--white);
  color: var(--ink);
}

[data-gallery-dialog]::backdrop {
  background: rgb(16 44 63 / .8);
}

[data-gallery-dialog] > img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  background: var(--neutral);
}

.gallery-dialog__meta,
.gallery-dialog__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.gallery-dialog__meta {
  padding-top: .8rem;
}

.gallery-dialog__meta p {
  margin: 0;
}

.gallery-dialog__meta span {
  flex: 0 0 auto;
  font-weight: 800;
}

.gallery-dialog__controls {
  padding-top: .8rem;
}

.location-section {
  padding: clamp(4.5rem, 9vw, 8.5rem) 0;
  background: var(--white);
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 7rem);
}

.location-copy h2 {
  max-width: 11ch;
  margin-bottom: 1.3rem;
  color: var(--navy);
  font-size: clamp(2.2rem, 5vw, 4.75rem);
}

.location-address {
  max-width: 30ch;
  margin-bottom: 1.15rem;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 700;
}

.location-copy p {
  max-width: 60ch;
  color: var(--muted-ink);
}

.location-map {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
}

.location-map img {
  width: 100%;
}

.map-marker,
.map-label {
  position: absolute;
  z-index: 1;
  border: 2px solid var(--white);
  border-radius: 999px;
  box-shadow: 0 5px 16px rgb(11 56 84 / .24);
  font-size: clamp(.65rem, 1.15vw, .88rem);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.map-marker {
  top: 24%;
  left: 28%;
  display: grid;
  width: clamp(48px, 6vw, 66px);
  height: clamp(48px, 6vw, 66px);
  place-items: center;
  translate: -50% calc(-100% - 11px);
  background: var(--gold);
  color: var(--navy);
}

.map-marker::after {
  position: absolute;
  bottom: -9px;
  width: 16px;
  height: 16px;
  rotate: 45deg;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  background: var(--gold);
  content: "";
}

.map-marker strong {
  z-index: 1;
}

.map-label {
  padding: .5rem .7rem;
  translate: -50% -50%;
  background: var(--navy);
  color: var(--white);
}

.map-label--tallinn { top: 7.6139%; left: 91.2881%; }
.map-label--parnu { top: 94.5595%; left: 49.5146%; }
.map-label--keila { top: 94.2628%; left: 6.8966%; }
.map-label--saku { top: 87.8661%; left: 94.7776%; }
.map-label--tule { top: 33.7418%; left: 35.6426%; }
.map-label--saue-school { top: 22.4488%; left: 10.3165%; }

/* Localized room detail pages */
.room-page {
  background: var(--neutral);
}

.room-hero {
  padding: clamp(3.5rem, 7vw, 7rem) 0 clamp(4rem, 8vw, 7.5rem);
  background: var(--white);
}

.room-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
}

.back-link {
  display: inline-flex;
  margin-bottom: clamp(2.2rem, 5vw, 4.5rem);
  color: var(--navy);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: .25em;
}

.room-hero h1 {
  max-width: 14ch;
  margin-bottom: 1.35rem;
  color: var(--navy);
  font-size: clamp(2.5rem, 4.8vw, 4.8rem);
}

.room-title span {
  display: block;
}

.room-title__area {
  margin-top: .08em;
  font-size: .82em;
}

.room-title__descriptor {
  margin-top: .18em;
  font-size: .58em;
  line-height: 1.08;
}

.room-lede {
  max-width: 58ch;
  color: var(--muted-ink);
  font-size: clamp(1.1rem, 1.6vw, 1.34rem);
}

.room-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 2.2rem 0 1rem;
  border-block: 1px solid var(--divider);
}

.room-facts div {
  padding: 1.2rem 1rem 1.2rem 0;
}

.room-facts div + div {
  padding-left: 1rem;
  border-left: 1px solid var(--divider);
}

.room-facts div:nth-child(odd) {
  padding-left: 0;
  border-left: 0;
}

.room-facts div:nth-child(n + 3) {
  border-top: 1px solid var(--divider);
}

.room-facts dt {
  color: var(--muted-ink);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.room-facts dd {
  margin: .25rem 0 0;
  color: var(--navy);
  font-size: clamp(1.3rem, 2vw, 1.9rem);
  font-weight: 800;
  line-height: 1.1;
}

.room-facts small {
  display: block;
  margin-top: .4rem;
  color: var(--muted-ink);
  font-size: .73rem;
  font-weight: 600;
  line-height: 1.3;
}

.room-price-source {
  font-size: .82rem;
}

.room-price-source a {
  color: var(--muted-ink);
  text-underline-offset: .2em;
}

.room-hero__media,
.room-media-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--divider);
}

.room-hero__media {
  min-height: 0;
  aspect-ratio: 4 / 3;
}

.room-hero__media > .gallery-trigger,
.room-hero__media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.room-hero__media picture,
.room-hero__media img,
.room-media-grid picture,
.room-media-grid img {
  width: 100%;
  height: 100%;
}

.room-hero__media img,
.room-media-grid img {
  object-fit: cover;
}

.room-hero__media figcaption,
.room-media-grid figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: .45rem .7rem;
  border-radius: 999px;
  background: rgb(11 56 84 / .88);
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
}

.room-split {
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  background: var(--gold);
  color: var(--navy);
}

.room-split__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(420px, .9fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}

.room-split h2,
.room-details h2,
.room-faq h2,
.other-spaces h2 {
  margin-bottom: 1rem;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.room-split__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .65rem;
}

.room-split__cards div {
  display: grid;
  gap: .15rem;
  padding: 1.2rem;
  background: rgb(255 255 255 / .58);
}

.room-split__cards strong {
  font-size: 1.15rem;
}

.room-details,
.room-media,
.room-faq,
.other-spaces {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.room-columns,
.room-faq__layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(3rem, 10vw, 9rem);
}

.check-list {
  display: grid;
  gap: .8rem;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 1rem 1rem 1rem 3rem;
  border-top: 1px solid var(--divider);
  font-size: clamp(1.02rem, 1.3vw, 1.18rem);
}

.check-list li::before {
  position: absolute;
  top: .95rem;
  left: .2rem;
  display: grid;
  width: 1.75rem;
  height: 1.75rem;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  content: "✓";
  font-size: .85rem;
  font-weight: 800;
}

.check-list--gold li::before {
  background: var(--gold);
  color: var(--navy);
}

.room-media {
  background: var(--white);
}

.room-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.room-media-grid figure {
  min-height: 430px;
}

.room-media-grid .gallery-trigger:focus-visible {
  outline: 4px solid var(--gold);
  outline-offset: -4px;
}

.room-media-grid .room-model img {
  object-fit: contain;
  background: var(--neutral);
}

.room-faq {
  background: var(--neutral);
}

.faq-list details {
  border-top: 1px solid var(--divider);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--divider);
}

.faq-list summary {
  padding: 1.25rem 2.5rem 1.25rem 0;
  color: var(--navy);
  cursor: pointer;
  font-size: 1.12rem;
  font-weight: 800;
}

.faq-list p {
  max-width: 66ch;
  padding: 0 1.5rem 1.4rem 0;
  color: var(--muted-ink);
}

.room-contact .contact-name {
  color: var(--gold);
  font-size: 1.35rem;
  font-weight: 800;
}

.contact-email {
  margin-top: .8rem;
}

.other-spaces {
  background: var(--white);
}

.other-spaces__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--divider);
}

.room-link-card {
  display: flex;
  min-height: 110px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--neutral);
  color: var(--navy);
  text-decoration: none;
  transition: background-color 180ms var(--ease-out), color 180ms var(--ease-out);
}

.room-link-card:hover {
  background: var(--navy);
  color: var(--white);
}

.room-link-card span {
  font-weight: 800;
}

.contact-section {
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
  background: var(--navy);
  color: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  align-items: end;
  gap: clamp(2rem, 8vw, 7rem);
}

.contact-mark {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 1.8rem;
  place-items: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.5rem;
}

.contact-section h2 {
  max-width: 12ch;
  margin-bottom: 1.2rem;
  font-size: clamp(2.4rem, 5.5vw, 5.4rem);
}

.contact-section p {
  max-width: 60ch;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .77);
}

.contact-person {
  display: grid;
  gap: .3rem;
}

.contact-person strong {
  margin-bottom: .65rem;
  color: var(--gold);
  font-size: 1.35rem;
}

.contact-person a:not(.button) {
  display: flex;
  min-height: 44px;
  align-items: center;
  overflow-wrap: anywhere;
  color: var(--white);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: .2em;
}

.contact-person .button {
  width: fit-content;
  margin-top: 1.4rem;
}

.site-footer {
  padding: 1.5rem 0;
  background: var(--navy-deep);
  color: rgba(255, 255, 255, .75);
}

.footer-layout {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: .88rem;
}

.footer-meta,
.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .35rem 1.15rem;
}

.footer-links a {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.footer-links a:hover {
  color: var(--gold);
}

.language-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 28px;
  background: var(--navy);
  color: var(--white);
}

.language-chooser {
  width: min(100%, 760px);
  padding: clamp(2rem, 7vw, 5.5rem);
  border: 1px solid rgba(255, 255, 255, .28);
}

.language-chooser__mark {
  display: grid;
  width: 88px;
  height: 66px;
  margin-bottom: clamp(2.5rem, 7vw, 5rem);
  place-items: center;
  border: 3px solid currentColor;
  font-size: 1.8rem;
  font-weight: 800;
}

.language-chooser__address {
  margin-bottom: 1rem;
  color: var(--gold);
  font-weight: 700;
}

.language-chooser h1 {
  max-width: 12ch;
  margin-bottom: 1.25rem;
  font-size: clamp(2.5rem, 8vw, 5.5rem);
}

.language-chooser > p:not(.language-chooser__address) {
  max-width: 56ch;
  color: rgba(255, 255, 255, .78);
  font-size: 1.1rem;
}

.language-chooser__links {
  display: flex;
  margin-top: 2rem;
  flex-wrap: wrap;
  gap: .8rem;
}

@media (min-width: 1440px) {
  :root {
    --content: 1280px;
  }

}

@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }

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

  .mobile-nav {
    display: block;
  }

  .space-row {
    grid-template-columns: 1.2fr .8fr 1.8fr;
  }

  .space-actions {
    grid-column: 3;
    justify-self: start;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 32px), var(--content));
  }

  .hero-panel__inner {
    width: min(calc(100% - 32px), var(--content));
  }

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

  .hero-proof__item:nth-child(odd) {
    border-left: 0;
  }

  .hero-proof__item:nth-child(even) {
    border-left: 1px solid var(--divider);
  }

  .space-row {
    grid-template-columns: 1fr 1fr;
    gap: 1rem 2rem;
  }

  .space-copy,
  .space-actions {
    grid-column: 1 / -1;
  }

  .benefits-layout,
  .location-layout,
  .contact-layout,
  .building-facts__layout,
  .room-hero__layout,
  .room-split__layout,
  .room-columns,
  .room-faq__layout {
    grid-template-columns: 1fr;
  }

  .room-media-grid,
  .other-spaces__grid {
    grid-template-columns: 1fr;
  }

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

  .building-facts__grid div:nth-child(3n + 2),
  .building-facts__grid div:nth-child(3n + 3) {
    padding-left: 0;
    border-left: 0;
  }

  .building-facts__grid div:nth-child(even) {
    padding-left: 1rem;
    border-left: 1px solid rgb(255 255 255 / .22);
  }

  .benefits-layout,
  .contact-layout {
    gap: 3.5rem;
  }

  .location-map {
    grid-row: 1;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: clamp(210px, 36vw, 300px);
  }

  .gallery-item:first-child {
    grid-column: 1 / -1;
    grid-row: span 2;
  }

  .gallery-item:nth-child(4) {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .gallery-item:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-item:nth-child(6) {
    grid-column: auto;
    grid-row: auto;
  }

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

@media (max-width: 600px) {
  html {
    scroll-padding-top: 116px;
  }

  .header-main {
    min-height: 68px;
    gap: .6rem;
  }

  .brand-mark {
    width: 49px;
    height: 44px;
    font-size: 1rem;
  }

  .brand-address {
    display: none;
  }

  .header-actions {
    gap: .25rem;
  }

  .room-hero {
    padding-top: 2.5rem;
  }

  .room-media-grid figure {
    min-height: 340px;
  }

  .room-facts,
  .room-split__cards,
  .building-facts__grid {
    grid-template-columns: 1fr;
  }


  .building-facts__grid div:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }

  .room-facts div + div {
    padding-left: 0;
    border-top: 1px solid var(--divider);
    border-left: 0;
  }

  .header-actions .button {
    min-height: 44px;
    padding: .66rem .82rem;
    font-size: .84rem;
  }

  .hero-stage {
    height: auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
  }

  .hero-media,
  .hero-panel {
    height: auto;
    grid-area: auto;
  }

  .hero-media {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .hero-media img {
    object-position: 58% center;
  }

  .hero-panel {
    width: 100%;
    min-height: 0;
    order: -1;
    background: rgba(11, 56, 84, .94);
  }

  .hero-panel__inner {
    width: calc(100% - 40px);
    padding: 2.5rem 0 3rem;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 12.5vw, 3.2rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-proof__item {
    min-height: 126px;
    padding: 1.25rem 1rem;
  }

  .hero-proof__item + .hero-proof__item,
  .hero-proof__item:nth-child(n) {
    border-left: 0;
  }

  .map-label {
    padding: .42rem .5rem;
    font-size: .62rem;
  }

  .floor-explorer__bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .floor-explorer__view-controls,
  .floor-explorer__controls {
    width: 100%;
  }

  .floor-explorer__view-controls button,
  .floor-explorer__controls a {
    flex: 1;
    justify-content: center;
  }

  .floor-explorer__hint {
    text-align: left;
  }

  .floor-stage {
    min-height: 0;
  }

  .floor-noscript {
    grid-template-columns: 1fr;
  }

  .floor-noscript figure + figure {
    border-top: 1px solid var(--divider);
    border-left: 0;
  }

  .space-row {
    min-height: 0;
    grid-template-columns: 1fr;
    padding-block: 1.6rem;
  }

  .space-copy,
  .space-actions {
    grid-column: auto;
  }

  .space-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .space-actions .button,
  .space-actions .text-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .technical-list {
    grid-template-columns: 1fr;
  }

  .technical-list li,
  .technical-list li:nth-child(even) {
    grid-column: auto;
    min-height: 0;
    padding: 1.15rem 0;
    border-left: 0;
  }

  .gallery-grid {
    display: flex;
    width: calc(100% + 16px);
    margin-left: 0;
    padding: 0 16px 1rem 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-color: var(--navy) var(--divider);
  }

  .gallery-item,
  .gallery-item:first-child,
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(6) {
    display: block;
    width: min(82vw, 330px);
    height: 430px;
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }

  .contact-person .button {
    width: 100%;
  }

  .footer-meta,
  .footer-links {
    align-items: flex-start;
    flex-direction: column;
  }

  .language-page {
    padding: 16px;
  }

  .language-chooser {
    padding: 2rem 1.35rem;
  }

  .language-chooser__links {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 479px) {
  .container {
    width: calc(100% - 32px);
  }

  .section-heading h2,
  .location-copy h2 {
    font-size: clamp(2rem, 10vw, 2.85rem);
  }

  .space-number {
    font-size: 2.65rem;
  }

  .contact-section h2 {
    font-size: clamp(2.25rem, 11vw, 3.1rem);
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
