@import url("https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --pine: #0b1b14;
  --green: #10251b;
  --ink: #14251d;
  --moss: #566b4c;
  --accent: #afa17c;
  --linen: #eeeade;
  --muted: #526257;
  --rule: rgba(20, 37, 29, 0.21);
  font-family: "Manrope", Arial, sans-serif;
  background: var(--pine);
  color: var(--linen);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--pine);
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
.sr-only {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Shared wordmark and navigation */
.apx-wordmark {
  color: var(--linen);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
}
.apx-wordmark span {
  margin-left: 10px;
  color: inherit;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  vertical-align: 2px;
  opacity: 0.82;
}
.apx-arrow {
  display: inline-block;
  margin-left: 7px;
  font-size: 15px;
  font-weight: 400;
  line-height: 0.4;
  transform: translateY(1px);
}
.apx-eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

/* Public home */
.apx-home {
  overflow: hidden;
  background: var(--pine);
}
.apx-hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px clamp(22px, 5vw, 76px);
  background-color: var(--green);
  background-image:
    linear-gradient(
      90deg,
      rgba(11, 27, 20, 0.96) 0%,
      rgba(11, 27, 20, 0.88) 34%,
      rgba(16, 37, 27, 0.66) 67%,
      rgba(16, 37, 27, 0.52) 100%
    ),
    linear-gradient(0deg, rgba(7, 19, 14, 0.5), rgba(12, 36, 25, 0.2)),
    url("assets/brand/hero-form.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.apx-nav {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 32px;
}
.apx-nav-link,
.apx-text-cta {
  display: inline-flex;
  align-items: center;
  color: var(--linen);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition:
    color 160ms ease,
    transform 160ms ease;
}
.apx-nav-link:hover,
.apx-text-cta:hover {
  color: var(--accent);
  transform: translateX(3px);
}
.apx-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  flex: 1;
  width: 100%;
  max-width: 1370px;
  margin: 0 auto;
  padding: 96px 4vw 76px;
  align-items: center;
}
.apx-hero-copy {
  max-width: 665px;
  padding-top: 3vh;
}
.apx-hero h1,
.apx-manifesto h2,
.apx-access h2 {
  margin: 21px 0 26px;
  font-size: clamp(56px, 7.45vw, 118px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.84;
}
.apx-hero h1 {
  text-shadow: 0 3px 24px rgba(5, 17, 12, 0.42);
}
.apx-hero h1 em,
.apx-manifesto h2 em,
.apx-access h2 em {
  color: var(--accent);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 1.04em;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.045em;
}
.apx-intro {
  max-width: 420px;
  margin: 0 0 31px;
  color: rgba(238, 234, 222, 0.86);
  font-size: 14px;
  line-height: 1.7;
  text-shadow: 0 1px 16px rgba(5, 17, 12, 0.65);
}
.apx-scroll-cue {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  color: rgba(238, 234, 222, 0.65);
  font-size: 8px;
  letter-spacing: 0.16em;
}
.apx-scroll-cue::before {
  width: 34px;
  height: 1px;
  background: var(--accent);
  content: "";
}
.apx-manifesto {
  display: grid;
  grid-template-columns: minmax(145px, 0.42fr) 1fr;
  gap: 30px;
  padding: clamp(88px, 13vw, 180px) clamp(22px, 9vw, 144px);
  color: var(--ink);
  background: var(--linen);
}
.apx-section-label {
  padding-top: 10px;
  color: var(--moss);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}
.apx-manifesto-content {
  max-width: 1025px;
}
.apx-manifesto h2 {
  margin: 0 0 42px;
  font-size: clamp(51px, 7.2vw, 110px);
}
.apx-manifesto h2 em {
  color: var(--moss);
}
.apx-manifesto-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 6vw, 100px);
  max-width: 760px;
  margin-left: auto;
}
.apx-manifesto-copy p {
  margin: 0;
  color: #3f5044;
  font-size: 13px;
  line-height: 1.85;
}
.apx-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 clamp(22px, 5vw, 76px);
  color: var(--ink);
  background: var(--linen);
}
.apx-principles article {
  display: flex;
  flex-direction: column;
  min-height: 262px;
  padding: 28px 30px 33px;
  border-top: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
}
.apx-principles article:last-child {
  border-right: 0;
}
.apx-principles span {
  color: var(--moss);
  font-size: 11px;
  letter-spacing: 0.08em;
}
.apx-principles h3 {
  margin: auto 0 10px;
  font-size: 10px;
  letter-spacing: 0.16em;
}
.apx-principles p {
  max-width: 240px;
  margin: 0;
  color: #576358;
  font-size: 12px;
  line-height: 1.6;
}
.apx-access {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.78fr);
  gap: clamp(44px, 10vw, 180px);
  min-height: 670px;
  padding: clamp(88px, 12vw, 160px) clamp(22px, 12vw, 190px);
  overflow: hidden;
  align-items: center;
  color: var(--linen);
  background: var(--green);
}
.apx-access::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      90deg,
      transparent 0,
      transparent calc(50% - 0.5px),
      rgba(238, 234, 222, 0.72) 50%,
      transparent calc(50% + 0.5px)
    ),
    linear-gradient(
      0deg,
      transparent 0,
      transparent 65%,
      rgba(238, 234, 222, 0.4) 65%,
      transparent calc(65% + 1px)
    );
  content: "";
  opacity: 0.13;
  pointer-events: none;
}
.apx-access-decoration {
  position: absolute;
  right: -25px;
  bottom: -75px;
  z-index: 0;
  color: rgba(175, 161, 124, 0.14);
  font-size: min(44vw, 650px);
  font-weight: 800;
  letter-spacing: -0.12em;
  line-height: 0.73;
  user-select: none;
}
.apx-access-copy,
.apx-access-form {
  position: relative;
  z-index: 1;
}
.apx-access h2 {
  margin: 20px 0;
  font-size: clamp(53px, 6.5vw, 105px);
}
.apx-access-copy > p:not(.apx-eyebrow) {
  max-width: 380px;
  margin: 0;
  color: rgba(238, 234, 222, 0.78);
  font-size: 13px;
  line-height: 1.75;
}
.apx-access-copy a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(175, 161, 124, 0.5);
  text-underline-offset: 3px;
}
.apx-access-form {
  width: 100%;
  max-width: 405px;
  padding: 29px;
  margin-left: auto;
  border: 1px solid rgba(238, 234, 222, 0.38);
  background: rgba(3, 13, 9, 0.22);
  backdrop-filter: blur(5px);
}
.apx-access-form label {
  display: block;
  margin-bottom: 9px;
  color: rgba(238, 234, 222, 0.83);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.apx-password-row {
  position: relative;
  border-bottom: 1px solid rgba(238, 234, 222, 0.63);
}
.apx-password-row input {
  width: 100%;
  height: 44px;
  padding: 0 42px 0 0;
  border: 0;
  outline: 0;
  color: var(--linen);
  background: transparent;
  font-size: 15px;
}
.apx-password-row input::placeholder {
  color: rgba(238, 234, 222, 0.63);
}
.apx-visibility-toggle {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  width: 42px;
  height: 44px;
  padding: 0;
  border: 0;
  place-items: center;
  color: var(--linen);
  background: transparent;
  cursor: pointer;
}
.apx-submit {
  display: flex;
  width: 100%;
  height: 48px;
  gap: 11px;
  padding: 0 14px;
  margin-top: 24px;
  border: 1px solid var(--linen);
  align-items: center;
  color: var(--pine);
  background: var(--linen);
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    transform 160ms ease,
    background 160ms ease,
    color 160ms ease;
}
.apx-submit span:last-child {
  margin-left: auto;
  font-size: 17px;
}
.apx-submit:hover {
  color: var(--linen);
  background: transparent;
  transform: translateY(-2px);
}
.apx-submit:active {
  transform: scale(0.98);
}
.apx-access-error {
  min-height: 17px;
  margin: 12px 0 0;
  color: #f3b7a6;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
}
.apx-access-note {
  margin: 15px 0 0;
  color: rgba(238, 234, 222, 0.66);
  font-size: 10px;
  line-height: 1.45;
}
.apx-footer {
  display: flex;
  min-height: 128px;
  gap: 24px;
  padding: 28px clamp(22px, 5vw, 76px);
  align-items: center;
  justify-content: space-between;
  color: rgba(238, 234, 222, 0.66);
  background: #0a1711;
}
.apx-footer .apx-wordmark {
  font-size: 16px;
}
.apx-footer .apx-wordmark span {
  font-size: 9px;
}
.apx-public-partners {
  padding: clamp(55px, 8vw, 96px) clamp(22px, 9vw, 144px);
  color: var(--linen);
  background: var(--pine);
}
.apx-public-partners .apx-section-label {
  margin: 0 0 27px;
  color: var(--accent);
}
.apx-public-logo-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 4vw, 62px);
  max-width: 1060px;
  padding-top: 28px;
  border-top: 1px solid rgba(175, 161, 124, 0.3);
}
.apx-public-logo-row img {
  width: 100%;
  max-width: 220px;
  height: 62px;
  object-fit: contain;
  object-position: left center;
  filter: grayscale(1) brightness(2);
  opacity: 0.86;
}
.apx-footer p,
.apx-footer > span {
  margin: 0;
  font-size: 8px;
  letter-spacing: 0.13em;
}

/* Private invitation experience */
.private-page {
  background: var(--pine);
}
.private-header {
  position: absolute;
  z-index: 5;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(175, 161, 124, 0.14);
}
.private-header-inner {
  display: flex;
  max-width: 1280px;
  min-height: 88px;
  padding: 0 clamp(22px, 5vw, 76px);
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
}
.private-nav {
  display: flex;
  gap: 1.7rem;
  align-items: center;
  color: rgba(238, 234, 222, 0.82);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.private-nav a:hover {
  color: var(--accent);
}
.private-enquire {
  padding: 0.8rem 1.4rem;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    color 180ms ease;
}
.private-enquire:hover {
  color: var(--pine);
  background: var(--accent);
}
.private-menu {
  display: none;
  border: 0;
  color: var(--linen);
  background: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.private-hero {
  position: relative;
  display: grid;
  min-height: min(780px, 100svh);
  padding: 150px clamp(22px, 5vw, 76px) 78px;
  overflow: hidden;
  align-items: center;
  background: var(--green);
}
.private-hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(11, 27, 20, 0.95) 0%,
      rgba(11, 27, 20, 0.78) 46%,
      rgba(16, 37, 27, 0.46)
    ),
    url("assets/brand/hero-form.jpg") center/cover no-repeat;
  content: "";
  filter: saturate(0.48) hue-rotate(58deg) brightness(0.58) contrast(1.1);
}
.private-hero-content {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
.private-hero .apx-eyebrow {
  margin-bottom: 25px;
}
.private-hero h1 {
  max-width: 800px;
  margin: 0 0 24px;
  color: var(--linen);
  font-size: clamp(58px, 8vw, 118px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.86;
}
.private-hero h1 em {
  color: var(--accent);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 1.04em;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.06em;
}
.private-hero-text {
  max-width: 565px;
  margin: 0 0 31px;
  color: rgba(238, 234, 222, 0.85);
  font-size: 14px;
  line-height: 1.75;
}
.private-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.private-button {
  display: inline-flex;
  padding: 0.95rem 2rem;
  border: 1px solid var(--accent);
  align-items: center;
  color: var(--accent);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 160ms ease;
}
.private-button:hover {
  color: var(--pine);
  background: var(--accent);
  transform: translateY(-2px);
}
.private-button.solid {
  border-color: var(--linen);
  color: var(--pine);
  background: var(--linen);
}
.private-button.solid:hover {
  border-color: var(--accent);
  background: var(--accent);
}
.private-scroll {
  position: absolute;
  right: clamp(22px, 5vw, 76px);
  bottom: 40px;
  color: rgba(238, 234, 222, 0.56);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.private-section {
  padding: clamp(80px, 11vw, 155px) clamp(22px, 5vw, 76px);
}
.private-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
.private-kicker {
  display: flex;
  gap: 15px;
  margin-bottom: 31px;
  color: var(--moss);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.private-kicker b {
  color: var(--accent);
  font-weight: inherit;
}
.private-intro {
  color: var(--linen);
  background: var(--pine);
}
.private-intro-grid {
  display: grid;
  grid-template-columns: minmax(140px, 0.38fr) minmax(0, 1fr);
  gap: clamp(34px, 9vw, 140px);
}
.private-intro h2,
.private-format h2,
.private-events h2,
.private-contact h2 {
  max-width: 810px;
  margin: 0 0 40px;
  font-size: clamp(48px, 6vw, 92px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.92;
}
.private-intro h2 em,
.private-format h2 em,
.private-events h2 em,
.private-contact h2 em {
  color: var(--accent);
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}
.private-copy {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(25px, 5vw, 85px);
  max-width: 860px;
}
.private-copy p {
  margin: 0;
  color: rgba(238, 234, 222, 0.72);
  font-size: 14px;
  line-height: 1.85;
}
.private-format {
  color: var(--ink);
  background: var(--linen);
}
.private-format-heading {
  display: grid;
  grid-template-columns: minmax(170px, 0.35fr) minmax(0, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}
.private-format .private-kicker {
  color: var(--moss);
}
.private-format h2 {
  margin: 0;
}
.format-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule);
}
.format-card {
  min-height: 330px;
  padding: 26px clamp(18px, 2.5vw, 35px) 34px;
  border-right: 1px solid var(--rule);
}
.format-card:last-child {
  border: 0;
}
.format-number {
  color: var(--moss);
  font-size: 12px;
}
.format-card h3 {
  margin: 114px 0 14px;
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.08;
}
.format-card p {
  max-width: 275px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}
.private-events {
  color: var(--linen);
  background: var(--green);
}
.private-events-top {
  display: flex;
  gap: 28px;
  align-items: end;
  justify-content: space-between;
}
.private-events h2 {
  margin-bottom: 10px;
}
.private-events-top > p {
  max-width: 340px;
  margin: 0 0 18px;
  color: rgba(238, 234, 222, 0.64);
  font-size: 13px;
  line-height: 1.7;
}
.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.event-card {
  overflow: hidden;
  border-top: 1px solid rgba(175, 161, 124, 0.36);
}
.event-image {
  width: 100%;
  height: 265px;
  object-fit: cover;
  display: block;
  filter: none;
}
.event-body {
  min-height: 240px;
  padding: 22px 0 8px;
}
.event-status {
  color: var(--accent);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.event-body h3 {
  margin: 13px 0 9px;
  font-size: clamp(25px, 2.6vw, 35px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.03;
}
.event-meta {
  margin: 0 0 5px;
  color: rgba(238, 234, 222, 0.85);
  font-size: 12px;
}
.event-body p:last-child {
  margin: 0;
  color: rgba(238, 234, 222, 0.58);
  font-size: 12px;
}
.private-contact {
  position: relative;
  overflow: hidden;
  padding: clamp(100px, 14vw, 180px) clamp(22px, 5vw, 76px);
  text-align: center;
  color: var(--linen);
  background:
    linear-gradient(rgba(11, 27, 20, 0.73), rgba(11, 27, 20, 0.82)),
    url("assets/events/s5.jpg") center/cover;
}
.private-contact .private-inner {
  position: relative;
  z-index: 1;
  max-width: 750px;
}
.private-contact .apx-eyebrow {
  margin-bottom: 18px;
}
.private-contact h2 {
  margin: 0 auto 23px;
}
.private-contact p:not(.apx-eyebrow) {
  max-width: 520px;
  margin: 0 auto 28px;
  color: rgba(238, 234, 222, 0.78);
  font-size: 14px;
  line-height: 1.7;
}
.private-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  padding: 52px clamp(22px, 5vw, 76px) 28px;
  color: rgba(238, 234, 222, 0.72);
  background: #08150f;
}
.private-footer-left p {
  max-width: 410px;
  margin: 18px 0 34px;
  font-size: 11px;
  line-height: 1.7;
}
.private-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  align-items: end;
  justify-content: flex-end;
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.private-footer-links a:hover {
  color: var(--linen);
}
.private-footer-bottom {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid rgba(175, 161, 124, 0.14);
  color: rgba(238, 234, 222, 0.45);
  font-size: 9px;
}

/* Legal pages */
.legal-page {
  color: var(--ink);
  background: var(--linen);
}
.legal-header {
  display: flex;
  min-height: 96px;
  gap: 24px;
  padding: 24px clamp(22px, 5vw, 76px);
  align-items: center;
  justify-content: space-between;
  color: var(--linen);
  background: var(--green);
  border-bottom: 1px solid rgba(175, 161, 124, 0.2);
}
.legal-back {
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.legal-back:hover {
  color: var(--linen);
}
.legal-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 11vw, 150px) clamp(22px, 9vw, 144px)
    clamp(58px, 8vw, 108px);
  color: var(--linen);
  background: linear-gradient(
    105deg,
    rgba(11, 27, 20, 0.98),
    rgba(16, 37, 27, 0.93)
  );
}
.legal-hero::after {
  position: absolute;
  top: -35%;
  right: -4%;
  width: min(61vw, 820px);
  aspect-ratio: 1;
  border: 1px solid rgba(175, 161, 124, 0.22);
  border-radius: 50%;
  box-shadow:
    0 0 0 58px rgba(175, 161, 124, 0.04),
    0 0 0 116px rgba(175, 161, 124, 0.025);
  content: "";
  pointer-events: none;
}
.legal-hero > * {
  position: relative;
  z-index: 1;
}
.legal-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(60px, 9vw, 136px);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.82;
}
.legal-hero h1 em {
  color: var(--accent);
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}
.legal-date {
  margin: 33px 0 0;
  color: rgba(238, 234, 222, 0.68);
  font-size: 12px;
}
.legal-content {
  display: grid;
  grid-template-columns: minmax(170px, 0.34fr) minmax(0, 1fr);
  gap: clamp(42px, 9vw, 154px);
  max-width: 1270px;
  padding: clamp(66px, 9vw, 126px) clamp(22px, 7vw, 92px);
  margin: 0 auto;
}
.legal-aside {
  color: #657064;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.7;
  text-transform: uppercase;
}
.legal-aside::before {
  display: block;
  width: 36px;
  height: 1px;
  margin-bottom: 13px;
  background: var(--accent);
  content: "";
}
.legal-article {
  max-width: 770px;
}
.legal-intro {
  margin: 0 0 53px;
  color: #25372b;
  font-size: clamp(20px, 2.25vw, 29px);
  letter-spacing: -0.025em;
  line-height: 1.42;
}
.legal-section {
  padding: 31px 0 34px;
  border-top: 1px solid var(--rule);
}
.legal-section:last-child {
  border-bottom: 1px solid var(--rule);
}
.legal-section h2 {
  margin: 0 0 13px;
  font-size: clamp(23px, 2.4vw, 34px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.08;
}
.legal-section p,
.legal-section li {
  margin: 0;
  color: #405044;
  font-size: 14px;
}
.legal-section p + p {
  margin-top: 14px;
}
.legal-section ul {
  margin: 15px 0 0;
  padding-left: 19px;
}
.legal-section li + li {
  margin-top: 8px;
}
.legal-section a {
  color: #435b45;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(67, 91, 69, 0.38);
  text-underline-offset: 3px;
}
.legal-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  padding: 45px clamp(22px, 5vw, 76px);
  align-items: end;
  color: rgba(238, 234, 222, 0.72);
  background: #08150f;
}
.legal-footer p {
  max-width: 440px;
  margin: 18px 0 0;
  font-size: 11px;
  line-height: 1.65;
}
.legal-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 17px 27px;
  justify-content: flex-end;
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.legal-footer-nav a:hover {
  color: var(--linen);
}

@media (max-width: 900px) {
  .private-nav {
    display: none;
  }
  .private-menu {
    display: block;
  }
  .private-header.menu-open {
    background: rgba(8, 21, 15, 0.98);
  }
  .private-header.menu-open .private-nav {
    position: absolute;
    top: 88px;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 21px;
    padding: 31px clamp(22px, 5vw, 76px);
    align-items: flex-start;
    background: rgba(8, 21, 15, 0.98);
    border-bottom: 1px solid rgba(175, 161, 124, 0.14);
  }
  .private-header.menu-open .private-enquire {
    display: none;
  }
  .private-intro-grid,
  .private-format-heading {
    grid-template-columns: 1fr;
  }
  .private-events-top {
    display: block;
  }
  .private-events-top > p {
    margin-top: 22px;
  }
  .event-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .event-image {
    height: min(64vw, 420px);
  }
  .event-body {
    min-height: auto;
  }
}
@media (max-width: 800px) {
  .apx-hero {
    padding: 23px 22px 25px;
    background-position: 57% center;
  }
  .apx-hero-layout {
    padding: 82px 2px 54px;
  }
  .apx-hero h1 {
    font-size: clamp(61px, 18vw, 93px);
  }
  .apx-scroll-cue {
    display: none;
  }
  .apx-manifesto {
    grid-template-columns: 1fr;
    padding: 82px 22px;
  }
  .apx-section-label {
    padding: 0;
  }
  .apx-manifesto h2 {
    margin-top: 52px;
    margin-bottom: 37px;
    font-size: clamp(53px, 15.5vw, 78px);
  }
  .apx-manifesto-copy,
  .apx-principles {
    grid-template-columns: 1fr;
  }
  .apx-manifesto-copy {
    gap: 23px;
  }
  .apx-principles {
    padding: 0 22px;
  }
  .apx-principles article {
    min-height: 185px;
    border-right: 0;
  }
  .apx-access {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 54px;
    padding: 83px 22px;
  }
  .apx-access h2 {
    font-size: clamp(58px, 16vw, 80px);
  }
  .apx-access-form {
    margin-left: 0;
  }
  .apx-footer {
    flex-direction: column;
    min-height: 150px;
    gap: 19px;
    align-items: flex-start;
  }
  .private-header-inner {
    min-height: 78px;
  }
  .private-header.menu-open .private-nav {
    top: 78px;
  }
  .private-hero {
    min-height: 720px;
    padding-top: 136px;
  }
  .private-hero h1 {
    font-size: clamp(55px, 16vw, 85px);
  }
  .private-copy,
  .format-grid {
    grid-template-columns: 1fr;
  }
  .format-card {
    min-height: 260px;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }
  .format-card h3 {
    margin-top: 55px;
  }
  .private-footer,
  .legal-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .private-footer-links,
  .legal-footer-nav {
    justify-content: flex-start;
  }
  .legal-header {
    min-height: 78px;
  }
  .legal-content {
    grid-template-columns: 1fr;
    gap: 33px;
  }
  .legal-aside {
    display: flex;
    gap: 13px;
    align-items: center;
  }
  .legal-aside::before {
    flex: 0 0 36px;
    margin: 0;
  }
  .legal-hero h1 {
    font-size: clamp(58px, 17vw, 90px);
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* Multi-page protected APX export */
.mp-page {
  color: var(--linen);
  background: var(--pine);
}
.mp-header {
  position: relative;
  z-index: 5;
  background: #0b1b14;
  border-bottom: 1px solid rgba(175, 161, 124, 0.14);
}
.mp-header-inner {
  min-height: 88px;
  max-width: 1280px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 0 clamp(22px, 5vw, 76px);
  margin: 0 auto;
}
.apx-header-logo {
  display: block;
  width: clamp(70px, 8vw, 112px);
  height: auto;
}
.apx-footer-logo {
  display: block;
  width: clamp(70px, 6vw, 86px);
  height: auto;
}
.mp-nav {
  display: flex;
  align-items: center;
  gap: 1.55rem;
  color: rgba(238, 234, 222, 0.82);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.mp-nav a:hover,
.mp-nav a[aria-current="page"] {
  color: var(--accent);
}
.mp-enquire {
  padding: 0.82rem 1.4rem;
  color: var(--accent);
  border: 1px solid var(--accent);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    color 180ms ease;
}
.mp-enquire:hover {
  color: var(--pine);
  background: var(--accent);
}
.mp-menu {
  display: none;
  padding: 0;
  border: 0;
  color: var(--linen);
  background: none;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.mp-hero {
  position: relative;
  display: grid;
  min-height: clamp(520px, 76vh, 780px);
  overflow: hidden;
  padding: clamp(74px, 11vw, 150px) clamp(22px, 5vw, 76px)
    clamp(62px, 9vw, 110px);
  align-items: end;
  background: var(--green);
}
.mp-hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(11, 27, 20, 0.94),
      rgba(11, 27, 20, 0.72) 52%,
      rgba(16, 37, 27, 0.48)
    ),
    var(--hero-image) center/cover no-repeat;
  content: "";
}
.mp-hero > div {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
.mp-hero h1 {
  max-width: 935px;
  margin: 14px 0 20px;
  font-size: clamp(54px, 7.5vw, 112px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.84;
}
.mp-hero h1 em {
  color: var(--accent);
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}
.mp-hero-copy {
  max-width: 645px;
  margin: 0;
  color: rgba(238, 234, 222, 0.82);
  font-size: 14px;
  line-height: 1.8;
}
.mp-hero-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding-top: 35px;
  color: var(--accent);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.mp-section {
  padding: clamp(80px, 10vw, 145px) clamp(22px, 5vw, 76px);
}
.mp-section.cream {
  color: var(--ink);
  background: var(--linen);
}
.mp-section.green {
  color: var(--linen);
  background: var(--pine);
}
.mp-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.mp-editorial {
  display: grid;
  grid-template-columns: minmax(160px, 0.33fr) minmax(0, 1fr);
  gap: clamp(35px, 9vw, 142px);
}
.mp-marker {
  color: var(--moss);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-transform: uppercase;
}
.mp-marker b {
  margin-right: 11px;
  color: var(--accent);
}
.mp-editorial h2,
.mp-section-heading {
  max-width: 820px;
  margin: 0 0 37px;
  font-size: clamp(43px, 5.6vw, 82px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.91;
}
.mp-editorial h2 em,
.mp-section-heading em {
  color: var(--accent);
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}
.mp-partners-proposition-heading {
  max-width: 850px;
  font-size: clamp(40px, 4.15vw, 64px) !important;
  letter-spacing: -0.055em !important;
  line-height: 0.98 !important;
  text-wrap: balance;
}
.mp-four-card-section .mp-inner {
  display: flex;
  min-height: clamp(770px, 55vw, 900px);
  flex-direction: column;
}
.mp-four-card-section .mp-grid-4 {
  margin-top: auto;
}
.mp-compact-card-section .mp-inner {
  min-height: clamp(650px, 50vw, 750px);
}
.mp-compact-card-section {
  padding-bottom: 0;
}
.mp-compact-card-section .mp-grid-4 {
  min-height: clamp(320px, 28vw, 390px);
}
.mp-compact-card-section .mp-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 32px 28px 34px;
}
.mp-compact-card-section .mp-card h3 {
  margin: auto 0 14px;
  font-size: clamp(25px, 2.65vw, 38px);
}
.mp-compact-card-section .mp-card p {
  min-height: 3.5em;
}
.mp-bottom-tile-section {
  padding-bottom: 0;
}
.mp-bottom-tile-section .mp-inner {
  display: flex;
  min-height: clamp(650px, 50vw, 750px);
  flex-direction: column;
}
.mp-bottom-tile-section .mp-grid-3,
.mp-bottom-tile-section .mp-grid-4 {
  min-height: clamp(320px, 28vw, 390px);
  margin-top: auto;
}
.mp-bottom-tile-section .mp-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 32px 28px 34px;
}
.mp-bottom-tile-section .mp-card h3 {
  margin: auto 0 14px;
  min-height: 2.1em;
  font-size: clamp(25px, 2.65vw, 38px);
}
.mp-bottom-tile-section .mp-card p {
  min-height: 8.75em;
}
.mp-copy {
  max-width: 820px;
}
.mp-copy:not(div) {
  display: block;
  margin: -6px 0 0;
  color: rgba(238, 234, 222, 0.78);
  font-size: 14px;
  line-height: 1.88;
}
.cream .mp-copy:not(div) {
  color: #405044;
}
.mp-copy p {
  margin: 0 0 18px;
  color: inherit;
  font-size: 14px;
  line-height: 1.88;
  opacity: 0.78;
}
.cream .mp-copy p {
  color: #405044;
  opacity: 1;
}
.mp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 30px;
}
.mp-tag {
  padding: 8px 12px;
  border: 1px solid rgba(175, 161, 124, 0.48);
  color: var(--accent);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.mp-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 5vw, 75px);
}
.mp-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.mp-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
}
.mp-card {
  min-height: 285px;
  padding: 27px 27px 31px;
  border-right: 1px solid var(--rule);
}
.mp-card:last-child {
  border-right: 0;
}
.mp-card > span {
  color: var(--moss);
  font-size: 11px;
}
.mp-card h3 {
  margin: 94px 0 14px;
  font-size: clamp(23px, 2.35vw, 33px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.05;
}
.mp-card p {
  margin: 0;
  color: #526257;
  font-size: 13px;
  line-height: 1.75;
}
.mp-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.mp-list li {
  padding: 14px 0;
  border-top: 1px solid rgba(175, 161, 124, 0.24);
  color: rgba(238, 234, 222, 0.76);
  font-size: 14px;
}
.cream .mp-list li {
  border-color: var(--rule);
  color: #405044;
}
.mp-split-image {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 540px;
  margin-top: 70px;
}
.mp-press-accreditation {
  width: 100%;
  max-width: 1280px;
  margin: clamp(52px, 6vw, 84px) auto 0;
}
.mp-split-image img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
}
.mp-split-image .mp-split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 7vw, 104px);
  background: #173124;
}
.mp-weekend-tile .mp-copy {
  max-width: 560px;
}
.mp-weekend-tile .mp-split-copy {
  color: var(--linen);
}
.mp-weekend-tile .mp-list {
  margin-top: 18px;
}
.mp-weekend-tile .mp-list li {
  border-color: rgba(175, 161, 124, 0.24);
  color: rgba(238, 234, 222, 0.76);
}
.mp-weekend-tile .mp-button {
  align-self: flex-start;
  margin-top: 27px;
}
.mp-split-copy h3 {
  margin: 0 0 24px;
  font-size: clamp(36px, 4.5vw, 68px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.9;
}
.mp-split-copy h3 em {
  color: var(--accent);
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}
.mp-schedule {
  display: grid;
  gap: 0;
  max-width: 760px;
  margin-top: -8px;
  border-top: 1px solid rgba(175, 161, 124, 0.3);
}
.mp-schedule div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(175, 161, 124, 0.22);
  color: rgba(238, 234, 222, 0.72);
  font-size: 13px;
}
.mp-schedule time {
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.mp-schedule-light {
  border-color: var(--rule);
}
.mp-schedule-light div {
  color: #405044;
  border-color: var(--rule);
}
.mp-stat {
  min-height: 245px;
  padding: 24px 0;
  border-top: 1px solid rgba(175, 161, 124, 0.28);
}
.mp-stat strong {
  display: block;
  margin-bottom: 11px;
  color: var(--accent);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(54px, 6vw, 86px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.8;
}
.mp-stat h3 {
  margin: 0 0 10px;
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.mp-stat p {
  max-width: 230px;
  margin: 0;
  color: rgba(238, 234, 222, 0.65);
  font-size: 12px;
  line-height: 1.7;
}
.mp-button {
  display: inline-flex;
  align-items: center;
  padding: 0.95rem 1.8rem;
  color: var(--accent);
  border: 1px solid var(--accent);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 160ms ease;
}
.mp-button:hover {
  color: var(--pine);
  background: var(--accent);
  transform: translateY(-2px);
}
.mp-button.light {
  color: var(--pine);
  border-color: var(--linen);
  background: var(--linen);
}
.mp-button.light:hover {
  border-color: var(--accent);
  background: var(--accent);
}
.mp-event-grid,
.mp-press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 54px;
}
.mp-event-card,
.mp-press-card {
  overflow: hidden;
  border-top: 1px solid rgba(175, 161, 124, 0.35);
}
.mp-partner-package {
  display: flex;
  min-height: 0;
  align-self: start;
  flex-direction: column;
}
.mp-partner-package-grid {
  align-items: start;
}
.mp-package-on-course {
  order: 1;
}
.mp-package-off-course {
  order: 2;
}
.mp-package-title {
  order: 3;
}
.mp-partner-package > div {
  display: flex;
  min-height: 0;
  flex-direction: column;
}
.mp-partner-package h3 {
  font-size: clamp(32px, 3.35vw, 48px);
  line-height: 0.95;
}
.mp-partner-package .mp-package-includes {
  margin: 20px 0 0;
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}
.mp-partner-package .mp-list {
  margin-top: 18px;
}
.mp-partner-package .mp-button {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 28px;
}
.mp-partner-framework {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(175, 161, 124, 0.35);
}
.mp-partner-framework-card {
  display: flex;
  min-height: 470px;
  flex-direction: column;
  padding: 34px 28px 38px;
  border-right: 1px solid rgba(175, 161, 124, 0.25);
}
.mp-partner-framework-card:last-of-type {
  border-right: 0;
}
.mp-partner-framework-card h3 {
  margin: 0;
  color: var(--linen);
  font-family: "Manrope", sans-serif;
  font-size: clamp(24px, 2.25vw, 35px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.98;
}
.mp-partner-framework-card > p {
  min-height: 5.2em;
  margin: 18px 0 30px;
  color: rgba(238, 234, 222, 0.72);
  font-size: 14px;
  line-height: 1.65;
}
.mp-partner-framework-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.mp-partner-framework-card li {
  padding: 13px 0;
  border-top: 1px solid rgba(175, 161, 124, 0.22);
  color: rgba(238, 234, 222, 0.82);
  font-size: 13px;
  line-height: 1.55;
}
.mp-partner-framework-footer {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px;
  border-top: 1px solid rgba(175, 161, 124, 0.35);
}
.mp-partner-framework-footer p {
  max-width: 720px;
  margin: 0;
  color: rgba(238, 234, 222, 0.78);
  font-size: 15px;
  line-height: 1.65;
}
.mp-partner-framework-footer .mp-button {
  flex: 0 0 auto;
}
.mp-press-card {
  display: flex;
  flex-direction: column;
}
.mp-event-card img,
.mp-press-card img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  filter: none;
}
.mp-event-card > div,
.mp-press-card > div {
  min-height: 230px;
  padding: 22px 0;
}
.mp-press-card > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 260px;
}
.mp-press-card .mp-button {
  align-self: flex-start;
  margin-top: auto;
}
.mp-event-card span,
.mp-press-card span {
  color: var(--accent);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.mp-event-card h3,
.mp-press-card h3 {
  margin: 13px 0 9px;
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.04;
}
.mp-event-card p,
.mp-press-card p {
  margin: 0 0 10px;
  color: rgba(238, 234, 222, 0.66);
  font-size: 12px;
  line-height: 1.65;
}
.mp-quote {
  max-width: 990px;
  margin: 0 auto;
  padding: clamp(65px, 9vw, 115px) 0;
  border-top: 1px solid var(--rule);
  color: #20352a;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(33px, 4.5vw, 64px);
  font-style: italic;
  letter-spacing: -0.04em;
  line-height: 0.98;
  text-align: center;
}
.mp-quote cite {
  display: block;
  margin-top: 23px;
  color: var(--moss);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.mp-press-announcements .mp-quote {
  color: var(--linen);
  border-color: rgba(175, 161, 124, 0.3);
}
.mp-press-announcements .mp-quote cite {
  color: var(--accent);
}
.mp-logo-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 4vw, 62px);
  margin-top: 30px;
  padding-top: 31px;
  border-top: 1px solid rgba(175, 161, 124, 0.22);
}
.mp-logo-row img {
  width: 100%;
  max-width: 245px;
  height: 72px;
  object-fit: contain;
  object-position: left center;
  filter: grayscale(1) brightness(2);
  opacity: 0.86;
}
.mp-cta-image {
  position: relative;
  overflow: hidden;
  padding: clamp(78px, 11vw, 130px) clamp(22px, 5vw, 76px);
  background:
    linear-gradient(90deg, rgba(11, 27, 20, 0.92), rgba(11, 27, 20, 0.48)),
    var(--cta-image) center/cover;
}
.mp-cta-image > div {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}
.mp-cta-image h2 {
  max-width: 660px;
  margin: 11px 0 21px;
  font-size: clamp(46px, 6vw, 84px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.88;
}
.mp-cta-image h2 em {
  color: var(--accent);
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}
.mp-cta-image p:not(.apx-eyebrow) {
  max-width: 500px;
  margin: 0 0 29px;
  color: rgba(238, 234, 222, 0.8);
  font-size: 14px;
  line-height: 1.8;
}
.mp-contact-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(42px, 9vw, 150px);
}
.mp-contact-details h2 {
  margin: 12px 0 46px;
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.9;
}
.mp-contact-details h2 em {
  color: var(--accent);
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

/* Reserve the gold italic display treatment for page hero headings only. */
.apx-manifesto h2 em,
.apx-access h2 em,
.private-intro h2 em,
.private-format h2 em,
.private-events h2 em,
.private-contact h2 em,
.mp-editorial h2 em,
.mp-section-heading em,
.mp-split-copy h3 em,
.mp-cta-image h2 em,
.mp-contact-details h2 em {
  color: currentColor;
  font-family: inherit;
  font-size: inherit;
  font-style: normal;
  font-weight: inherit;
  letter-spacing: inherit;
}

.mp-contact-block {
  padding: 21px 0;
  border-top: 1px solid rgba(175, 161, 124, 0.28);
}
.mp-contact-block > span {
  display: block;
  margin-bottom: 7px;
  color: var(--accent);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.mp-contact-block strong,
.mp-contact-block a {
  color: var(--linen);
  font-size: 16px;
  font-weight: 500;
}
.mp-contact-block p {
  margin: 8px 0 0;
  color: rgba(238, 234, 222, 0.63);
  font-size: 13px;
  line-height: 1.7;
}
.mp-form {
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid rgba(175, 161, 124, 0.32);
  background: rgba(23, 49, 36, 0.72);
}
.mp-form h2 {
  margin: 0 0 32px;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.95;
}
.mp-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.mp-field {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}
.mp-field label {
  color: var(--accent);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.mp-field input,
.mp-field select,
.mp-field textarea {
  width: 100%;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid rgba(238, 234, 222, 0.5);
  outline: 0;
  color: var(--linen);
  background: transparent;
  font-size: 14px;
}
.mp-field select {
  color: rgba(238, 234, 222, 0.82);
}
.mp-field option {
  color: var(--ink);
}
.mp-field textarea {
  min-height: 110px;
  resize: vertical;
}
.mp-form-note,
.mp-form-success {
  margin: 15px 0 0;
  color: rgba(238, 234, 222, 0.58);
  font-size: 11px;
  line-height: 1.6;
}
.mp-form-success {
  color: var(--accent);
  font-weight: 700;
}
.mp-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  padding: 52px clamp(22px, 5vw, 76px) 28px;
  color: rgba(238, 234, 222, 0.72);
  background: #08150f;
}
.mp-footer-left p {
  max-width: 410px;
  margin: 18px 0 34px;
  font-size: 11px;
  line-height: 1.7;
}
.mp-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  align-items: end;
  justify-content: flex-end;
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.mp-footer-links a:hover {
  color: var(--linen);
}
.mp-footer-bottom {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid rgba(175, 161, 124, 0.14);
  color: rgba(238, 234, 222, 0.45);
  font-size: 9px;
}
@media (max-width: 900px) {
  .mp-nav {
    display: none;
  }
  .mp-menu {
    display: block;
  }
  .mp-header.menu-open {
    background: #08150f;
  }
  .mp-header.menu-open .mp-nav {
    position: absolute;
    top: 88px;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 21px;
    padding: 31px clamp(22px, 5vw, 76px);
    align-items: flex-start;
    background: #08150f;
    border-bottom: 1px solid rgba(175, 161, 124, 0.14);
  }
  .mp-header.menu-open .mp-enquire {
    display: none;
  }
  .mp-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .mp-grid-4 .mp-card:nth-child(2) {
    border-right: 0;
  }
  .mp-event-grid,
  .mp-press-grid {
    grid-template-columns: 1fr;
  }
  .mp-contact-grid {
    grid-template-columns: 1fr;
  }
  .mp-partner-framework {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .mp-partner-framework-card:nth-of-type(2) {
    border-right: 0;
  }
}
@media (max-width: 700px) {
  .mp-header-inner {
    min-height: 78px;
  }
  .mp-header.menu-open .mp-nav {
    top: 78px;
  }
  .mp-enquire {
    display: none;
  }
  .mp-partner-framework {
    grid-template-columns: 1fr;
  }
  .mp-partner-framework-card {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(175, 161, 124, 0.25);
  }
  .mp-partner-framework-footer {
    display: block;
  }
  .mp-partner-framework-footer .mp-button {
    margin-top: 22px;
  }
  .mp-hero {
    min-height: 650px;
  }
  .mp-hero h1 {
    font-size: clamp(54px, 16vw, 83px);
  }
  .mp-editorial,
  .mp-grid-2,
  .mp-split-image {
    grid-template-columns: 1fr;
  }
  .mp-grid-3,
  .mp-grid-4 {
    grid-template-columns: 1fr;
  }
  .apx-public-logo-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 34px;
  }
  .apx-public-logo-row img {
    height: 56px;
  }
  .mp-logo-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .mp-logo-row img {
    height: 62px;
  }
  .mp-card {
    min-height: 235px;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }
  .mp-card h3 {
    margin-top: 55px;
  }
  .mp-split-image img {
    min-height: 300px;
  }
  .mp-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .mp-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .mp-footer-links {
    justify-content: flex-start;
  }
}
