* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--ivory);
}

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

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

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

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
}

p {
  line-height: 1.7;
}

.button,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.button {
  border-radius: 2px;
}

.button-ghost-light {
  color: #fff8eb;
  border-color: rgba(255, 248, 235, 0.42);
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  min-height: 78px;
  padding: 0 clamp(20px, 4vw, 64px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
}

.light-header {
  color: var(--ink);
  border-bottom-color: rgba(17, 19, 21, 0.12);
  background: rgba(248, 244, 236, 0.88);
}

.brand {
  justify-self: start;
}

.brand img {
  width: 142px;
  height: auto;
}

.text-brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.variant-nav {
  display: inline-flex;
  gap: clamp(18px, 2.2vw, 34px);
  align-items: center;
  min-height: 44px;
  padding: 0;
}

.variant-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0;
  color: inherit;
  font-family: Didot, "Bodoni 72", "Iowan Old Style", Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 1.25vw, 22px);
  font-weight: 400;
  line-height: 1;
  opacity: 0.82;
  transition: color 180ms ease, opacity 180ms ease;
}

.variant-nav a:hover,
.variant-nav .is-active {
  color: #69383c;
  opacity: 1;
}

.variant-nav a::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 50%;
  width: calc(100% + 18px);
  height: 1px;
  background: currentColor;
  opacity: 0.64;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease, opacity 220ms ease;
}

.variant-nav a:hover::after,
.variant-nav a:focus-visible::after,
.variant-nav .is-active::after {
  opacity: 0.82;
  transform: translateX(-50%) scaleX(1);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 2px;
  border: 1px solid rgba(128, 128, 128, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.language-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 8px;
  gap: 5px;
  border: 0;
  border-radius: 999px;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  opacity: 0.66;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, opacity 180ms ease;
}

.language-option:hover,
.language-option:focus-visible,
.language-option.is-active {
  color: #69383c;
  background: rgba(202, 169, 107, 0.22);
  opacity: 1;
  outline: none;
}

.language-flag {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 16px;
  height: 11px;
  overflow: hidden;
  border: 1px solid rgba(17, 19, 21, 0.18);
  border-radius: 2px;
  background: #fff;
}

.flag-ro {
  background: linear-gradient(90deg, #002b7f 0 33.333%, #fcd116 33.333% 66.666%, #ce1126 66.666% 100%);
}

.flag-eng {
  background:
    linear-gradient(27deg, transparent 44%, #fff 44% 50%, #ce1126 50% 56%, #fff 56% 62%, transparent 62%),
    linear-gradient(153deg, transparent 44%, #fff 44% 50%, #ce1126 50% 56%, #fff 56% 62%, transparent 62%),
    linear-gradient(90deg, transparent 36%, #fff 36% 45%, #ce1126 45% 55%, #fff 55% 64%, transparent 64%),
    linear-gradient(0deg, transparent 31%, #fff 31% 41%, #ce1126 41% 59%, #fff 59% 69%, transparent 69%),
    #012169;
}

.nav-toggle {
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: inherit;
  border: 1px solid rgba(128, 128, 128, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  position: absolute;
  width: 16px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span:nth-child(1) {
  transform: translateY(-5px);
}

.nav-toggle span:nth-child(3) {
  transform: translateY(5px);
}

.site-header.is-nav-open .nav-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

.site-header.is-nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-nav-open .nav-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.header-cta {
  justify-self: end;
  min-width: 74px;
  border-radius: 2px;
  color: #15120d;
  background: var(--champagne);
  cursor: pointer;
  font-family: inherit;
  text-transform: uppercase;
}

.hero-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

figcaption {
  padding: 14px 16px;
  color: rgba(255, 248, 235, 0.58);
  font-size: 12px;
}

.axis-page {
  color: #15120f;
  background: #f8f4ec;
  font-family: var(--sans);
}

.axis-page h1,
.axis-page h2,
.axis-page h3,
.axis-page .text-brand {
  font-family: Didot, "Bodoni 72", "Iowan Old Style", Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.axis-page .eyebrow,
.axis-page .section-kicker,
.axis-page .button,
.axis-page .header-cta {
  font-family: var(--sans);
}

.axis-page .section-kicker {
  color: #69383c;
}

.button-axis-gold {
  color: #17120b;
  border-color: #d4b16f;
  background: #d4b16f;
}

.axis-page .axis-header-contact {
  color: #17120b;
  border-color: #d4b16f;
  background: #d4b16f;
  font-family: Didot, "Bodoni 72", "Iowan Old Style", Georgia, "Times New Roman", serif;
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

.axis-header-contact:hover,
.axis-header-contact:focus-visible {
  color: #17120b;
  border-color: #b9914e;
  background: #d9b86f;
}

.axis-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: clamp(90px, 11vh, 132px) clamp(20px, 5vw, 74px) clamp(76px, 9vh, 112px);
  color: var(--ink);
  background: #f8f4ec;
  overflow: hidden;
}

.axis-hero-cultural-axis {
  position: absolute;
  z-index: 1;
  top: 54%;
  bottom: auto;
  left: clamp(-8px, 0.6vw, 8px);
  width: clamp(40px, 3.5vw, 54px);
  height: min(760px, calc(100% - clamp(150px, 18vh, 190px)));
  color: #caa96b;
  opacity: 0.54;
  pointer-events: none;
  transform: translateY(-50%);
}

.axis-hero-cultural-axis svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.axis-hero-cultural-axis svg {
  stroke-width: 1.7;
}

.axis-hero-axis-line {
  opacity: 0.7;
}

.axis-media img {
  object-position: left top;
  filter: none;
}

.axis-media .axis-hero-slide {
  position: absolute;
  inset: 0;
  object-position: left top;
  opacity: 0;
  transform: scale(1);
  transform-origin: center;
  transition: opacity 1.1s ease;
  will-change: opacity;
}

.axis-media .axis-hero-slide.is-active {
  opacity: 1;
}

.axis-media::after {
  content: "";
  display: none;
  pointer-events: none;
}

.axis-hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 48vw);
  max-width: 760px;
  margin-top: clamp(34px, 6vh, 72px);
}

.axis-hero-logo {
  width: clamp(148px, 13vw, 212px);
  height: auto;
  margin-bottom: clamp(22px, 3vh, 34px);
  filter: drop-shadow(0 1px 0 rgba(248, 244, 236, 0.72));
  transform: translateX(-7.6%);
}

.axis-hero .eyebrow {
  color: #111315;
  text-shadow: 0 1px 0 rgba(248, 244, 236, 0.72);
}

.axis-hero h1 {
  max-width: 740px;
  margin-bottom: 26px;
  color: #111315;
  font-size: clamp(56px, 5.2vw, 78px);
  line-height: 1.08;
  text-shadow: 0 1px 0 rgba(248, 244, 236, 0.74), 0 18px 44px rgba(248, 244, 236, 0.34);
}

.axis-hero-content > p:not(.eyebrow) {
  max-width: 640px;
  margin-bottom: 28px;
  color: #312d27;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.65;
  text-shadow: 0 1px 0 rgba(248, 244, 236, 0.72);
}

.axis-hero .button-ghost-light {
  color: var(--ink);
  border-color: rgba(105, 56, 60, 0.28);
  background: rgba(255, 255, 255, 0.38);
}

.axis-hero .button {
  position: relative;
  min-height: 58px;
  padding: 0 34px;
  overflow: hidden;
  border-radius: 3px;
  font-family: Didot, "Bodoni 72", "Iowan Old Style", Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0;
  transform: translateY(0);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.axis-hero .button::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 13px;
  left: 18px;
  height: 1px;
  background: currentColor;
  opacity: 0.34;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease, opacity 220ms ease;
}

.axis-hero .button:hover,
.axis-hero .button:focus-visible {
  outline: none;
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(54, 43, 31, 0.16);
}

.axis-hero .button:hover::after,
.axis-hero .button:focus-visible::after {
  opacity: 0.5;
  transform: scaleX(1);
}

.axis-hero .button-axis-gold:hover,
.axis-hero .button-axis-gold:focus-visible {
  border-color: #b9914e;
  background: #d9b86f;
}

.axis-hero .button-ghost-light:hover,
.axis-hero .button-ghost-light:focus-visible {
  border-color: rgba(105, 56, 60, 0.52);
  background: rgba(255, 255, 255, 0.64);
}

@media (prefers-reduced-motion: reduce) {
.axis-hero .button {
    transition: none;
  }

.axis-hero .button:hover,
.axis-hero .button:focus-visible {
    transform: none;
  }
}

.hero-actions button {
  cursor: pointer;
}

.axis-call-options {
  position: fixed;
  inset: 0;
  z-index: 1001;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 48px);
  background: rgba(21, 18, 15, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.axis-call-options[hidden] {
  display: none;
}

.axis-call-options-scrim {
  position: absolute;
  inset: 0;
  border: 0;
  background: transparent;
  cursor: zoom-out;
}

.axis-call-options-panel {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: calc(100vh - 36px);
  max-height: calc(100dvh - 36px);
  overflow-y: auto;
  padding: clamp(30px, 4vw, 46px);
  border: 1px solid rgba(202, 169, 107, 0.28);
  border-radius: 8px;
  color: #15120f;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(251, 247, 239, 0.94)),
    #fbf7ef;
  box-shadow: 0 28px 86px rgba(54, 43, 31, 0.24);
}

.axis-call-options-panel .eyebrow {
  margin-bottom: 12px;
  color: #caa96b;
}

.axis-call-options-panel h2 {
  margin-bottom: 24px;
  color: #15120f;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1;
}

.axis-call-options-section {
  display: grid;
  gap: 10px;
}

.axis-call-options-section + .axis-call-options-section {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(202, 169, 107, 0.28);
}

.axis-call-options-section-title {
  margin: 0;
  color: #caa96b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.axis-call-options-list {
  display: grid;
  gap: 10px;
}

.axis-call-options-list a,
.axis-call-options-list button {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 18px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid rgba(202, 169, 107, 0.24);
  border-radius: 8px;
  color: #15120f;
  background: rgba(255, 255, 255, 0.46);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.axis-call-options-list a::after,
.axis-call-options-list button::after {
  content: "Call";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  grid-column: 2;
  grid-row: 1;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  color: #17120b;
  background: rgba(212, 177, 111, 0.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.axis-email-options-list a::after {
  content: "Open";
}

.axis-email-options-list button::after {
  content: "Copy";
}

.axis-call-options-list a:hover,
.axis-call-options-list a:focus-visible,
.axis-call-options-list button:hover,
.axis-call-options-list button:focus-visible {
  border-color: #caa96b;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 30px rgba(54, 43, 31, 0.1);
  outline: none;
  transform: translateY(-1px);
}

.axis-call-options-list span {
  grid-column: 1;
  color: #69383c;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.axis-call-options-list strong {
  grid-column: 1;
  font-family: var(--sans);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  line-height: 1;
}

.axis-email-options-list strong {
  font-size: clamp(18px, 2.4vw, 24px);
}

.axis-call-email-list strong {
  font-size: clamp(18px, 2.1vw, 22px);
  overflow-wrap: anywhere;
}

.axis-email-copy-status {
  min-height: 22px;
  margin: 12px 0 0;
  color: #625b53;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.axis-call-options-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  color: #69383c;
  background: transparent;
  text-indent: -999px;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease;
}

.axis-call-options-close::before,
.axis-call-options-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 1px;
  background: currentColor;
}

.axis-call-options-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.axis-call-options-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.axis-context-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: min(1440px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 238px;
  padding: 0;
  border-top: 1px solid rgba(17, 19, 21, 0.18);
  border-bottom: 1px solid rgba(17, 19, 21, 0.18);
  background: #f8f4ec;
}

.axis-context-strip article {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px clamp(22px, 2.8vw, 42px);
  border-left: 1px solid rgba(17, 19, 21, 0.13);
}

.axis-context-strip article:first-child {
  border-left: 0;
}

.axis-context-heading {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-bottom: 12px;
}

.axis-context-icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  color: #69383c;
}

.axis-context-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.axis-context-strip strong {
  display: block;
  margin-bottom: 0;
  color: #69383c;
  font-family: Didot, "Bodoni 72", "Iowan Old Style", Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 2vw, 38px);
  font-weight: 400;
  line-height: 1.06;
}

.axis-context-strip p {
  margin-bottom: 0;
  color: #625b52;
  font-family: var(--sans);
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.5;
}

.axis-statement,
.axis-asset,
.axis-gallery,
.axis-renovation,
.axis-restaurant,
.axis-multifunction,
.axis-contact {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.axis-statement {
  padding: 78px 0 54px;
  border-top: 1px solid var(--line);
}

.axis-statement h2 {
  max-width: 960px;
  margin-bottom: 0;
  font-size: clamp(34px, 4.05vw, 64px);
  line-height: 1.04;
}

.axis-contact h2 + p {
  color: #6a6258;
}

.axis-asset {
  padding: 42px 0;
}

.axis-investment-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(460px, 0.98fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}

.asset-illustration {
  min-width: 0;
}

.asset-illustration .eyebrow {
  color: #caa96b;
}

.asset-illustration h2 {
  margin-bottom: 28px;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1;
}

.asset-sketch-wrap {
  position: relative;
  margin-top: 6px;
}

.asset-reference-illustration {
  display: block;
  width: 100%;
  height: auto;
}

.asset-label {
  position: absolute;
  z-index: 1;
  display: grid;
  gap: 4px;
  color: #625b53;
  text-shadow: 0 1px 0 rgba(248, 244, 236, 0.7);
}

.asset-label::after {
  content: "";
  position: absolute;
  top: 88px;
  width: 94px;
  border-top: 1px dotted rgba(73, 73, 68, 0.32);
}

.asset-label::before {
  content: "";
  position: absolute;
  top: 86px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.asset-label strong {
  font-family: Didot, "Bodoni 72", "Iowan Old Style", Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.asset-label span {
  color: #111315;
  font-family: Didot, "Bodoni 72", "Iowan Old Style", Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 3.1vw, 44px);
  line-height: 1;
}

.asset-label small {
  font-size: 14px;
  font-weight: 500;
}

.asset-label-a {
  top: 15%;
  left: 0;
}

.asset-label-a strong {
  color: #173d33;
}

.asset-label-a::after {
  left: 38px;
  transform: translateX(100%);
}

.asset-label-a::before {
  left: 134px;
  background: #173d33;
}

.asset-label-b {
  top: 35%;
  right: 0;
}

.asset-label-b strong {
  color: #69383c;
}

.asset-label-b::after {
  right: 38px;
  transform: translateX(-100%);
}

.asset-label-b::before {
  right: 134px;
  background: #69383c;
}

.axis-revenue-panel {
  min-width: 0;
  padding-top: 8px;
}

.axis-revenue-table {
  width: 100%;
  border-collapse: collapse;
  color: #3f3934;
  font-family: var(--sans);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.45;
  table-layout: fixed;
}

.axis-revenue-table th,
.axis-revenue-table td {
  padding: 15px 0;
  border-bottom: 1px solid rgba(17, 19, 21, 0.14);
  text-align: left;
  vertical-align: middle;
}

.axis-revenue-table thead th {
  padding-top: 0;
  padding-bottom: 12px;
  color: #69383c;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.axis-revenue-table thead th:first-child,
.axis-revenue-table tbody th {
  width: 37%;
}

.axis-revenue-table thead th:nth-child(2),
.axis-revenue-table tbody td:first-of-type {
  width: 43%;
}

.axis-revenue-table thead th:last-child,
.axis-revenue-table tbody td:last-child {
  width: 20%;
  padding-left: 16px;
}

.axis-revenue-table tbody th {
  color: #3c3631;
  font-weight: 600;
}

.revenue-stream-cell {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  min-height: 48px;
}

.revenue-title {
  display: block;
  align-self: center;
  min-width: 0;
  line-height: 1.25;
}

.revenue-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin: 0;
  color: #caa96b;
  justify-self: center;
}

.revenue-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.axis-revenue-table td {
  color: #625b53;
}

.axis-renovation {
  padding: 0;
  border-bottom: 0;
}

@media (min-width: 921px) {
  .axis-renovation {
    margin-top: 24px;
  }
}

.axis-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(640px, 62vw);
  height: 28px;
  margin: 0 auto 32px;
  color: #caa96b;
}

.axis-ornament::before,
.axis-ornament::after {
  content: "";
  flex: 1;
  height: 1px;
  background: currentColor;
}

.axis-ornament::before {
  background: linear-gradient(90deg, rgba(202, 169, 107, 0), currentColor);
}

.axis-ornament::after {
  background: linear-gradient(90deg, currentColor, rgba(202, 169, 107, 0));
}

.axis-ornament span {
  position: relative;
  display: block;
  width: 132px;
  height: 28px;
  flex: 0 0 132px;
}

.axis-ornament span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  border: 1px solid currentColor;
  background: #f8f4ec;
  transform: translate(-50%, -50%) rotate(45deg);
}

.axis-ornament span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(50% - 48px);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 24px 0 0 currentColor, 72px 0 0 currentColor, 96px 0 0 currentColor;
  transform: translate(-50%, -50%);
}

.axis-ornament-bottom {
  margin: 42px auto 0;
}

.axis-renovation-heading {
  margin-bottom: 34px;
}

.axis-renovation-heading .eyebrow {
  margin-bottom: 0;
  color: #caa96b;
}

.axis-renovation-heading h2 {
  max-width: 720px;
  margin-bottom: 0;
  color: #15120f;
  font-size: clamp(38px, 4.8vw, 68px);
  line-height: 1;
}

.axis-renovation-line {
  --renovation-axis-inset: clamp(20px, 2.4vw, 34px);
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  padding: 30px var(--renovation-axis-inset) 0;
  border-top: 0;
}

.axis-renovation-line::before {
  content: "";
  position: absolute;
  top: 0;
  right: var(--renovation-axis-inset);
  left: var(--renovation-axis-inset);
  height: 1px;
  background: rgba(202, 169, 107, 0.72);
}

.axis-renovation-line article {
  position: relative;
  min-width: 0;
  padding: 0 clamp(14px, 1.6vw, 24px) 0 0;
}

.axis-renovation-line article::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: -35px;
  left: 0;
  width: 9px;
  height: 9px;
  border: 1px solid #caa96b;
  border-radius: 50%;
  background: #f8f4ec;
}

.axis-renovation-line article::after {
  content: "";
  position: absolute;
  top: -31px;
  left: 4px;
  width: 1px;
  height: 24px;
  background: rgba(202, 169, 107, 0.64);
}

.axis-renovation-line span {
  display: block;
  margin-bottom: 13px;
  color: #caa96b;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.axis-renovation-line strong {
  display: block;
  margin-bottom: 9px;
  color: #69383c;
  font-family: Didot, "Bodoni 72", "Iowan Old Style", Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.1vw, 36px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

.axis-renovation-line p {
  margin-bottom: 0;
  color: #625b53;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
}

.axis-restaurant {
  padding: 42px 0 0;
  border-bottom: 0;
}

.axis-restaurant-story {
  display: grid;
  gap: 34px;
  margin-bottom: 34px;
}

.axis-restaurant-title .eyebrow {
  color: #caa96b;
}

.axis-restaurant-title h2 {
  max-width: 1080px;
  margin-bottom: 0;
  color: #15120f;
  font-size: clamp(42px, 5vw, 82px);
  line-height: 1.02;
}

.axis-restaurant-copy {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: start;
  padding-top: 0;
}

.axis-restaurant-copy > p {
  max-width: 760px;
  margin-bottom: 0;
  color: #625b53;
  font-family: var(--sans);
  font-size: clamp(16px, 1.12vw, 18px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.68;
}

.axis-restaurant-signals {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(17, 19, 21, 0.13);
  border-left: 0;
}

.axis-restaurant-signals article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 8px 18px;
  align-content: center;
  align-items: start;
  min-height: 174px;
  padding: 22px 18px;
  border-right: 0;
  border-bottom: 1px solid rgba(17, 19, 21, 0.13);
}

.axis-restaurant-signals article:not(:last-child) {
  border-right: 1px solid rgba(17, 19, 21, 0.13);
}

.axis-restaurant-signals .signal-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  justify-self: center;
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 42px;
  height: 42px;
  margin-bottom: 0;
  color: #caa96b;
}

.axis-restaurant-signals .signal-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.axis-restaurant-signals .signal-label {
  display: block;
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  margin-bottom: 0;
  color: #caa96b;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.axis-restaurant-signals strong {
  display: block;
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  color: #69383c;
  font-family: Didot, "Bodoni 72", "Iowan Old Style", Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 1.65vw, 28px);
  font-weight: 400;
  line-height: 1.08;
}

.axis-restaurant-carousel {
  position: relative;
  padding-top: 0;
}

.axis-restaurant-carousel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.axis-restaurant-carousel-head p {
  margin: 0;
  color: #69383c;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.axis-restaurant-controls {
  position: absolute;
  z-index: 3;
  top: var(--restaurant-control-center, clamp(202px, 20vw, 270px));
  right: clamp(14px, 1.8vw, 26px);
  left: clamp(14px, 1.8vw, 26px);
  display: flex;
  justify-content: space-between;
  gap: 8px;
  pointer-events: none;
  transform: translateY(-50%);
}

.axis-restaurant-controls button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(202, 169, 107, 0.58);
  border-radius: 50%;
  color: #caa96b;
  background: rgba(251, 247, 239, 0.94);
  cursor: pointer;
  pointer-events: auto;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.axis-restaurant-controls svg,
.axis-lightbox-nav svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.axis-restaurant-controls button:hover {
  color: #69383c;
  border-color: #caa96b;
  background: rgba(202, 169, 107, 0.12);
}

.axis-restaurant-track {
  display: grid;
  grid-auto-columns: minmax(320px, 40%);
  grid-auto-flow: column;
  gap: 22px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 0 clamp(58px, 6vw, 88px) 2px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.axis-restaurant-track::-webkit-scrollbar {
  display: none;
}

.axis-restaurant-track:focus {
  outline: 1px solid rgba(202, 169, 107, 0.72);
  outline-offset: 6px;
}

.axis-restaurant-track figure:focus-visible {
  outline: 1px solid rgba(202, 169, 107, 0.9);
  outline-offset: 6px;
}

[data-lightbox-gallery] figure:focus-visible {
  outline: 1px solid rgba(202, 169, 107, 0.9);
  outline-offset: 6px;
}

.axis-restaurant-track figure {
  scroll-snap-align: center;
  margin: 0;
  min-width: 0;
  cursor: zoom-in;
}

.axis-restaurant-track img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.axis-restaurant-track figure:hover img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.018);
}

.axis-restaurant-track figcaption {
  position: relative;
  min-height: 74px;
  padding: 18px 0 0;
  color: #625b53;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
}

.axis-restaurant-track figcaption::before {
  content: "";
  display: block;
  width: 52px;
  height: 1px;
  margin-bottom: 14px;
  background: #caa96b;
}

.axis-restaurant-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  min-height: 16px;
  margin-top: 28px;
}

.axis-restaurant-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(202, 169, 107, 0.38);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease, opacity 180ms ease;
}

.axis-restaurant-dots button:hover,
.axis-restaurant-dots button.is-active {
  width: 34px;
  background: #caa96b;
}

.axis-evidence-dots {
  display: none;
}

.is-lightbox-open {
  overflow: hidden;
}

.axis-photo-lightbox {
  --lightbox-outer-pad: clamp(18px, 3vw, 44px);
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: var(--lightbox-outer-pad);
  background: rgba(251, 247, 239, 0.42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.axis-photo-lightbox[hidden] {
  display: none;
}

.axis-lightbox-scrim {
  position: absolute;
  inset: 0;
  border: 0;
  background: transparent;
  cursor: zoom-out;
}

.axis-lightbox-panel {
  position: relative;
  --lightbox-pad: clamp(10px, 1.6vw, 22px);
  --lightbox-arrow-gutter: clamp(92px, 6vw, 118px);
  display: grid;
  width: min(1440px, 100%);
  min-height: min(800px, 88vh);
  max-height: calc(100vh - var(--lightbox-outer-pad) - var(--lightbox-outer-pad));
  max-height: calc(100dvh - var(--lightbox-outer-pad) - var(--lightbox-outer-pad));
  padding: var(--lightbox-pad);
  border: 0;
  background: transparent;
  box-shadow: none;
}

.axis-lightbox-panel figure {
  display: grid;
  grid-template-rows: auto auto;
  gap: 18px;
  align-content: center;
  min-height: calc(min(800px, 88vh) - clamp(20px, 3.2vw, 44px));
  max-height: calc(100vh - var(--lightbox-outer-pad) - var(--lightbox-outer-pad) - var(--lightbox-pad) - var(--lightbox-pad));
  max-height: calc(100dvh - var(--lightbox-outer-pad) - var(--lightbox-outer-pad) - var(--lightbox-pad) - var(--lightbox-pad));
  margin: 0;
  padding-inline: var(--lightbox-arrow-gutter);
}

.axis-lightbox-panel img {
  align-self: end;
  width: 100%;
  height: auto;
  max-height: 72vh;
  object-fit: contain;
  background: transparent;
}

.axis-lightbox-panel figcaption {
  position: relative;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 24px;
  align-self: start;
  align-items: start;
  padding: 18px 22px 20px;
  border-top: 1px solid rgba(202, 169, 107, 0.72);
  isolation: isolate;
}

.axis-lightbox-panel figcaption::before {
  content: "";
  position: absolute;
  inset: 0 -22px -12px;
  z-index: -1;
  background: rgba(251, 247, 239, 0.72);
  box-shadow: 0 0 30px 22px rgba(251, 247, 239, 0.56);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.axis-lightbox-panel figcaption span {
  color: #caa96b;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.axis-lightbox-panel figcaption p {
  max-width: 720px;
  margin-bottom: 0;
  color: #625b53;
  font-family: var(--sans);
  font-size: clamp(16px, 1.18vw, 20px);
  font-weight: 400;
  line-height: 1.55;
}

.axis-lightbox-close,
.axis-lightbox-nav {
  position: absolute;
  border: 1px solid rgba(105, 56, 60, 0.28);
  border-radius: 0;
  color: #69383c;
  background: rgba(251, 247, 239, 0.86);
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.axis-lightbox-close:hover,
.axis-lightbox-nav:hover {
  color: #15120f;
  border-color: #caa96b;
  background: rgba(202, 169, 107, 0.12);
}

.axis-lightbox-close {
  top: calc(var(--lightbox-pad) + clamp(48px, 6vh, 92px));
  right: calc((var(--lightbox-arrow-gutter) - 48px) / 2);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-height: 0;
  padding: 0;
  border-color: rgba(202, 169, 107, 0.62);
  border-radius: 50%;
  color: #69383c;
  background: rgba(251, 247, 239, 0.94);
  box-shadow: 0 12px 34px rgba(17, 19, 21, 0.12);
  font-family: var(--sans);
  font-size: 0;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.axis-lightbox-close::before,
.axis-lightbox-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1.5px;
  background: currentColor;
  transform: translate(-50%, -50%) rotate(45deg);
}

.axis-lightbox-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.axis-lightbox-close:hover {
  color: #15120f;
  border-color: #caa96b;
  background: rgba(202, 169, 107, 0.14);
}

.axis-lightbox-nav {
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(202, 169, 107, 0.58);
  border-radius: 50%;
  color: #caa96b;
  background: rgba(251, 247, 239, 0.94);
  transform: translateY(-50%);
}

.axis-lightbox-nav:hover {
  color: #69383c;
  border-color: #caa96b;
  background: rgba(202, 169, 107, 0.12);
}

.axis-lightbox-prev {
  left: calc((var(--lightbox-arrow-gutter) - 52px) / 2);
}

.axis-lightbox-next {
  right: calc((var(--lightbox-arrow-gutter) - 52px) / 2);
}

.axis-multifunction {
  padding: 24px 0;
  border-bottom: 0;
}

.axis-multifunction-story {
  display: grid;
  gap: 34px;
  margin-bottom: 34px;
}

.axis-multifunction-title .eyebrow {
  color: #caa96b;
}

.axis-multifunction-title h2 {
  max-width: 1080px;
  margin-bottom: 0;
  color: #15120f;
  font-size: clamp(42px, 5vw, 82px);
  line-height: 1.02;
}

.axis-multifunction-copy {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: start;
}

.axis-multifunction-copy > p {
  max-width: 760px;
  margin-bottom: 0;
  color: #625b53;
  font-family: var(--sans);
  font-size: clamp(16px, 1.12vw, 18px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.68;
}

.axis-multifunction-signals {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: none;
  border-top: 1px solid rgba(17, 19, 21, 0.13);
  border-left: 0;
}

.axis-multifunction-signals article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 8px 18px;
  align-content: center;
  align-items: start;
  min-height: 174px;
  padding: 22px 18px;
  border-right: 0;
  border-bottom: 1px solid rgba(17, 19, 21, 0.13);
}

.axis-multifunction-signals article:not(:last-child) {
  border-right: 1px solid rgba(17, 19, 21, 0.13);
}

.axis-multifunction-signals .signal-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  justify-self: center;
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 42px;
  height: 42px;
  margin-bottom: 0;
  color: #caa96b;
}

.axis-multifunction-signals .signal-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.axis-multifunction-signals .signal-label {
  display: block;
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  margin-bottom: 0;
  color: #caa96b;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.axis-multifunction-signals strong {
  display: block;
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  color: #69383c;
  font-family: Didot, "Bodoni 72", "Iowan Old Style", Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 1.65vw, 28px);
  font-weight: 400;
  line-height: 1.08;
}

.axis-multifunction-dossier {
  padding-top: 0;
}

.axis-multifunction-dossier-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.axis-multifunction-dossier-head p {
  margin: 0;
  color: #69383c;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.axis-multifunction-dossier-head span {
  color: #caa96b;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.axis-multifunction-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px 22px;
}

.axis-multifunction-grid figure {
  cursor: zoom-in;
  margin: 0;
  min-width: 0;
}

.axis-multifunction-grid .is-wide {
  grid-column: span 2;
}

.axis-multifunction-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: filter 360ms ease, transform 360ms ease;
}

.axis-multifunction-grid figure:hover img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.018);
}

.axis-multifunction-grid figcaption {
  position: relative;
  padding-top: 16px;
  color: #625b53;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
}

.axis-multifunction-grid figcaption::before {
  content: "";
  display: block;
  width: 52px;
  height: 1px;
  margin-bottom: 12px;
  background: #caa96b;
}

.revenue-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #4f4740;
  font-weight: 600;
  white-space: nowrap;
}

.revenue-status i {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4db984;
}

.status-upside i {
  background: #caa96b;
}

.program-option {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.program-option .eyebrow {
  color: #caa96b;
}

.program-option {
  padding: 94px 0;
  border-bottom: 1px solid rgba(17, 19, 21, 0.14);
}

.program-option:last-child {
  border-bottom: 0;
}

.program-dossier-intro {
  display: grid;
  grid-template-columns: 0.34fr minmax(0, 1fr);
  gap: clamp(26px, 4vw, 64px);
  margin-bottom: 64px;
}

.program-dossier-intro h2 {
  max-width: 920px;
  margin-bottom: 22px;
  font-size: clamp(38px, 5.4vw, 76px);
  line-height: 1.02;
}

.program-dossier-intro p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: #625b52;
  font-family: var(--sans);
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.65;
}

.corp-dossier {
  padding-top: 34px;
  border-top: 1px solid rgba(17, 19, 21, 0.16);
}

.corp-dossier + .corp-dossier {
  margin-top: 88px;
}

.corp-dossier-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
  max-width: 880px;
  margin-bottom: 42px;
}

.corp-dossier-head h3 {
  max-width: 760px;
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6.2vw, 92px);
  font-weight: 500;
  line-height: 1.02;
}

.corp-dossier-head > p {
  max-width: 720px;
  margin-bottom: 0;
  color: #625b52;
  font-family: var(--sans);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.65;
}

.corp-dossier-facts {
  display: grid;
  max-width: 720px;
  border-top: 1px solid rgba(17, 19, 21, 0.14);
}

.corp-dossier-facts span {
  padding: 15px 0;
  border-bottom: 1px solid rgba(17, 19, 21, 0.12);
  color: #69383c;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.35;
  text-transform: uppercase;
}

.corp-dossier-a .corp-dossier-facts span {
  color: #173d33;
}

.corp-evidence-book {
  display: grid;
  gap: 58px;
}

.corp-evidence-chapter {
  display: grid;
  grid-template-columns: minmax(220px, 0.28fr) minmax(0, 1fr);
  gap: clamp(28px, 4.2vw, 64px);
  align-items: start;
  padding-top: 28px;
  border-top: 1px solid rgba(17, 19, 21, 0.14);
}

.evidence-copy {
  position: sticky;
  top: 96px;
  align-self: start;
  display: grid;
  gap: 12px;
}

.evidence-copy span {
  color: #caa96b;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.evidence-copy h4 {
  margin: 0;
  color: #69383c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 2.8vw, 42px);
  font-weight: 500;
  line-height: 1.05;
}

.corp-dossier-a .evidence-copy h4 {
  color: #173d33;
}

.evidence-copy p {
  margin-bottom: 0;
  color: #625b52;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
}

.evidence-photos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.evidence-three,
.evidence-b-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.evidence-support-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.evidence-b-focus {
  grid-template-columns: minmax(0, 0.58fr);
}

.evidence-reposition {
  grid-template-columns: minmax(220px, 0.46fr) minmax(0, 0.72fr);
  align-items: start;
}

.evidence-reposition figure:first-child img {
  aspect-ratio: 3 / 4;
}

.evidence-reposition figure:last-child img {
  aspect-ratio: 4 / 3;
}

.evidence-photos figure {
  margin: 0;
}

.evidence-photos img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.evidence-photos .is-wide {
  grid-column: span 2;
}

.evidence-photos .is-wide img {
  aspect-ratio: 16 / 8.2;
}

.evidence-photos figcaption {
  padding: 10px 0 0;
  color: #625b52;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.axis-integrated-dossier {
  padding-top: 54px;
  padding-bottom: 0;
  border-bottom: 0;
}

.axis-integrated-dossier .program-dossier-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 54px;
  padding-bottom: 18px;
}

.axis-integrated-dossier .program-dossier-intro .eyebrow {
  margin-bottom: 2px;
}

.axis-integrated-dossier .program-dossier-intro h2 {
  max-width: 960px;
  margin-bottom: 0;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1;
}

.axis-integrated-dossier .program-dossier-intro p:last-child {
  max-width: 760px;
  font-size: 17px;
  line-height: 1.65;
}

.axis-integrated-dossier .corp-dossier {
  padding-top: 0;
  border-top: 0;
}

.axis-integrated-dossier .corp-dossier + .corp-dossier {
  margin-top: 112px;
}

.axis-integrated-dossier .corp-dossier-head {
  display: grid;
  grid-template-columns: minmax(340px, 0.56fr) minmax(340px, 0.44fr);
  gap: clamp(34px, 5vw, 72px);
  max-width: none;
  margin-bottom: 42px;
  padding-bottom: 42px;
}

.axis-integrated-dossier .corp-dossier-title {
  display: grid;
  gap: 18px;
}

.axis-integrated-dossier .corp-dossier-title .corp-dossier-eyebrow {
  margin-bottom: -4px;
  color: #caa96b;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.axis-integrated-dossier .corp-dossier-title h3 {
  max-width: 680px;
  margin-bottom: 0;
  color: #69383c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 5.4vw, 78px);
  font-weight: 500;
  line-height: 0.98;
}

.axis-integrated-dossier .corp-dossier-title h3 {
  color: #15120f;
}

.axis-integrated-dossier .corp-dossier-title p {
  max-width: 760px;
  margin-bottom: 0;
  color: #625b52;
  font-family: var(--sans);
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.68;
}

.axis-integrated-dossier .corp-dossier-facts {
  display: grid;
  gap: 0;
  align-self: start;
  max-width: 640px;
  border-top: 1px solid rgba(17, 19, 21, 0.14);
}

.axis-integrated-dossier .corp-dossier-facts article {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 78px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(17, 19, 21, 0.14);
}

.axis-integrated-dossier .corp-fact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #caa96b;
  justify-self: center;
}

.axis-integrated-dossier .corp-dossier-facts .corp-fact-icon {
  padding: 0;
  border: 0;
  color: #caa96b;
  font-size: inherit;
  font-weight: inherit;
  line-height: 1;
  text-transform: none;
}

.axis-integrated-dossier .corp-fact-icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.axis-integrated-dossier .corp-dossier-facts strong {
  color: #3c3631;
  font-family: var(--sans);
  font-size: clamp(16px, 1.25vw, 20px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: none;
}

.axis-integrated-dossier .corp-evidence-book {
  gap: 72px;
}

.axis-integrated-dossier .corp-evidence-chapter {
  grid-template-columns: minmax(250px, 0.27fr) minmax(0, 1fr);
  gap: clamp(38px, 5vw, 78px);
  padding-top: 34px;
  border-top: 1px solid rgba(17, 19, 21, 0.14);
}

.axis-integrated-dossier .corp-evidence-chapter:first-child {
  padding-top: 0;
  border-top: 0;
}

.axis-integrated-dossier .evidence-copy {
  top: 108px;
  gap: 14px;
}

.axis-integrated-dossier .evidence-copy span {
  color: #caa96b;
  font-family: var(--sans);
  font-size: 13px;
}

.axis-integrated-dossier .evidence-copy h4 {
  color: #69383c;
  font-size: clamp(30px, 2.9vw, 44px);
  line-height: 1.02;
}

.axis-integrated-dossier .corp-dossier-a .evidence-copy h4 {
  color: #173d33;
}

.axis-integrated-dossier .evidence-copy p {
  max-width: 300px;
  font-size: 15px;
  line-height: 1.65;
}

.axis-integrated-dossier .evidence-photos,
.axis-integrated-dossier .evidence-three,
.axis-integrated-dossier .evidence-room-grid,
.axis-integrated-dossier .evidence-support-grid,
.axis-integrated-dossier .evidence-b-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px 22px;
}

.axis-integrated-dossier .evidence-reposition {
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  gap: 22px;
}

.axis-integrated-dossier .evidence-b-focus {
  grid-template-columns: minmax(280px, 0.56fr);
}

.axis-integrated-dossier .evidence-photos figure {
  display: grid;
  gap: 14px;
  align-self: start;
  overflow: hidden;
  cursor: zoom-in;
}

.axis-integrated-dossier .evidence-photos img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: filter 360ms ease, transform 360ms ease;
  will-change: transform;
}

.axis-integrated-dossier .evidence-photos figure:hover img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.035);
}

.axis-integrated-dossier .evidence-photos .is-wide {
  grid-column: auto;
}

.axis-integrated-dossier .evidence-photos .is-wide img {
  aspect-ratio: 4 / 3;
}

.axis-integrated-dossier .evidence-reposition {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.axis-integrated-dossier .evidence-reposition figure:first-child img,
.axis-integrated-dossier .evidence-reposition figure:last-child img {
  aspect-ratio: 4 / 3;
}

.axis-integrated-dossier .evidence-photos figcaption {
  position: relative;
  z-index: 1;
  padding: 0;
  color: #625b53;
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}

.axis-integrated-dossier .evidence-photos figcaption::before {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  margin-bottom: 10px;
  background: #caa96b;
}

.axis-integrated-dossier .evidence-room-grid figure {
  gap: 0;
}

.axis-integrated-dossier .evidence-room-grid figcaption {
  display: none;
}

.axis-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: 88px;
}

.axis-gallery figure {
  margin: 0;
  background: #211b18;
}

.axis-location-gallery figure {
  background: transparent;
  border: 0;
  overflow: hidden;
  cursor: zoom-in;
}

.axis-map-figure {
  grid-column: 1 / -1;
}

.axis-location-row {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  gap: clamp(26px, 4vw, 56px);
  align-items: center;
  padding-bottom: 8px;
}

.axis-location-row .axis-map-figure {
  grid-column: auto;
  align-self: center;
  justify-self: center;
  width: min(100%, 680px);
  margin: 0;
}

.axis-gallery img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: filter 360ms ease, transform 360ms ease;
}

.axis-location-gallery figure:hover img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.018);
}

.axis-map-figure img {
  height: auto;
  object-fit: contain;
}

.axis-location-context {
  position: relative;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: clamp(22px, 2.6vw, 34px);
  align-self: stretch;
  padding: clamp(8px, 1.5vw, 22px) 0;
}

.axis-location-rail {
  position: relative;
  align-self: stretch;
  min-height: 100%;
}

.axis-location-rail::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 50%;
  width: 1px;
  background: rgba(202, 169, 107, 0.78);
  transform: translateX(-50%);
}

.axis-location-rail::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 7px;
  height: 7px;
  border-top: 1px solid rgba(202, 169, 107, 0.9);
  border-left: 1px solid rgba(202, 169, 107, 0.9);
  transform: translateX(-50%) rotate(45deg);
}

.axis-location-points {
  display: grid;
  gap: clamp(22px, 2.9vw, 34px);
  align-content: center;
}

.axis-location-points article {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.axis-location-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  color: rgba(202, 169, 107, 0.86);
}

.axis-location-icon svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.axis-location-points strong {
  display: block;
  margin-bottom: 9px;
  color: #69383c;
  font-family: Didot, "Bodoni 72", "Iowan Old Style", Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 1.7vw, 30px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.05;
  text-transform: none;
}

.axis-location-points p {
  margin-bottom: 0;
  color: #625b53;
  font-family: var(--sans);
  font-size: clamp(15px, 1.05vw, 18px);
  font-weight: 400;
  line-height: 1.55;
}

.axis-gallery figcaption {
  padding: 18px 22px;
  color: rgba(255, 248, 235, 0.72);
  font-size: 15px;
}

.axis-location-gallery figcaption {
  padding: 22px 0 0;
  color: #625b53;
  font-family: inherit;
  font-size: clamp(15px, 1.05vw, 18px);
  font-weight: 400;
  line-height: 1.5;
}

.axis-location-gallery figcaption::before {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  margin-bottom: 16px;
  background: #caa96b;
}

.axis-contact {
  position: relative;
  isolation: isolate;
  display: grid;
  width: min(1460px, calc(100% - 44px));
  margin-top: clamp(18px, 3vw, 40px);
  margin-bottom: 72px;
  overflow: visible;
  color: var(--ink);
  background: transparent;
  border: 0;
  box-shadow: none;
}

.axis-contact::before {
  content: none;
}

.axis-contact-visual {
  position: relative;
  z-index: 0;
  margin: 0;
  overflow: hidden;
  background: #eee6dc;
  border-bottom: 1px solid rgba(202, 169, 107, 0.48);
}

.axis-contact-visual img {
  width: 100%;
  height: clamp(340px, 34vw, 520px);
  object-fit: cover;
  object-position: center 70%;
  filter: saturate(0.96) contrast(1.02) brightness(1.02);
}

.axis-contact-content {
  position: relative;
  z-index: 1;
  align-self: auto;
  justify-self: center;
  width: min(960px, calc(100% - 48px));
  max-width: 960px;
  margin-top: clamp(-88px, -5.4vw, -58px);
  padding: clamp(30px, 4vw, 54px) clamp(24px, 5vw, 72px);
  text-align: center;
  background: rgba(251, 247, 239, 0.9);
  box-shadow: 0 20px 66px rgba(54, 43, 31, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.axis-contact .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  margin-bottom: 22px;
  color: #caa96b;
}

.axis-contact .eyebrow::before,
.axis-contact .eyebrow::after {
  content: "";
  width: 44px;
  height: 1px;
  background: rgba(202, 169, 107, 0.78);
}

.axis-contact h2 {
  max-width: 760px;
  margin: 0 auto 22px;
  color: var(--ink);
  font-size: clamp(40px, 5vw, 76px);
  line-height: 0.98;
  text-shadow: none;
}

.axis-contact-content > p {
  max-width: 670px;
  margin: 0 auto 28px;
  color: #625b53;
  font-family: var(--sans);
  font-size: clamp(15px, 1.08vw, 18px);
  font-weight: 400;
  line-height: 1.62;
}

.axis-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.axis-contact-secondary {
  appearance: none;
  min-height: 54px;
  padding: 0 34px;
  border-radius: 0;
  color: #69383c;
  background: rgba(251, 247, 239, 0.52);
  border-color: rgba(105, 56, 60, 0.34);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
}

.axis-contact-secondary:hover,
.axis-contact-secondary:focus-visible {
  color: #69383c;
  background: rgba(202, 169, 107, 0.13);
  border-color: rgba(202, 169, 107, 0.78);
  outline: none;
}

.axis-contact-bar {
  justify-self: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px clamp(24px, 4vw, 56px);
  align-items: center;
  justify-content: center;
  width: min(960px, calc(100% - 48px));
  margin-top: 26px;
  padding: 24px 0 0;
  color: #625b53;
  background: transparent;
  border-top: 1px solid rgba(202, 169, 107, 0.54);
}

.axis-contact-brand {
  display: grid;
  gap: 2px;
  color: #69383c;
  font-family: Didot, "Bodoni 72", "Iowan Old Style", Georgia, "Times New Roman", serif;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.axis-contact-brand span {
  color: #caa96b;
  font-size: 13px;
  letter-spacing: 0.06em;
}

.axis-contact-brand strong {
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.axis-contact-bar p,
.axis-contact-bar a {
  margin: 0;
  color: inherit;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.35;
  text-decoration: none;
  text-transform: uppercase;
}

.axis-contact-bar a {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #625b53;
  text-transform: none;
}

.axis-contact-bar svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  fill: none;
  stroke: #caa96b;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

@media (max-width: 1180px) and (min-width: 921px) {
.axis-page {
    background: #2f3846;
  }

.axis-page > .site-header,
.axis-page > main {
    width: calc(100% - 32px);
    margin-inline: auto;
  }

.axis-page > main {
    overflow: hidden;
    background: #f8f4ec;
  }

.site-header {
    gap: 16px;
    min-height: 72px;
    padding: 0 36px;
  }

.text-brand {
    max-width: 190px;
    font-size: 17px;
    line-height: 1.12;
  }

.header-cta {
    min-height: 40px;
    padding: 0 16px;
  }

.axis-hero {
    min-height: calc(100vh - 72px);
    padding: 64px 48px 56px;
  }

.axis-hero-cultural-axis {
    top: 54%;
    left: -4px;
    width: 42px;
    height: min(700px, calc(100% - 140px));
    opacity: 0.48;
  }

.axis-hero-content {
    width: min(640px, 52vw);
    max-width: 640px;
    margin-top: 22px;
  }

.axis-hero-logo {
    width: 150px;
    margin-bottom: 22px;
  }

.axis-hero h1 {
    max-width: 620px;
    margin-bottom: 20px;
    font-size: clamp(48px, 5.8vw, 60px);
    line-height: 1.07;
  }

.axis-hero-content > p:not(.eyebrow) {
    max-width: 560px;
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.58;
  }

.axis-hero .button {
    min-height: 52px;
    padding: 0 28px;
    font-size: 20px;
  }

.axis-context-strip {
    width: min(100% - 48px, 1100px);
    min-height: 206px;
  }

.axis-context-strip article {
    padding: 24px 22px;
  }

.axis-context-heading {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 12px;
    margin-bottom: 10px;
  }

.axis-context-icon,
.axis-context-icon svg {
    width: 30px;
    height: 30px;
  }

.axis-context-strip strong {
    font-size: clamp(28px, 3vw, 36px);
  }

.axis-context-strip p {
    font-size: 15px;
    line-height: 1.45;
  }

.axis-statement,
.axis-asset,
.axis-gallery,
.axis-renovation,
.axis-restaurant,
.axis-multifunction,
.axis-contact {
    width: min(100% - 64px, 1080px);
  }

.axis-statement {
    padding: 42px 0 34px;
  }

.axis-statement h2 {
    max-width: 840px;
    font-size: clamp(38px, 4.6vw, 48px);
    line-height: 1.07;
  }

.axis-gallery {
    gap: 16px;
    padding-bottom: 42px;
  }

.axis-location-row {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
    gap: 30px;
  }

.axis-location-context {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 14px;
  }

.axis-location-points {
    gap: 16px;
  }

.axis-location-points article {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 14px;
  }

.axis-location-icon {
    width: 36px;
    height: 36px;
  }

.axis-location-icon svg {
    width: 30px;
    height: 30px;
  }

.axis-location-points strong {
    margin-bottom: 6px;
    font-size: 20px;
  }

.axis-location-points p {
    font-size: 13px;
    line-height: 1.42;
  }

.axis-gallery img {
    height: 260px;
  }

.axis-map-figure img {
    height: auto;
  }

.axis-investment-overview {
    grid-template-columns: minmax(0, 0.88fr) minmax(500px, 1.12fr);
    gap: 30px;
  }

.asset-illustration h2 {
    max-width: 820px;
    font-size: clamp(42px, 5vw, 52px);
  }

.asset-sketch-wrap {
    max-width: 100%;
  }

.axis-revenue-panel {
    padding-top: 0;
  }

.axis-revenue-table {
    font-size: 14px;
  }

.axis-revenue-table th,
.axis-revenue-table td {
    padding: 12px 0;
  }

.axis-revenue-table thead th:first-child,
.axis-revenue-table tbody th {
    width: 35%;
  }

.axis-revenue-table thead th:nth-child(2),
.axis-revenue-table tbody td:first-of-type {
    width: 43%;
  }

.axis-revenue-table thead th:last-child,
.axis-revenue-table tbody td:last-child {
    width: 22%;
    padding-left: 12px;
  }

.revenue-stream-cell {
    grid-template-columns: 34px minmax(0, 1fr);
    min-height: 42px;
  }

.revenue-icon,
.revenue-icon svg {
    width: 28px;
    height: 28px;
  }

.axis-integrated-dossier {
    padding-top: 42px;
    padding-bottom: 0;
  }

.axis-integrated-dossier .program-dossier-intro {
    gap: 14px;
    margin-bottom: 38px;
    padding-bottom: 12px;
  }

.axis-integrated-dossier .program-dossier-intro h2 {
    max-width: 760px;
    font-size: clamp(36px, 4.25vw, 46px);
    line-height: 1.05;
  }

.axis-integrated-dossier .program-dossier-intro p:last-child {
    max-width: 760px;
    font-size: 16px;
    line-height: 1.58;
  }

.axis-integrated-dossier .corp-dossier + .corp-dossier {
    margin-top: 78px;
  }

.axis-integrated-dossier .corp-dossier-head {
    grid-template-columns: minmax(300px, 0.52fr) minmax(340px, 0.48fr);
    gap: 32px;
    margin-bottom: 32px;
    padding-bottom: 32px;
  }

.axis-integrated-dossier .corp-dossier-title {
    gap: 14px;
  }

.axis-integrated-dossier .corp-dossier-title h3 {
    max-width: 560px;
    font-size: clamp(38px, 4.45vw, 48px);
    line-height: 1;
  }

.axis-integrated-dossier .corp-dossier-title p {
    max-width: 620px;
    font-size: 16px;
    line-height: 1.58;
  }

.axis-integrated-dossier .corp-dossier-facts article {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
    min-height: 64px;
    padding: 13px 0;
  }

.axis-integrated-dossier .corp-fact-icon {
    width: 34px;
    height: 34px;
  }

.axis-integrated-dossier .corp-fact-icon svg {
    width: 28px;
    height: 28px;
  }

.axis-integrated-dossier .corp-dossier-facts strong {
    font-size: 16px;
  }

.axis-integrated-dossier .corp-evidence-book {
    gap: 52px;
  }

.axis-integrated-dossier .corp-evidence-chapter {
    grid-template-columns: minmax(210px, 0.24fr) minmax(0, 1fr);
    gap: 30px;
    padding-top: 28px;
  }

.axis-integrated-dossier .evidence-copy {
    top: 92px;
    gap: 10px;
  }

.axis-integrated-dossier .evidence-copy h4 {
    font-size: 30px;
  }

.axis-integrated-dossier .evidence-copy p {
    max-width: 260px;
    font-size: 14px;
    line-height: 1.55;
  }

.axis-integrated-dossier .evidence-photos,
.axis-integrated-dossier .evidence-three,
.axis-integrated-dossier .evidence-room-grid,
.axis-integrated-dossier .evidence-support-grid,
.axis-integrated-dossier .evidence-b-grid {
    gap: 20px 18px;
  }
}

@media (max-width: 920px) {
.site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 14px 20px;
    justify-items: start;
    padding: 16px 24px;
  }

.text-brand {
    grid-column: 1;
    grid-row: 1;
  }

.variant-nav {
    position: absolute;
    top: calc(100% - 1px);
    right: 24px;
    left: 24px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px;
    padding: 8px;
    color: inherit;
    border: 1px solid rgba(128, 128, 128, 0.24);
    background: rgba(248, 244, 236, 0.98);
    box-shadow: 0 22px 48px rgba(17, 19, 21, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    visibility: hidden;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

.site-header.is-nav-open .variant-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

.variant-nav a {
    padding: 14px 12px;
    border-radius: 4px;
    font-family: Didot, "Bodoni 72", "Iowan Old Style", Georgia, "Times New Roman", serif;
    font-size: clamp(17px, 4.8vw, 20px);
    font-weight: 400;
    opacity: 1;
  }

.variant-nav .is-active {
    color: inherit;
    background: rgba(202, 169, 107, 0.22);
  }

.variant-nav a::after {
    display: none;
  }

.nav-toggle {
    display: inline-flex;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

.header-actions {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

.axis-context-strip {
    grid-template-columns: 1fr;
  }

.axis-hero,
.axis-investment-overview,
.axis-gallery,
.axis-location-row,
.axis-restaurant-story,
.axis-multifunction-copy,
.axis-renovation {
    grid-template-columns: 1fr;
  }

.axis-renovation-heading {
    display: grid;
    gap: 14px;
  }

.axis-renovation-line {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 26px;
    border-top: 0;
    padding: 0;
  }

.axis-renovation-line::before {
    content: none;
  }

.axis-renovation-line article {
    padding: 18px 0 0;
    border-top: 1px solid rgba(202, 169, 107, 0.72);
  }

.axis-renovation-line article::before {
    top: -5px;
  }

.axis-renovation-line article::after {
    content: none;
  }

.axis-restaurant-copy {
    grid-template-columns: 1fr;
    gap: 26px;
  }

.axis-restaurant-signals {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

.axis-restaurant-signals article,
.axis-restaurant-signals article:not(:last-child) {
    border-right: 0;
  }

.axis-restaurant-signals article:nth-child(odd) {
    border-right: 1px solid rgba(17, 19, 21, 0.13);
  }

.axis-restaurant-track {
    grid-auto-columns: minmax(290px, 66%);
    padding-right: 48px;
    padding-left: 48px;
  }

.axis-restaurant-controls {
    top: var(--restaurant-control-center, clamp(190px, 34vw, 260px));
    right: 12px;
    left: 12px;
  }

.axis-multifunction-signals {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

.axis-multifunction-signals article,
.axis-multifunction-signals article:not(:last-child) {
    border-right: 0;
  }

.axis-multifunction-signals article:nth-child(odd) {
    border-right: 1px solid rgba(17, 19, 21, 0.13);
  }

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

.axis-hero {
    align-content: start;
    min-height: auto;
    padding: 0 32px 48px;
    row-gap: 0;
  }

.axis-hero-cultural-axis {
    display: none;
  }

.axis-hero h1 {
    max-width: 560px;
    margin-bottom: 20px;
    font-size: clamp(50px, 6.9vw, 56px);
    line-height: 1.07;
  }

.axis-hero-content {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 14px;
    align-items: center;
    width: min(100%, 560px);
    max-width: 560px;
    margin-top: 0;
  }

.axis-hero-logo {
    width: 86px;
    margin-bottom: 0;
    transform: none;
  }

.axis-media {
    position: relative;
    inset: auto;
    z-index: 0;
    width: calc(100% + 64px);
    height: clamp(260px, 42vw, 380px);
    margin: 0 -32px 6px;
    overflow: hidden;
  }

.axis-media .axis-hero-slide {
    filter: saturate(1.06) contrast(1.03);
  }

.axis-media .axis-hero-slide-main {
    object-position: 58% center;
  }

.axis-media .axis-hero-slide-wide {
    object-position: 52% center;
  }

.axis-media .axis-hero-slide-entrance {
    object-position: 50% 74%;
    transform: scale(1.18);
  }

.axis-media img {
    filter: saturate(1.06) contrast(1.03);
  }

.axis-media::after {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: block;
    background:
      linear-gradient(180deg, rgba(248, 244, 236, 0) 62%, rgba(248, 244, 236, 0.82));
  }

.axis-hero .eyebrow {
    margin-bottom: 0;
    white-space: nowrap;
  }

.axis-hero h1,
.axis-hero-content > p:not(.eyebrow),
.axis-hero .hero-actions {
    grid-column: 1 / -1;
  }

.axis-hero h1 {
    margin-top: 20px;
  }

.axis-hero-content > p:not(.eyebrow) {
    max-width: 520px;
    margin-bottom: 22px;
    font-size: 16px;
    line-height: 1.55;
  }

.axis-hero .button {
    min-height: 52px;
    padding: 0 26px;
    font-size: 20px;
  }

.axis-context-strip {
    padding-bottom: 56px;
  }

.axis-context-strip {
    min-height: auto;
  }

.axis-context-strip article {
    padding: 26px 0;
    border-top: 1px solid rgba(17, 19, 21, 0.13);
    border-left: 0;
  }

.axis-context-strip article:first-child {
    border-top: 0;
  }

.axis-contact {
    min-height: auto;
  }

.axis-contact::before {
    content: none;
  }

.axis-contact-content {
    width: min(760px, calc(100% - 40px));
    max-width: 760px;
    padding: 38px 30px 36px;
  }

.axis-contact-bar {
    width: min(760px, calc(100% - 40px));
    gap: 16px 28px;
  }
}

@media (max-width: 560px) {
.axis-hero {
    min-height: auto;
  }

.axis-hero {
    padding-top: 58px;
    row-gap: 20px;
  }

.axis-hero-content {
    width: 100%;
    margin-top: 0;
  }

.axis-hero h1 {
    font-size: 48px;
  }

.axis-hero-content > p:not(.eyebrow) {
    font-size: 17px;
  }

.axis-context-strip {
    padding-top: 26px;
    padding-bottom: 42px;
  }

.axis-context-strip strong {
    font-size: 34px;
  }

.asset-sketch-wrap {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

.asset-label {
    position: static;
  }

.asset-label::before,
.asset-label::after {
    display: none;
  }

.asset-reference-illustration {
    grid-column: 1 / -1;
  }

.axis-revenue-panel {
    overflow-x: auto;
  }

.axis-revenue-table {
    min-width: 640px;
  }
}

@media (max-width: 920px) {
.program-dossier-intro,
.corp-dossier-head,
.corp-evidence-chapter {
    grid-template-columns: 1fr;
  }

.evidence-copy {
    position: static;
  }

.evidence-photos,
.evidence-support-grid,
.evidence-b-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

.evidence-b-focus {
    grid-template-columns: minmax(0, 1fr);
  }

.evidence-reposition {
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  }

.axis-integrated-dossier .program-dossier-intro,
.axis-integrated-dossier .corp-dossier-head,
.axis-integrated-dossier .corp-evidence-chapter {
    grid-template-columns: 1fr;
  }

.axis-integrated-dossier .program-dossier-intro p:last-child,
.axis-integrated-dossier .corp-dossier-facts {
    grid-column: auto;
    grid-row: auto;
  }

.axis-integrated-dossier .evidence-photos,
.axis-integrated-dossier .evidence-three,
.axis-integrated-dossier .evidence-room-grid,
.axis-integrated-dossier .evidence-support-grid,
.axis-integrated-dossier .evidence-b-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

.axis-integrated-dossier .evidence-reposition,
.axis-integrated-dossier .evidence-b-focus {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
.program-option {
    width: min(100% - 28px, 1180px);
  }

.program-dossier-intro h2,
.corp-dossier-head h3 {
    font-size: 44px;
  }

.evidence-photos,
.evidence-three,
.evidence-room-grid,
.evidence-support-grid,
.evidence-b-grid,
.evidence-reposition {
    grid-template-columns: 1fr;
  }

.evidence-photos .is-wide {
    grid-column: auto;
  }

.evidence-photos .is-wide img,
.evidence-photos img {
    aspect-ratio: 4 / 3;
  }

.axis-integrated-dossier {
    padding-top: 54px;
    padding-bottom: 0;
  }

.axis-integrated-dossier .program-dossier-intro h2,
.axis-integrated-dossier .corp-dossier-head h3 {
    font-size: 44px;
  }

.axis-integrated-dossier .evidence-photos,
.axis-integrated-dossier .evidence-three,
.axis-integrated-dossier .evidence-room-grid,
.axis-integrated-dossier .evidence-support-grid,
.axis-integrated-dossier .evidence-b-grid,
.axis-integrated-dossier .evidence-reposition,
.axis-integrated-dossier .evidence-b-focus {
    grid-template-columns: 1fr;
  }

.axis-integrated-dossier .evidence-photos .is-wide {
    grid-column: auto;
  }

.axis-renovation {
    padding-top: 0;
    padding-bottom: 0;
  }

.axis-renovation-line {
    grid-template-columns: 1fr;
  }

.axis-restaurant {
    padding-top: 42px;
    padding-bottom: 18px;
  }

.axis-restaurant-title h2 {
    font-size: 44px;
  }

.axis-multifunction {
    padding-top: 24px;
    padding-bottom: 24px;
  }

.axis-multifunction-title h2 {
    font-size: 44px;
  }

.axis-multifunction-copy {
    gap: 22px;
  }

.axis-multifunction-signals,
.axis-multifunction-grid {
    grid-template-columns: 1fr;
  }

.axis-multifunction-signals article,
.axis-multifunction-signals article:not(:last-child),
.axis-multifunction-signals article:nth-child(odd) {
    border-right: 0;
  }

.axis-multifunction-grid .is-wide {
    grid-column: auto;
  }

.axis-multifunction-dossier-head {
    align-items: flex-start;
    flex-direction: column;
  }

.axis-contact {
    margin-top: 18px;
    margin-bottom: 44px;
    width: min(100% - 26px, 1460px);
  }

.axis-contact-content {
    width: min(100% - 24px, 760px);
    margin-top: -40px;
    padding: 32px 20px 30px;
  }

.axis-contact h2 {
    font-size: 39px;
  }

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

.axis-contact-secondary {
    justify-content: center;
    width: 100%;
  }

.axis-contact-bar {
    width: min(100% - 24px, 760px);
    flex-direction: column;
    padding: 22px 0 0;
    text-align: center;
  }

.axis-restaurant-copy {
    gap: 22px;
  }

.axis-restaurant-signals {
    grid-template-columns: 1fr;
  }

.axis-restaurant-signals article,
.axis-restaurant-signals article:not(:last-child),
.axis-restaurant-signals article:nth-child(odd) {
    border-right: 0;
  }

.axis-restaurant-carousel-head {
    align-items: flex-start;
    flex-direction: column;
  }

.axis-restaurant-track {
    grid-auto-columns: minmax(260px, 86%);
    padding-right: 34px;
    padding-left: 34px;
  }

.axis-restaurant-controls {
    top: var(--restaurant-control-center, clamp(160px, 52vw, 236px));
    right: 10px;
    left: 10px;
  }

.axis-restaurant-controls button {
    width: 46px;
    height: 46px;
  }

.axis-photo-lightbox {
    --lightbox-outer-pad: 14px;
    padding: var(--lightbox-outer-pad);
  }

.axis-lightbox-panel {
    --lightbox-pad: 14px;
    --lightbox-arrow-gutter: 0px;
    min-height: auto;
    padding: var(--lightbox-pad);
  }

.axis-lightbox-panel figure {
    min-height: 0;
    height: auto;
    gap: 14px;
    align-content: start;
    padding-inline: 0;
    padding-top: 44px;
  }

.axis-lightbox-panel img {
    max-height: 58vh;
  }

.axis-lightbox-panel figcaption {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px 16px 16px;
  }

.axis-lightbox-close {
    top: calc(var(--lightbox-pad) - 4px);
    right: 10px;
  }

.axis-lightbox-nav {
    top: 50%;
    bottom: auto;
    width: 46px;
    height: 46px;
    transform: translateY(-50%);
  }

.axis-lightbox-prev {
    left: 18px;
  }

.axis-lightbox-next {
    right: 18px;
  }
}

@media (max-width: 920px) {
.axis-page {
    --axis-section-pad: 40px;
  }

.axis-statement,
.axis-asset,
.axis-gallery,
.axis-renovation,
.axis-restaurant,
.axis-multifunction,
.axis-contact {
    width: min(100% - var(--axis-section-pad), 780px);
  }

.axis-page .eyebrow,
.axis-page .section-kicker {
    margin-bottom: 12px;
    font-size: 11px;
    line-height: 1.2;
  }

.axis-hero {
    padding: 0 32px 46px;
  }

.axis-hero-logo {
    width: 84px;
    margin-bottom: 0;
    transform: none;
  }

.axis-hero .eyebrow {
    margin-bottom: 0;
    white-space: nowrap;
  }

.axis-hero h1 {
    max-width: 560px;
    margin-bottom: 18px;
    font-size: clamp(42px, 6.4vw, 50px);
    line-height: 1.07;
  }

.axis-hero-content,
.axis-hero-content > p:not(.eyebrow) {
    max-width: 540px;
  }

.axis-hero-content > p:not(.eyebrow) {
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 1.55;
  }

.axis-hero .button {
    min-height: 50px;
    padding: 0 24px;
    font-size: 19px;
  }

.axis-context-strip {
    width: min(100% - var(--axis-section-pad), 780px);
    padding-bottom: 0;
  }

.axis-context-strip article {
    padding: 22px 0;
  }

.axis-context-heading {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 12px;
    margin-bottom: 8px;
  }

.axis-context-icon,
.axis-context-icon svg {
    width: 30px;
    height: 30px;
  }

.axis-context-strip strong {
    margin-bottom: 0;
    font-size: 30px;
    line-height: 1.08;
  }

.axis-context-strip p {
    font-size: 15px;
    line-height: 1.5;
  }

.axis-statement {
    padding: 48px 0 34px;
  }

.axis-statement h2 {
    max-width: 700px;
    font-size: clamp(38px, 5.5vw, 46px);
    line-height: 1.08;
  }

.axis-gallery {
    gap: 16px;
    padding-bottom: 46px;
  }

.axis-gallery img {
    height: 260px;
  }

.axis-location-row {
    gap: 26px;
  }

.axis-location-points {
    gap: 20px;
  }

.axis-location-points article {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
  }

.axis-location-icon {
    width: 42px;
    height: 42px;
  }

.axis-location-icon svg {
    width: 34px;
    height: 34px;
  }

.axis-location-points strong {
    margin-bottom: 6px;
    font-size: 24px;
    line-height: 1.08;
  }

.axis-location-points p,
.axis-location-gallery figcaption {
    font-size: 15px;
    line-height: 1.5;
  }

.axis-asset {
    padding: 42px 0;
  }

.axis-investment-overview {
    gap: 30px;
  }

.asset-illustration h2,
.axis-renovation-heading h2,
.axis-restaurant-title h2,
.axis-multifunction-title h2,
.axis-integrated-dossier .program-dossier-intro h2,
.axis-integrated-dossier .corp-dossier-title h3,
.axis-contact h2 {
    font-size: clamp(38px, 5.7vw, 46px);
    line-height: 1.06;
  }

.axis-revenue-table {
    font-size: 14px;
    line-height: 1.42;
  }

.axis-revenue-table th,
.axis-revenue-table td {
    padding: 12px 0;
  }

.revenue-stream-cell {
    grid-template-columns: 34px minmax(0, 1fr);
  }

.revenue-icon,
.revenue-icon svg {
    width: 28px;
    height: 28px;
  }

.axis-renovation {
    padding: 0;
  }

.axis-renovation-heading {
    margin-bottom: 28px;
  }

.axis-renovation-line {
    gap: 28px 22px;
  }

.axis-renovation-line strong {
    font-size: 28px;
  }

.axis-renovation-line p {
    font-size: 15px;
    line-height: 1.5;
  }

.axis-restaurant {
    padding-top: 48px;
  }

.axis-multifunction {
    padding-top: 24px;
    padding-bottom: 24px;
  }

.axis-restaurant-story,
.axis-multifunction-story {
    gap: 26px;
    margin-bottom: 28px;
  }

.axis-restaurant-copy > p,
.axis-multifunction-copy > p,
.axis-integrated-dossier .program-dossier-intro p:last-child,
.axis-integrated-dossier .corp-dossier-title p,
.axis-contact-content > p {
    font-size: 15px;
    line-height: 1.58;
  }

.axis-restaurant-signals article,
.axis-multifunction-signals article {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 5px 14px;
    min-height: 130px;
    padding: 18px 16px;
  }

.axis-restaurant-signals .signal-icon,
.axis-multifunction-signals .signal-icon {
    width: 34px;
    height: 34px;
    margin-bottom: 0;
  }

.axis-restaurant-signals .signal-icon svg,
.axis-multifunction-signals .signal-icon svg {
    width: 30px;
    height: 30px;
  }

.axis-restaurant-signals strong,
.axis-multifunction-signals strong {
    font-size: 22px;
    line-height: 1.1;
  }

.axis-restaurant-controls {
    display: none;
  }

.axis-restaurant-track figcaption,
.axis-multifunction-grid figcaption,
.axis-integrated-dossier .evidence-photos figcaption {
    font-size: 13px;
    line-height: 1.45;
  }

.axis-integrated-dossier {
    padding-top: 46px;
    padding-bottom: 0;
  }

.axis-integrated-dossier .program-dossier-intro {
    gap: 14px;
    margin-bottom: 38px;
    padding-bottom: 8px;
  }

.axis-integrated-dossier .corp-dossier + .corp-dossier {
    margin-top: 64px;
  }

.axis-integrated-dossier .corp-dossier-head {
    gap: 24px;
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

.axis-integrated-dossier .corp-dossier-facts article {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
    min-height: 60px;
    padding: 12px 0;
  }

.axis-integrated-dossier .corp-fact-icon,
.axis-integrated-dossier .corp-fact-icon svg {
    width: 30px;
    height: 30px;
  }

.axis-integrated-dossier .corp-dossier-facts strong {
    font-size: 15px;
    line-height: 1.28;
  }

.axis-integrated-dossier .corp-evidence-book {
    gap: 42px;
  }

.axis-integrated-dossier .corp-evidence-chapter {
    gap: 22px;
    padding-top: 24px;
  }

.axis-integrated-dossier .evidence-copy {
    gap: 8px;
  }

.axis-integrated-dossier .evidence-copy h4 {
    font-size: 28px;
    line-height: 1.08;
  }

.axis-integrated-dossier .evidence-copy p {
    max-width: 520px;
    font-size: 14px;
    line-height: 1.55;
  }

.axis-integrated-dossier .evidence-photos,
.axis-integrated-dossier .evidence-three,
.axis-integrated-dossier .evidence-room-grid,
.axis-integrated-dossier .evidence-support-grid,
.axis-integrated-dossier .evidence-b-grid {
    gap: 18px 16px;
  }

.axis-contact {
    margin-bottom: 48px;
  }

.axis-contact-visual img {
    height: 300px;
  }

.axis-contact-content {
    padding: 34px 28px 32px;
  }
}

@media (min-width: 681px) and (max-width: 920px) {
.axis-context-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 28px;
  }

.axis-context-strip article:nth-child(-n + 2) {
    border-top: 0;
  }

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

.axis-location-row {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 0.96fr) minmax(300px, 1fr);
    gap: 24px;
    align-items: start;
  }

.axis-location-row .axis-map-figure {
    align-self: center;
    justify-self: center;
  }

.axis-location-context {
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 10px;
    padding: 0;
  }

.axis-location-points {
    grid-template-columns: 1fr;
    gap: 12px;
  }

.axis-location-points article {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 10px;
  }

.axis-location-icon,
.axis-location-icon svg {
    width: 28px;
    height: 28px;
  }

.axis-location-points strong {
    margin-bottom: 4px;
    font-size: 20px;
    line-height: 1.04;
  }

.axis-location-points p {
    font-size: 13px;
    line-height: 1.38;
  }
}

@media (max-width: 680px) {
.axis-page {
    --axis-section-pad: 32px;
  }

.site-header {
    gap: 12px 10px;
    padding: 14px 16px;
  }

.variant-nav {
    right: 16px;
    left: 16px;
  }

.text-brand {
    max-width: 168px;
    font-size: 17px;
    line-height: 1.12;
  }

.header-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 12px;
  }

.axis-page .axis-header-contact {
    min-height: 34px;
    padding: 0 12px;
    font-size: 15px;
  }

.header-actions {
    gap: 8px;
  }

.language-option {
    min-height: 30px;
    padding: 0 7px;
    font-size: 10px;
  }

.language-flag {
    width: 14px;
    height: 10px;
  }

.axis-call-options {
    padding: 12px;
  }

.axis-call-options-panel {
    padding: 24px 20px 22px;
  }

.axis-call-options-panel .eyebrow {
    margin-bottom: 8px;
    font-size: 11px;
  }

.axis-call-options-panel h2 {
    max-width: calc(100% - 48px);
    margin-bottom: 20px;
    font-size: clamp(24px, 6.8vw, 28px);
    line-height: 1.04;
  }

.axis-call-options-section {
    gap: 8px;
  }

.axis-call-options-section + .axis-call-options-section {
    margin-top: 14px;
    padding-top: 14px;
  }

.axis-call-options-section-title {
    font-size: 11px;
  }

.axis-call-options-list {
    gap: 8px;
  }

.axis-call-options-list a,
.axis-call-options-list button {
    gap: 6px 12px;
    padding: 15px 14px;
  }

.axis-call-options-list a::after,
.axis-call-options-list button::after {
    min-height: 32px;
    padding: 0 12px;
    font-size: 11px;
  }

.axis-call-options-list span {
    font-size: 11px;
    line-height: 1.08;
  }

.axis-call-options-list strong {
    font-size: clamp(20px, 6vw, 24px);
    line-height: 1.05;
  }

.axis-email-options-list strong {
    font-size: clamp(16px, 4.6vw, 18px);
    line-height: 1.08;
    overflow-wrap: break-word;
  }

.axis-call-email-list strong {
    font-size: clamp(13px, 3.8vw, 16px);
    line-height: 1.1;
  }

.axis-call-options-close {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
  }

.axis-hero {
    padding: 0 20px 34px;
    row-gap: 0;
  }

.axis-hero-logo {
    width: 76px;
    margin-bottom: 0;
    transform: none;
  }

.axis-hero h1 {
    max-width: 100%;
    margin-bottom: 16px;
    font-size: clamp(34px, 9.6vw, 40px);
    line-height: 1.08;
  }

.axis-hero-content,
.axis-hero-content > p:not(.eyebrow) {
    max-width: 100%;
  }

.axis-hero-content > p:not(.eyebrow) {
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.52;
  }

.axis-media {
    width: calc(100% + 40px);
    height: clamp(220px, 64vw, 292px);
    margin: 0 -20px 8px;
  }

.axis-media .axis-hero-slide-wide {
    object-position: 50% center;
  }

.axis-media .axis-hero-slide-entrance {
    object-position: 50% 74%;
    transform: scale(1.42);
  }

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

.axis-media::after {
    background:
      linear-gradient(180deg, rgba(248, 244, 236, 0) 58%, rgba(248, 244, 236, 0.84));
  }

.hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 340px;
  }

.axis-hero .button {
    width: 100%;
    min-height: 48px;
    padding: 0 18px;
    font-size: 18px;
  }

.axis-context-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: min(100% - 24px, 720px);
    padding: 14px 0 26px;
    border-top-color: rgba(105, 56, 60, 0.12);
    border-bottom-color: rgba(105, 56, 60, 0.18);
  }

.axis-context-strip article {
    justify-content: flex-start;
    min-height: 166px;
    padding: 14px 12px 13px;
    border: 1px solid rgba(105, 56, 60, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.28);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
  }

.axis-context-strip article:first-child {
    border-left: 1px solid rgba(105, 56, 60, 0.12);
  }

.axis-context-heading {
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: start;
    margin-bottom: 8px;
  }

.axis-context-icon,
.axis-context-icon svg {
    width: 20px;
    height: 20px;
  }

.axis-context-strip strong {
    margin-bottom: 0;
    font-size: clamp(19px, 5.4vw, 22px);
    line-height: 1.03;
  }

.axis-context-strip p {
    font-size: 12px;
    line-height: 1.34;
  }

.axis-statement {
    padding: 38px 0 28px;
  }

.axis-statement h2,
.asset-illustration h2,
.axis-renovation-heading h2,
.axis-restaurant-title h2,
.axis-multifunction-title h2,
.axis-integrated-dossier .program-dossier-intro h2,
.axis-integrated-dossier .corp-dossier-title h3,
.axis-contact h2 {
    font-size: clamp(34px, 9vw, 38px);
    line-height: 1.08;
  }

.axis-asset {
    padding: 34px 0;
  }

.axis-renovation {
    padding: 0;
  }

.axis-gallery {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-bottom: 34px;
  }

.axis-gallery img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

.axis-map-figure img {
    aspect-ratio: auto;
  }

.axis-location-context {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }

.axis-location-rail {
    display: none;
  }

.axis-location-points {
    grid-template-columns: 1fr;
    gap: 18px;
  }

.axis-location-points article {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
  }

.axis-location-icon,
.axis-location-icon svg {
    width: 30px;
    height: 30px;
  }

.axis-location-points strong {
    font-size: 22px;
  }

.axis-location-points p,
.axis-location-gallery figcaption,
.axis-renovation-line p,
.axis-restaurant-copy > p,
.axis-multifunction-copy > p,
.axis-integrated-dossier .program-dossier-intro p:last-child,
.axis-integrated-dossier .corp-dossier-title p,
.axis-contact-content > p {
    font-size: 14px;
    line-height: 1.52;
  }

.asset-sketch-wrap {
    gap: 14px;
  }

.asset-label strong {
    font-size: 16px;
  }

.asset-label span {
    font-size: 30px;
  }

.asset-label small {
    font-size: 12px;
  }

.axis-revenue-panel {
    overflow: visible;
  }

.axis-revenue-table,
.axis-revenue-table thead,
.axis-revenue-table tbody,
.axis-revenue-table tr,
.axis-revenue-table th,
.axis-revenue-table td {
    display: block;
    width: 100%;
    min-width: 0;
  }

.axis-revenue-table {
    min-width: 0;
    font-size: 14px;
  }

.axis-revenue-table thead {
    display: none;
  }

.axis-revenue-table tbody {
    display: grid;
    gap: 0;
  }

.axis-revenue-table tbody tr {
    display: grid;
    grid-template-columns: minmax(0, 48%) minmax(0, 52%);
    grid-template-areas:
      "stream description"
      "status description";
    align-items: start;
    padding: 16px 0;
    border-bottom: 1px solid rgba(17, 19, 21, 0.14);
  }

.axis-revenue-table tbody tr:first-child {
    border-top: 1px solid rgba(17, 19, 21, 0.14);
  }

.axis-revenue-table tbody th,
.axis-revenue-table tbody td,
.axis-revenue-table tbody td:last-child {
    padding: 0;
    border-bottom: 0;
  }

.axis-revenue-table tbody th {
    grid-area: stream;
    width: auto;
    padding: 0 10px 0 0;
    background: transparent;
  }

.axis-revenue-table tbody td:first-of-type {
    grid-area: description;
    display: flex;
    align-items: flex-start;
    width: auto;
    margin: 0;
    padding: 0 0 0 10px;
    background: transparent;
    color: #625b53;
    font-size: clamp(14px, 4.2vw, 16px);
    line-height: 1.42;
  }

.axis-revenue-table tbody td:last-child {
    grid-area: status;
    width: auto;
    max-width: none;
    margin: 12px 0 0 34px;
    padding: 0;
    background: transparent;
  }

.revenue-stream-cell {
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 8px;
    align-items: flex-start;
    min-height: auto;
  }

.revenue-icon,
.revenue-icon svg {
    width: 24px;
    height: 24px;
  }

.revenue-title {
    font-size: clamp(13px, 3.9vw, 15.5px);
    line-height: 1.12;
  }

.revenue-status {
    font-size: clamp(15px, 4.2vw, 17px);
    font-weight: 700;
  }

.axis-renovation-line {
    gap: 22px;
  }

.axis-renovation-line article {
    padding-top: 16px;
  }

.axis-renovation-line strong {
    font-size: 26px;
  }

.axis-restaurant {
    padding-top: 40px;
    padding-bottom: 36px;
  }

.axis-multifunction {
    padding-top: 24px;
    padding-bottom: 24px;
  }

.axis-restaurant-story,
.axis-multifunction-story {
    gap: 20px;
    margin-bottom: 22px;
  }

.axis-restaurant-signals article,
.axis-multifunction-signals article {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 5px 12px;
    min-height: auto;
    padding: 16px 0;
  }

.axis-restaurant-track {
    grid-auto-columns: minmax(240px, 84%);
    gap: 16px;
    padding-right: 28px;
    padding-left: 28px;
  }

.axis-restaurant-track figcaption {
    min-height: auto;
    padding-top: 12px;
  }

.axis-restaurant-controls button {
    width: 42px;
    height: 42px;
  }

.axis-multifunction-grid {
    gap: 18px;
  }

.axis-integrated-dossier {
    padding-top: 38px;
    padding-bottom: 0;
  }

.axis-integrated-dossier .program-dossier-intro {
    margin-bottom: 30px;
  }

.axis-integrated-dossier .corp-dossier-head {
    gap: 18px;
    margin-bottom: 24px;
    padding-bottom: 24px;
  }

.axis-integrated-dossier .corp-dossier-facts article {
    grid-template-columns: 38px minmax(0, 1fr);
    min-height: auto;
    padding: 10px 0;
  }

.axis-integrated-dossier .corp-evidence-book {
    gap: 34px;
  }

.axis-integrated-dossier .corp-evidence-chapter {
    gap: 18px;
  }

.axis-integrated-dossier .evidence-copy h4 {
    font-size: 26px;
  }

.axis-integrated-dossier .evidence-photos,
.axis-integrated-dossier .evidence-three,
.axis-integrated-dossier .evidence-room-grid,
.axis-integrated-dossier .evidence-support-grid,
.axis-integrated-dossier .evidence-b-grid {
    gap: 16px;
  }

.axis-contact {
    margin-top: 12px;
    margin-bottom: 34px;
  }

.axis-contact-visual img {
    height: 240px;
  }

.axis-contact-content {
    width: min(100% - 20px, 760px);
    margin-top: -34px;
    padding: 28px 18px 26px;
  }

.axis-contact .eyebrow {
    gap: 10px;
    margin-bottom: 14px;
  }
}

@media (max-width: 420px) {
.axis-page {
    --axis-section-pad: 26px;
  }

.site-header {
    padding-inline: 13px;
  }

.text-brand {
    max-width: 132px;
    font-size: 16px;
  }

.header-cta {
    max-width: 112px;
    padding: 0 10px;
    overflow: hidden;
    font-size: 11px;
    text-overflow: ellipsis;
  }

.axis-page .axis-header-contact {
    min-height: 32px;
    padding: 0 9px;
    font-size: 14px;
  }

.header-actions {
    gap: 6px;
  }

.language-switch {
    gap: 1px;
    padding: 1px;
  }

.language-option {
    min-height: 28px;
    padding: 0 5px;
    gap: 4px;
  }

.nav-toggle {
    width: 38px;
    height: 38px;
  }

.variant-nav {
    right: 13px;
    left: 13px;
  }

.axis-hero {
    padding: 0 16px 32px;
  }

.axis-hero h1 {
    font-size: clamp(31px, 8.8vw, 35px);
  }

.axis-media {
    width: calc(100% + 32px);
    height: clamp(208px, 66vw, 252px);
    margin: 0 -16px 6px;
  }
}

@media (max-width: 360px) {
.site-header {
    grid-template-columns: minmax(76px, 1fr) auto auto;
    gap: 6px;
    padding: 10px;
  }

.text-brand {
    max-width: 86px;
    font-size: 14px;
    line-height: 1.02;
  }

.header-actions {
    gap: 4px;
  }

.language-switch {
    gap: 0;
  }

.language-option {
    width: 28px;
    min-height: 28px;
    padding: 0 4px;
  }

.language-option span:not(.language-flag) {
    display: none;
  }

.axis-page .axis-header-contact {
    min-height: 30px;
    max-width: 78px;
    padding: 0 8px;
    font-size: 12px;
  }

.nav-toggle {
    width: 34px;
    height: 34px;
  }

.axis-hero-content {
    grid-template-columns: 58px minmax(0, 1fr);
    column-gap: 10px;
  }

.axis-hero-logo {
    width: 58px;
  }

.axis-hero .eyebrow {
    white-space: normal;
    overflow-wrap: anywhere;
  }
}

@media (prefers-reduced-motion: reduce) {
.axis-media .axis-hero-slide {
    transition: none;
  }
}

@media (max-width: 920px) {
.axis-integrated-dossier .evidence-photos,
.axis-integrated-dossier .evidence-three,
.axis-integrated-dossier .evidence-room-grid,
.axis-integrated-dossier .evidence-support-grid,
.axis-integrated-dossier .evidence-b-grid,
.axis-integrated-dossier .evidence-reposition,
.axis-integrated-dossier .evidence-b-focus,
.axis-multifunction-grid {
    display: grid;
    grid-template-columns: none;
    grid-auto-columns: minmax(280px, 46%);
    grid-auto-flow: column;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    padding-bottom: 0;
    scroll-padding-inline: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

.axis-integrated-dossier .evidence-photos::-webkit-scrollbar,
.axis-integrated-dossier .evidence-three::-webkit-scrollbar,
.axis-integrated-dossier .evidence-room-grid::-webkit-scrollbar,
.axis-integrated-dossier .evidence-support-grid::-webkit-scrollbar,
.axis-integrated-dossier .evidence-b-grid::-webkit-scrollbar,
.axis-integrated-dossier .evidence-reposition::-webkit-scrollbar,
.axis-integrated-dossier .evidence-b-focus::-webkit-scrollbar,
.axis-multifunction-grid::-webkit-scrollbar {
    display: none;
  }

.axis-integrated-dossier .evidence-photos figure,
.axis-multifunction-grid figure {
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

.axis-integrated-dossier .evidence-photos .is-wide,
.axis-multifunction-grid .is-wide {
    grid-column: auto;
  }

.axis-evidence-dots {
    display: flex;
    min-height: 18px;
    margin-top: 14px;
    gap: 10px;
  }

.axis-evidence-dots button {
    width: 7px;
    height: 7px;
    opacity: 0.82;
  }

.axis-evidence-dots button:hover,
.axis-evidence-dots button.is-active {
    width: 24px;
  }

.axis-evidence-dots[hidden] {
    display: none;
  }
}

@media (max-width: 680px) {
.axis-integrated-dossier .evidence-photos,
.axis-integrated-dossier .evidence-three,
.axis-integrated-dossier .evidence-room-grid,
.axis-integrated-dossier .evidence-support-grid,
.axis-integrated-dossier .evidence-b-grid,
.axis-integrated-dossier .evidence-reposition,
.axis-integrated-dossier .evidence-b-focus,
.axis-multifunction-grid {
    grid-auto-columns: minmax(238px, 84%);
    gap: 14px;
    padding-bottom: 0;
  }
}

@media (max-width: 920px) {
.axis-renovation-heading {
    margin-bottom: 26px;
  }

.axis-renovation-line {
    --renovation-mobile-gap: clamp(38px, 8vw, 68px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0 var(--renovation-mobile-gap);
    width: min(760px, 100%);
    margin: 0 auto;
    padding: 0;
    border-top: 0;
  }

.axis-renovation-line::before {
    content: "";
    position: absolute;
    top: 5px;
    bottom: 6px;
    left: 50%;
    width: 1px;
    height: auto;
    background: rgba(202, 169, 107, 0.68);
    transform: translateX(-50%);
  }

.axis-renovation-line article {
    grid-column: 2;
    align-self: start;
    padding: 0 0 34px;
    border-top: 0;
  }

.axis-renovation-line article:nth-child(1) {
    grid-row: 1;
  }

.axis-renovation-line article:nth-child(2) {
    grid-row: 2;
  }

.axis-renovation-line article:nth-child(3) {
    grid-row: 3;
  }

.axis-renovation-line article:nth-child(4) {
    grid-row: 4;
  }

.axis-renovation-line article:nth-child(5) {
    grid-row: 5;
  }

.axis-renovation-line article:nth-child(6) {
    grid-row: 6;
  }

.axis-renovation-line article:nth-child(even) {
    grid-column: 1;
    text-align: right;
  }

.axis-renovation-line article:last-child {
    padding-bottom: 0;
  }

.axis-renovation-line article::before {
    top: 1px;
    left: calc((var(--renovation-mobile-gap) / -2) - 5px);
    width: 10px;
    height: 10px;
  }

.axis-renovation-line article:nth-child(even)::before {
    right: calc((var(--renovation-mobile-gap) / -2) - 5px);
    left: auto;
  }

.axis-renovation-line article::after {
    content: "";
    top: 6px;
    left: calc(var(--renovation-mobile-gap) / -2);
    width: calc((var(--renovation-mobile-gap) / 2) - 8px);
    height: 1px;
    background: rgba(202, 169, 107, 0.64);
  }

.axis-renovation-line article:nth-child(even)::after {
    right: calc(var(--renovation-mobile-gap) / -2);
    left: auto;
  }

.axis-renovation-line span {
    margin-bottom: 8px;
  }

.axis-renovation-line strong {
    margin-bottom: 8px;
    font-size: 30px;
  }
}

@media (max-width: 680px) {
.axis-renovation-heading {
    margin-bottom: 22px;
  }

.axis-renovation-line {
    --renovation-mobile-gap: 30px;
    padding-left: 0;
  }

.axis-renovation-line article {
    padding-bottom: 30px;
  }

.axis-renovation-line article::before {
    left: calc((var(--renovation-mobile-gap) / -2) - 5px);
  }

.axis-renovation-line article:nth-child(even)::before {
    right: calc((var(--renovation-mobile-gap) / -2) - 5px);
    left: auto;
  }

.axis-renovation-line article::after {
    left: calc(var(--renovation-mobile-gap) / -2);
    width: calc((var(--renovation-mobile-gap) / 2) - 8px);
  }

.axis-renovation-line article:nth-child(even)::after {
    right: calc(var(--renovation-mobile-gap) / -2);
    left: auto;
  }

.axis-renovation-line strong {
    font-size: 28px;
  }
}
