:root {
  --text: #f6f4ed;
  --muted: rgba(246, 244, 237, 0.7);
  --glass: rgba(28, 28, 36, 0.66);
  --line: rgba(255, 255, 255, 0.22);
  --font-sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  background: #101014;
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 400;
  overflow: hidden;
}

body {
  width: 100%;
  height: 100%;
  margin: 0;
  font-weight: 400;
  overflow: hidden;
}

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

.site-shell {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  isolation: isolate;
  background: #121219;
}

.parking-panel {
  display: grid;
  width: min(960px, calc(100% - 44px));
  min-height: 100vh;
  align-content: center;
  gap: clamp(18px, 2.4vw, 30px);
  margin: 0 auto;
  padding: clamp(120px, 16vh, 190px) 0 clamp(60px, 9vh, 100px);
}

.parking-eyebrow {
  margin: 0;
  color: rgba(246, 244, 237, 0.58);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.parking-panel h1 {
  max-width: 920px;
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(52px, 8vw, 140px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.92;
}

.parking-panel p:not(.parking-eyebrow) {
  max-width: 720px;
  margin: 0;
  color: rgba(246, 244, 237, 0.72);
  font-size: clamp(18px, 1.7vw, 28px);
  font-weight: 400;
  line-height: 1.35;
}

.parking-panel a {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  padding: 0 20px;
}

.parking-panel a:hover {
  background: rgba(255, 255, 255, 0.15);
}

.hero-video,
.hero-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  z-index: -4;
  background: #15111a;
}

body.has-runtime-video .hero-canvas {
  opacity: 0;
}

body.has-contact-video .contact-canvas {
  opacity: 0;
}

body.is-parking-page .hero-canvas,
body.is-parking-page .hero-video,
body.is-parking-page .film-grain,
body.is-parking-page .hero-vignette {
  display: none;
}

.film-grain {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.2;
  background-image:
    radial-gradient(circle at 17% 29%, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px),
    radial-gradient(circle at 74% 61%, rgba(0, 0, 0, 0.32) 0 1px, transparent 1px);
  background-size: 3px 3px, 4px 4px;
  mix-blend-mode: overlay;
}

.hero-vignette {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(9, 10, 13, 0.55), transparent 18%, transparent 72%, rgba(9, 10, 13, 0.72)),
    radial-gradient(circle at center, transparent 44%, rgba(8, 8, 11, 0.62) 100%);
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding: clamp(22px, 3vw, 38px);
}

.brand-mark {
  display: grid;
  grid-auto-flow: column;
  align-items: end;
  gap: 4px;
  width: 78px;
  height: 46px;
}

.brand-mark span {
  display: block;
  width: 8px;
  background: var(--text);
}

.brand-mark.has-custom-logo {
  display: block;
  width: auto;
  min-width: 78px;
  max-width: 160px;
  height: 46px;
}

.brand-mark.has-custom-logo img {
  display: block;
  width: auto;
  max-width: 160px;
  height: 100%;
  object-fit: contain;
}

.brand-mark span:nth-child(1) {
  height: 30px;
}

.brand-mark span:nth-child(2) {
  height: 30px;
}

.brand-mark span:nth-child(3) {
  height: 30px;
}

.brand-mark span:nth-child(4) {
  height: 36px;
}

.brand-mark span:nth-child(5) {
  height: 42px;
}

.brand-mark span:nth-child(6) {
  height: 46px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(14px, 2vw, 28px);
  padding-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 400;
}

.nav-links a {
  text-shadow: 0 1px 20px rgba(0, 0, 0, 0.62);
}

.nav-links a:hover {
  color: #fff;
}

.hero-copy {
  position: fixed;
  inset: 50% auto auto 50%;
  z-index: 4;
  width: min(980px, calc(100vw - 44px));
  text-align: center;
  transform: translate(-50%, -50%);
  animation: heroCopyIn 1400ms cubic-bezier(0.2, 0.8, 0.2, 1) 180ms both;
}

.kicker {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(42px, 7.2vw, 132px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.58);
}

@keyframes heroCopyIn {
  from {
    opacity: 0;
    filter: blur(14px);
    transform: translate(-50%, calc(-50% + 26px)) scale(0.98);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translate(-50%, -50%) scale(1);
  }
}

.info-panel {
  position: fixed;
  inset: clamp(92px, 10vh, 128px) clamp(18px, 3vw, 44px) clamp(22px, 3vw, 42px);
  z-index: 6;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(30px, 5vw, 88px);
  align-items: end;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(90deg, rgba(13, 14, 19, 0.94), rgba(21, 18, 27, 0.78)),
    rgba(12, 13, 17, 0.84);
  box-shadow: 0 32px 120px rgba(0, 0, 0, 0.42);
  opacity: 0;
  padding: clamp(28px, 4vw, 64px);
  pointer-events: none;
  transform: translateY(22px);
  transition:
    opacity 260ms ease,
    transform 260ms ease;
  backdrop-filter: blur(18px);
}

.info-panel:target {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.panel-close {
  position: absolute;
  top: 22px;
  right: 22px;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 400;
}

.panel-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.panel-copy {
  max-width: 980px;
}

.panel-kicker {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.panel-copy h2 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(44px, 7.5vw, 124px);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: 0;
}

.panel-copy p:not(.panel-kicker) {
  max-width: 720px;
  margin: clamp(22px, 3vw, 36px) 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(17px, 1.4vw, 24px);
  line-height: 1.36;
}

.about-panel {
  grid-template-columns: 1fr;
  align-content: end;
  gap: clamp(28px, 4vw, 56px);
}

.about-heading {
  max-width: 980px;
}

.about-heading h2 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(44px, 6vw, 92px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0;
}

.panel-details,
.contact-actions {
  display: grid;
  gap: 16px;
}

.contact-actions a {
  display: grid;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 18px;
}

.contact-actions span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
}

.contact-actions strong {
  font-family: var(--font-sans);
  font-size: clamp(24px, 2.4vw, 42px);
  font-weight: 400;
  line-height: 1;
}

.about-accordion {
  width: 100%;
  gap: 0;
}

.about-item {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  overflow: hidden;
  transition:
    border-color 260ms ease,
    background 260ms ease;
}

.about-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.about-summary {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) 34px;
  gap: clamp(16px, 3vw, 42px);
  width: 100%;
  align-items: center;
  border: 0;
  min-height: clamp(112px, 11vw, 160px);
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  outline: none;
  padding: clamp(16px, 2.2vw, 30px) 0;
  text-align: left;
}

.about-indicator {
  justify-self: end;
  color: rgba(255, 255, 255, 0.56);
  font-family: var(--font-sans);
  font-size: clamp(32px, 3vw, 52px);
  line-height: 1;
  transition: transform 180ms ease;
}

.about-item.is-active {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.045), transparent 72%);
  border-color: rgba(255, 255, 255, 0.3);
}

.about-summary:hover strong,
.about-summary:focus-visible strong {
  color: #fff;
}

.about-summary span:first-child {
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
}

.about-accordion strong {
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-sans);
  font-size: clamp(42px, 7vw, 116px);
  font-weight: 400;
  line-height: 0.9;
  transition:
    color 220ms ease,
    transform 260ms cubic-bezier(0.2, 0.72, 0.18, 1);
}

.about-item.is-active strong {
  transform: translateX(12px);
}

.about-detail-copy {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: clamp(16px, 3vw, 42px);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 34px 0 0;
  transform: translateY(24px);
  transform-origin: top;
  transition:
    max-height 420ms cubic-bezier(0.2, 0.72, 0.18, 1),
    opacity 260ms ease,
    padding-bottom 420ms cubic-bezier(0.2, 0.72, 0.18, 1),
    transform 360ms cubic-bezier(0.2, 0.72, 0.18, 1);
}

.about-item.is-active .about-detail-copy {
  max-height: 760px;
  opacity: 1;
  padding-bottom: clamp(28px, 4vw, 54px);
  transform: translateY(0);
}

.about-media {
  position: relative;
  min-height: clamp(160px, 18vw, 280px);
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(71, 120, 156, 0.28), rgba(166, 79, 131, 0.22)),
    #111722;
  isolation: isolate;
}

.about-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 22% 28%, rgba(230, 241, 255, 0.34), transparent 22%),
    radial-gradient(ellipse at 78% 52%, rgba(255, 166, 217, 0.3), transparent 25%),
    linear-gradient(100deg, transparent 0 32%, rgba(121, 210, 255, 0.5) 33% 35%, transparent 36%),
    linear-gradient(76deg, transparent 0 66%, rgba(255, 119, 194, 0.52) 67% 69%, transparent 70%);
}

.about-video,
.about-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-video:not([src]),
.about-image:not([src]) {
  display: none;
}

.about-text {
  display: grid;
  align-content: start;
  gap: 14px;
}

.about-detail-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(16px, 1.35vw, 22px);
  line-height: 1.42;
  transition: opacity 260ms ease;
}

.about-detail-copy p:first-child {
  color: rgba(255, 255, 255, 0.82);
}

.contact-actions a {
  transition:
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.contact-actions a:hover {
  border-color: rgba(255, 255, 255, 0.34);
  color: #fff;
  transform: translateX(8px);
}

.contact-panel {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.62fr);
  align-items: stretch;
}

.contact-media {
  position: relative;
  min-height: min(62vh, 680px);
  overflow: hidden;
  background: #121723;
  isolation: isolate;
}

.contact-video,
.contact-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-video {
  z-index: 0;
}

.contact-canvas {
  z-index: -1;
}

.contact-video:not([src]) {
  display: none;
}

.contact-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 10, 16, 0.74), rgba(7, 10, 16, 0.18) 62%, rgba(7, 10, 16, 0.56)),
    linear-gradient(180deg, rgba(7, 10, 16, 0.34), rgba(7, 10, 16, 0.8));
}

.contact-media-copy {
  position: absolute;
  left: clamp(24px, 3vw, 52px);
  right: clamp(24px, 3vw, 52px);
  bottom: clamp(24px, 3vw, 48px);
  z-index: 2;
  max-width: 760px;
}

.contact-media-copy h2 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(42px, 6.2vw, 104px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0;
}

.contact-media-copy p:not(.panel-kicker) {
  max-width: 620px;
  margin: clamp(18px, 2.2vw, 30px) 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(15px, 1.2vw, 20px);
  line-height: 1.38;
}

@media (max-width: 760px) {
  .topbar {
    align-items: flex-start;
  }

  .brand-mark {
    width: 58px;
    height: 36px;
    gap: 3px;
  }

  .brand-mark.has-custom-logo {
    min-width: 58px;
    height: 36px;
  }

  .brand-mark span {
    width: 6px;
  }

  .brand-mark span:nth-child(n) {
    height: 26px;
  }

  .brand-mark span:nth-child(4) {
    height: 30px;
  }

  .brand-mark span:nth-child(5) {
    height: 34px;
  }

  .brand-mark span:nth-child(6) {
    height: 36px;
  }

  .nav-links {
    max-width: 210px;
    gap: 10px 16px;
    font-size: 12px;
  }

  .hero-copy {
    top: 52%;
    width: min(520px, calc(100vw - 32px));
  }

  .hero-copy h1 {
    font-size: clamp(40px, 14vw, 84px);
    line-height: 0.94;
  }

  .info-panel {
    inset: 84px 14px 14px;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 30px;
    overflow-y: auto;
    padding: 24px;
  }

  .panel-close {
    top: 14px;
    right: 14px;
  }

  .panel-copy {
    padding-top: 42px;
  }

  .about-heading {
    padding-top: 42px;
  }

  .about-summary {
    grid-template-columns: 44px minmax(0, 1fr) 28px;
    min-height: 84px;
  }

  .about-detail-copy {
    grid-template-columns: 1fr;
    padding-right: 0;
  }

  .about-media {
    min-height: 210px;
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-media {
    min-height: 52vh;
  }

  .contact-media-copy {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }

  .hero-copy {
    animation: none;
  }

}
