:root {
  --ink: #11110f;
  --paper: #ffffff;
  --paper-2: #f3f0ea;
  --white: #ffffff;
  --rail: #c94124;
  --signal: #ffb000;
  --forest: #355143;
  --blue: #456073;
  --line: rgba(17, 17, 15, .18);
  --pad: 70px;
  --header: 84px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img { max-width: 100%; }

.grain {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  color: var(--white);
  background: linear-gradient(180deg, rgba(17, 17, 15, .78), rgba(17, 17, 15, 0));
  transition: background .28s ease, height .28s ease, border-color .28s ease;
}

.topbar.scrolled {
  height: 70px;
  background: rgba(17, 17, 15, .94);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(14px);
}

.brand img {
  display: block;
  width: 178px;
  height: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

nav a,
.hero-link,
.text-link,
.contact-button,
.contact-dialog button {
  color: inherit;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

nav a {
  position: relative;
  color: var(--white);
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--signal);
  transition: right .25s ease;
}

nav a:hover::after { right: 0; }

.nav-cta {
  border: 1px solid rgba(255, 255, 255, .55);
  padding: 13px 16px;
}

.nav-cta::after { display: none; }

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 18px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(17, 17, 15, .26);
  backdrop-filter: blur(10px);
}

.language-switch button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 28px;
  border: 0;
  padding: 0 8px;
  color: rgba(255, 255, 255, .72);
  background: transparent;
  font: inherit;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0;
  cursor: pointer;
}

.language-switch button.active {
  color: var(--ink);
  background: var(--signal);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 7px 0;
  background: var(--white);
}

.section {
  padding: 112px var(--pad);
}

.section-label {
  max-width: 360px;
  padding-top: 14px;
  border-top: 1px solid currentColor;
  opacity: .54;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow,
.kicker {
  margin: 0;
  color: inherit;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow::before,
.kicker::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 2px;
  margin-right: 12px;
  vertical-align: middle;
  background: var(--signal);
}

.hero {
  position: relative;
  min-height: 720px;
  height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

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

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 17, 15, .62), rgba(17, 17, 15, .08) 58%, rgba(17, 17, 15, .04)),
    linear-gradient(0deg, rgba(17, 17, 15, .54), rgba(17, 17, 15, 0) 50%);
}

.hero-content {
  position: absolute;
  z-index: 2;
  left: var(--pad);
  bottom: 12%;
  max-width: 960px;
  text-shadow: 0 2px 22px rgba(0, 0, 0, .42);
}

.hero-line-mark {
  position: absolute;
  right: -42px;
  bottom: -88px;
  z-index: 2;
  width: min(34vw, 430px);
  min-width: 260px;
  fill: none;
  stroke: var(--signal);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .38;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero h1 {
  max-width: 760px;
  margin: 28px 0 24px;
  font-size: 108px;
  line-height: .92;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
}

.hero-lead {
  max-width: 580px;
  margin: 0 0 36px;
  font-size: 23px;
  line-height: 1.35;
  color: rgba(255, 250, 240, .86);
}

.hero-link,
.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  border-bottom: 2px solid currentColor;
}

.hero-link::after,
.text-link::after,
.contact-button::after,
.contact-dialog button[type="submit"]::after {
  content: "↗";
  margin-left: 12px;
  color: var(--signal);
}

.intro {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 64px;
  align-items: start;
}

.intro-copy {
  max-width: 1040px;
}

.intro h2,
.location h2,
.tenant-head h2,
.contact h2 {
  margin: 24px 0 42px;
  font-size: 66px;
  line-height: .98;
  letter-spacing: 0;
}

.intro h2 span {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
}

.intro-copy > p:last-child,
.tenant-lead p {
  max-width: 760px;
  margin: 0;
  color: rgba(17, 17, 15, .72);
  font-size: 24px;
  line-height: 1.45;
}

.intro-facts {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
}

.intro-facts article {
  min-height: 150px;
  padding: 26px;
  background: var(--white);
}

.intro-facts b {
  display: block;
  margin-bottom: 42px;
  color: var(--rail);
  font-size: 26px;
}

.intro-facts span {
  display: block;
  color: rgba(17, 17, 15, .68);
  line-height: 1.45;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  background: var(--white);
  color: var(--ink);
}

.split-media {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 680px;
  margin: 0;
  overflow: hidden;
}

.sketch-media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(26px, 4vw, 72px);
  background:
    linear-gradient(135deg, #ffffff 0%, #f6f3ed 100%);
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.72) contrast(1.04);
}

.split-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 17, 15, .62), rgba(17, 17, 15, 0) 48%);
}

.sketch-media::after {
  display: none;
}

.sketch-stage {
  position: relative;
  width: min(100%, 980px);
  aspect-ratio: 6 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sketch-stage::before {
  content: "";
  position: absolute;
  inset: 7% 5% 5%;
  background: radial-gradient(ellipse, rgba(17, 17, 15, .09), rgba(17, 17, 15, 0) 66%);
  transform: translateY(28px);
}

.sketch-stage svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.sketch-line {
  --draw-delay: 0s;
  fill: none;
  stroke: #11110f;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 1;
  filter: url(#roughen);
  shape-rendering: geometricPrecision;
}

.sketch-line path,
.sketch-line circle {
  opacity: 0;
  stroke-dasharray: var(--path-length, 1000);
  stroke-dashoffset: var(--path-length, 1000);
}

.sketch-stage.sketch-ready .sketch-line path,
.sketch-stage.sketch-ready .sketch-line circle {
  opacity: 1;
}

.sketch-stage.sketch-running .sketch-line path,
.sketch-stage.sketch-running .sketch-line circle {
  animation: sketchDraw .64s cubic-bezier(.72, 0, .14, 1) forwards;
  animation-delay: var(--sketch-delay, 0s);
}

@keyframes sketchDraw {
  to { stroke-dashoffset: 0; }
}

.split-media figcaption {
  position: absolute;
  left: 28px;
  bottom: 26px;
  z-index: 2;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.sketch-media figcaption {
  color: rgba(17, 17, 15, .58);
}

.split-copy {
  padding: 112px var(--pad);
}

.split-copy h2 {
  margin: 26px 0 76px;
  font-size: 60px;
  line-height: 1;
  letter-spacing: 0;
}

.timeline article {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 28px;
  padding: 30px 0;
  border-top: 1px solid rgba(17, 17, 15, .18);
}

.timeline b,
.location-grid span,
.offer-list b {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.timeline h3,
.location-grid h3,
.day-list h3 {
  margin: 0 0 10px;
  font-size: 25px;
  line-height: 1.08;
}

.timeline p,
.location-grid p,
.day-list p,
.offer-list span {
  margin: 0;
  color: rgba(238, 233, 223, .68);
  font-size: 16px;
  line-height: 1.55;
}

.timeline .emphasis b,
.timeline .emphasis h3 { color: var(--rail); }

.timeline p {
  color: rgba(17, 17, 15, .66);
}

.location {
  background: var(--white);
}

.location-head {
  max-width: 1120px;
  margin: 70px 0 76px auto;
}

.location h2 {
  max-width: 1040px;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 72px;
  background: var(--line);
}

.location-grid article {
  min-height: 330px;
  padding: 30px;
  background: var(--white);
}

.location-grid span {
  color: var(--rail);
}

.location-grid h3 {
  margin-top: 94px;
}

.location-grid p,
.day-list p,
.offer-list span {
  color: rgba(17, 17, 15, .68);
}

.wide-photo {
  margin: 0;
}

.wide-photo img {
  display: block;
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.wide-photo figcaption {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 12px;
  color: rgba(17, 17, 15, .58);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.experience {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: var(--pad);
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.experience > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 17, 15, .68), rgba(17, 17, 15, .24) 44%, rgba(17, 17, 15, .02)),
    linear-gradient(0deg, rgba(17, 17, 15, .42), rgba(17, 17, 15, 0) 48%);
}

.experience-copy {
  position: relative;
  z-index: 2;
  max-width: 660px;
}

.experience h2 {
  margin: 28px 0 36px;
  font-size: 72px;
  line-height: .96;
  letter-spacing: 0;
}

.experience p:last-child,
.contact p:not(.kicker) {
  margin: 0;
  color: rgba(255, 250, 240, .78);
  font-size: 20px;
  line-height: 1.55;
}

.day {
  background: var(--white);
}

.day-layout {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 78px;
  margin-top: 70px;
  align-items: start;
}

.day-title {
  position: sticky;
  top: 120px;
  align-self: start;
}

.day h2 {
  margin: 24px 0 0;
  font-size: 52px;
  line-height: 1;
  letter-spacing: 0;
}

.day-live-photo {
  position: relative;
  width: min(520px, 100%);
  margin: 34px 0 0;
  aspect-ratio: 3 / 4.35;
  overflow: hidden;
  background: var(--ink);
  box-shadow:
    0 34px 80px rgba(17, 17, 15, .16),
    0 1px 0 rgba(255, 255, 255, .9) inset;
  isolation: isolate;
}

.day-live-photo img {
  position: absolute;
  inset: -4% -5%;
  width: 110%;
  height: 110%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 53%;
  filter: saturate(1.05) contrast(1.03) brightness(.98);
  animation: livePhotoDrift 8.4s ease-in-out infinite alternate;
}

.day-live-photo::before,
.day-live-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.day-live-photo::before {
  background:
    radial-gradient(circle at 51% 45%, rgba(255, 184, 74, .3), rgba(255, 184, 74, 0) 17%),
    radial-gradient(circle at 57% 47%, rgba(255, 218, 140, .22), rgba(255, 218, 140, 0) 15%),
    linear-gradient(180deg, rgba(17, 17, 15, 0), rgba(17, 17, 15, .14));
  mix-blend-mode: screen;
  opacity: .52;
  animation: stageLightPulse 1.55s steps(3, end) infinite;
}

.day-live-photo::after {
  background:
    linear-gradient(90deg, rgba(255, 176, 0, 0), rgba(255, 176, 0, .22) 46%, rgba(255, 176, 0, 0) 56%),
    radial-gradient(circle at 42% 58%, rgba(255, 206, 120, .2), rgba(255, 206, 120, 0) 18%);
  mix-blend-mode: screen;
  opacity: .22;
  transform: translateX(-58%) skewX(-12deg);
  animation: lightSweep 3.8s ease-in-out infinite;
}

.stage-glow,
.moving-guest {
  position: absolute;
  z-index: 3;
  pointer-events: none;
}

.stage-glow {
  width: 12px;
  height: 72px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 225, 151, 0), rgba(255, 184, 70, .92), rgba(255, 225, 151, 0));
  filter: blur(5px);
  opacity: .48;
  mix-blend-mode: screen;
  animation: stageFlicker .92s steps(2, end) infinite;
}

.glow-a { left: 43%; top: 42%; animation-delay: .08s; }
.glow-b { left: 55%; top: 43%; height: 88px; animation-delay: .34s; }
.glow-c { left: 66%; top: 42%; height: 64px; animation-delay: .58s; }

.moving-guest {
  width: 22px;
  height: 54px;
  border-radius: 48% 48% 38% 38%;
  background: rgba(12, 12, 10, .18);
  filter: blur(2px);
  opacity: 0;
}

.guest-a {
  left: 52%;
  top: 55%;
  animation: guestPass 6.8s ease-in-out infinite;
}

.guest-b {
  left: 36%;
  top: 62%;
  transform: scale(.8);
  animation: guestPass 8s ease-in-out infinite reverse;
  animation-delay: 2.4s;
}

@keyframes livePhotoDrift {
  0% { transform: translate3d(0, 0, 0) scale(1.01); filter: saturate(1.04) contrast(1.03) brightness(.96); }
  45% { transform: translate3d(-1.4%, -1.2%, 0) scale(1.035); filter: saturate(1.09) contrast(1.04) brightness(1.02); }
  100% { transform: translate3d(1.2%, 1.4%, 0) scale(1.025); filter: saturate(1.02) contrast(1.05) brightness(.99); }
}

@keyframes stageLightPulse {
  0%, 100% { opacity: .3; }
  28% { opacity: .78; }
  43% { opacity: .42; }
  61% { opacity: .88; }
  76% { opacity: .5; }
}

@keyframes lightSweep {
  0%, 18% { opacity: 0; transform: translateX(-70%) skewX(-12deg); }
  42% { opacity: .34; }
  64%, 100% { opacity: 0; transform: translateX(74%) skewX(-12deg); }
}

@keyframes stageFlicker {
  0%, 100% { opacity: .34; transform: scaleY(.88); }
  48% { opacity: .9; transform: scaleY(1.08); }
}

@keyframes guestPass {
  0%, 35%, 100% { opacity: 0; transform: translate3d(-18px, 8px, 0) scale(.78); }
  48% { opacity: .22; }
  63% { opacity: .1; transform: translate3d(18px, -6px, 0) scale(.86); }
}

.day-list article {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid rgba(17, 17, 15, .22);
}

.day-list span {
  color: var(--forest);
  font: italic 24px Georgia, "Times New Roman", serif;
}

.day-list h3,
.day-list p {
  grid-column: 2;
}

.day-list h3 {
  margin: 0;
}

.day-list p {
  max-width: 430px;
  margin: -10px 0 0;
}

.gallery {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  grid-template-rows: 1fr 1fr;
  gap: 5px;
  padding: 5px;
  background: var(--ink);
}

.gallery figure {
  height: 48vh;
  min-height: 380px;
  margin: 0;
  overflow: hidden;
}

.gallery-main {
  grid-row: span 2;
  height: calc(96vh + 5px) !important;
}

.gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}

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

.tenants {
  background: var(--white);
}

.levels {
  background:
    linear-gradient(180deg, #fff 0%, #f6f3ee 100%);
  overflow: hidden;
}

.levels-head {
  max-width: 1040px;
  margin: 70px 0 84px auto;
}

.levels h2 {
  max-width: 980px;
  margin: 24px 0 30px;
  font-size: 66px;
  line-height: .98;
  letter-spacing: 0;
}

.levels-head > p:last-child {
  max-width: 720px;
  margin: 0;
  color: rgba(17, 17, 15, .66);
  font-size: 21px;
  line-height: 1.5;
}

.level-stack {
  display: grid;
  gap: 94px;
}

.level-card {
  display: grid;
  grid-template-columns: .34fr .66fr;
  gap: 46px;
  align-items: start;
  padding-top: 42px;
  border-top: 1px solid rgba(17, 17, 15, .16);
}

.level-card.reverse {
  grid-template-columns: .34fr .66fr;
}

.level-copy span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  margin-bottom: 24px;
  padding: 0 12px;
  color: var(--white);
  background: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.level-copy h3 {
  margin: 0 0 22px;
  font-size: 36px;
  line-height: 1.05;
  letter-spacing: 0;
}

.level-copy p {
  margin: 0;
  color: rgba(17, 17, 15, .68);
  font-size: 18px;
  line-height: 1.55;
}

.plan-model {
  position: relative;
  margin: 0;
}

.plan-model::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: -20px;
  height: 46px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(17, 17, 15, .2), rgba(17, 17, 15, 0) 70%);
}

.plan-slab {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 15, .1);
  border-radius: 8px;
  background: #fff;
  box-shadow:
    0 28px 70px rgba(17, 17, 15, .14),
    0 1px 0 rgba(255, 255, 255, .92) inset;
}

.plan-slab::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .22), rgba(255, 255, 255, 0) 42%),
    linear-gradient(0deg, rgba(255, 176, 0, .06), rgba(255, 255, 255, 0) 58%);
  pointer-events: none;
}

.plan-slab img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #fbfaf8;
  filter: saturate(1.02) contrast(1.03) brightness(1.02);
}

.plan-model figcaption {
  margin-top: 12px;
  color: rgba(17, 17, 15, .5);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.tenant-head {
  max-width: 1120px;
  margin-top: 70px;
}

.tenant-columns {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 84px;
  margin-top: 70px;
}

.tenant-lead {
  position: sticky;
  top: 120px;
  align-self: start;
}

.tenant-lead .text-link {
  margin-top: 34px;
  color: var(--ink);
}

.offer-list {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.offer-list article {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 24px;
  align-items: start;
  padding: 28px;
  background: var(--white);
}

.offer-list b {
  color: var(--rail);
}

.tenant-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 80px;
  background: var(--line);
}

.tenant-stats article {
  padding: 34px;
  background: var(--forest);
  color: var(--white);
}

.tenant-stats strong {
  display: block;
  margin-bottom: 10px;
  color: var(--signal);
  font-size: 38px;
  line-height: 1;
}

.tenant-stats span {
  color: rgba(255, 250, 240, .78);
  line-height: 1.4;
}

.contact {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  padding: 120px var(--pad);
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.contact-inner {
  position: relative;
  z-index: 2;
  max-width: 950px;
}

.contact h2 {
  max-width: 900px;
  color: var(--white);
}

.contact p:not(.kicker) {
  max-width: 660px;
}

.contact-button,
.contact-dialog button[type="submit"] {
  min-height: 52px;
  margin-top: 34px;
  padding: 0 20px;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .56);
  cursor: pointer;
}

.contact-button:hover,
.contact-dialog button[type="submit"]:hover {
  color: var(--ink);
  background: var(--white);
}

.bottom-brand-mark {
  position: absolute;
  right: clamp(-180px, -8vw, -70px);
  bottom: clamp(-360px, -18vw, -190px);
  width: min(52vw, 820px);
  margin: 0;
  opacity: .58;
  transform: none;
  mix-blend-mode: screen;
  pointer-events: none;
}

.bottom-brand-mark img {
  display: block;
  width: 100%;
  filter: saturate(1.15) contrast(1.22) brightness(.8);
}

footer {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 24px;
  align-items: center;
  padding: 38px var(--pad);
  color: rgba(255, 250, 240, .7);
  background: #090908;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

footer img {
  width: 140px;
  filter: brightness(0) invert(1);
}

footer p {
  margin: 0;
}

footer p:nth-child(2) { text-align: center; }

footer p:last-child { text-align: right; }

footer a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, .36);
}

.contact-dialog {
  width: min(760px, calc(100vw - 32px));
  padding: 52px;
  color: var(--ink);
  background: var(--paper);
  border: 0;
  border-radius: 8px;
}

.contact-dialog::backdrop {
  background: rgba(0, 0, 0, .72);
  backdrop-filter: blur(8px);
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-size: 34px;
  cursor: pointer;
}

.contact-dialog h2 {
  margin: 22px 0 34px;
  font-size: 42px;
  line-height: 1.04;
  letter-spacing: 0;
}

.contact-dialog form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-dialog label {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-dialog input,
.contact-dialog textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid rgba(17, 17, 15, .45);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: 16px Arial, Helvetica, sans-serif;
}

.contact-dialog input:focus,
.contact-dialog textarea:focus {
  border-color: var(--rail);
}

.contact-dialog .full,
.contact-dialog button[type="submit"],
.form-note {
  grid-column: 1 / -1;
}

.contact-dialog button[type="submit"] {
  justify-self: start;
  color: var(--ink);
  border-color: var(--ink);
}

.form-note {
  margin: 0;
  color: rgba(17, 17, 15, .6);
  font-size: 13px;
  line-height: 1.4;
}

.form-note.success {
  color: var(--forest);
  font-weight: 800;
}

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

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

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .sketch-line path,
  .sketch-line circle {
    animation: none !important;
    stroke-dashoffset: 0;
  }
  .day-live-photo img,
  .day-live-photo::before,
  .day-live-photo::after,
  .stage-glow,
  .moving-guest {
    animation: none !important;
  }
  .gallery img { transition: none; }
}

@media (max-width: 1100px) {
  :root { --pad: 36px; }

  .hero h1 { font-size: 72px; }
  .intro h2,
  .location h2,
  .tenant-head h2,
  .levels h2,
  .contact h2 { font-size: 54px; }
  .location-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .location-grid article { min-height: 280px; }
}

@media (max-width: 860px) {
  :root {
    --pad: 22px;
    --header: 70px;
  }

  .topbar { padding: 0 var(--pad); }
  .brand img { width: 136px; }
  .language-switch {
    position: relative;
    z-index: 4;
    order: 2;
    margin-left: auto;
    margin-right: 8px;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 4;
    order: 3;
  }

  .topbar nav {
    position: fixed;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 28px;
    padding: 116px 28px 34px;
    background: var(--ink);
    transform: translateX(100%);
    transition: transform .34s ease;
  }

  .topbar nav.open { transform: none; }
  .topbar nav a { font-size: 24px; }
  .nav-cta { margin-top: auto; }

  .section { padding: 86px var(--pad); }
  .hero { min-height: 660px; }
  .hero-shade { background: linear-gradient(90deg, rgba(17, 17, 15, .9), rgba(17, 17, 15, .38)), linear-gradient(0deg, rgba(17, 17, 15, .86), rgba(17, 17, 15, 0) 54%); }
  .hero-content { right: var(--pad); bottom: 96px; }
  .hero h1 { font-size: 52px; line-height: .96; }
  .hero-lead { font-size: 19px; }
  .intro,
  .split,
  .day-layout,
  .tenant-columns,
  .level-card,
  .level-card.reverse {
    display: block;
  }

  .intro h2,
  .location h2,
  .tenant-head h2,
  .levels h2,
  .contact h2 { font-size: 42px; }

  .intro-copy,
  .tenant-head,
  .location-head,
  .levels-head { margin-top: 54px; }

  .intro-copy > p:last-child,
  .tenant-lead p {
    font-size: 20px;
  }

  .intro-facts {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .intro-facts b { margin-bottom: 22px; }

  .split-media {
    position: relative;
    height: 72vh;
    min-height: 520px;
  }

  .split-copy { padding: 84px var(--pad); }
  .split-copy h2,
  .experience h2,
  .day h2 { font-size: 42px; }

  .timeline article,
  .day-list article,
  .offer-list article {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .location-grid,
  .tenant-stats,
  .gallery {
    grid-template-columns: 1fr;
  }

  .location-grid article { min-height: 250px; }
  .location-grid h3 { margin-top: 52px; }
  .wide-photo img { height: 420px; }
  .wide-photo figcaption { display: grid; }

  .experience {
    min-height: 760px;
    padding: 86px var(--pad);
  }

  .experience-overlay { background: rgba(17, 17, 15, .72); }
  .day-title,
  .tenant-lead { position: static; }
  .day-live-photo {
    width: 100%;
    max-height: 680px;
  }
  .day-list h3,
  .day-list p {
    grid-column: auto;
  }
  .day-list { margin-top: 48px; }
  .level-stack { gap: 70px; }
  .plan-model { margin-top: 40px; }
  .plan-slab img {
    aspect-ratio: 16 / 10;
  }
  .gallery figure,
  .gallery-main {
    height: 58vh !important;
    min-height: 360px;
    grid-row: auto;
  }
  .offer-list { margin-top: 44px; }

  footer {
    grid-template-columns: 1fr;
    text-align: left;
  }
  footer p:nth-child(2),
  footer p:last-child { text-align: left; }
}

@media (max-width: 540px) {
  .eyebrow::before,
  .kicker::before {
    width: 22px;
    margin-right: 8px;
  }

  .hero h1 { font-size: 42px; }
  .intro h2,
  .location h2,
  .tenant-head h2,
  .levels h2,
  .contact h2 { font-size: 36px; }
  .hero-link,
  .text-link,
  .contact-button,
  nav a,
  .contact-dialog button { font-size: 11px; }
  .hero-image { object-position: 52% center; }
  .levels-head > p:last-child,
  .level-copy p { font-size: 17px; }
  .level-copy h3 { font-size: 27px; }
  .bottom-brand-mark {
    right: -110px;
    bottom: -150px;
    width: 430px;
    opacity: .42;
  }
  .contact-dialog {
    padding: 44px 22px 28px;
  }
  .contact-dialog form { grid-template-columns: 1fr; }
  .contact-dialog .full,
  .contact-dialog button[type="submit"],
  .form-note { grid-column: auto; }
}
