:root {
  --mx: 0;
  --my: 0;
  --back-opacity: 1;
  --back-x: 0px;
  --back-y: 0px;
  --back-scale: 0.76;
  --grid-y: 10vh;
  --grid-scale: 0.78;
  --block-y: 20vh;
  --blur-px: 0px;
  --back-brightness: 1;
  --block-blur-px: 0px;
  --block-brightness: 1;
  --block-saturation: 1;
  --shade-opacity: 1;
  --shade-z: 2;
  --shade-top-alpha: 0;
  --shade-mid-alpha: 0;
  --shade-bottom-alpha: 0;
  --blur-tint: 18, 20, 22;
  --title-y: 0px;
  --title-scale: 1;
  --title-opacity: 1;
  --asset-x: -50%;
  --asset-y: 0px;
  --asset-bottom: 5vh;
  --asset-width: 78vw;
  --asset-scale: 1.02;
  --split-left-x: -50%;
  --split-left-y: 0px;
  --split-left-scale: 1;
  --split-right-x: -50%;
  --split-right-y: 0px;
  --split-right-scale: 1;
  --split-opacity: 1;
  --asset-opacity: 1;
  --frame2-opacity: 0;
  --frame2-x: -50%;
  --frame2-y: -50%;
  --frame2-scale: 1.06;
  --intro-copy-y: 0px;
  --intro-copy-opacity: 1;
  --panelA-opacity: 0;
  --panelA-y: calc(-50% + 58px);
  --panelB-opacity: 0;
  --panelB-y: calc(-50% + 58px);
  --panelC-opacity: 0;
  --panelC-y: calc(-50% + 58px);
  --panelD-opacity: 0;
  --panelD-y: calc(-50% + 58px);
  --panelE-opacity: 0;
  --panelE-y: calc(-50% + 58px);
  --sights-controls-opacity: 0;
  --sights-y: 0px;
  --sights-enter-x: 420vw;
  --sights-visibility: hidden;
  --sights-shift: 0px;
  --sights-scale: 1;
  --sights-top: clamp(112px, 19vh, 220px);
  --sights-screen-top: clamp(112px, 19vh, 220px);

  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--paper);
  background: var(--ground);
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
}
html {
  min-height: 100%;
  scroll-behavior: smooth;
  background: #0b0c0b;
}
body {
  min-height: 100%;
  margin: 0;
  overflow-x: clip;
  background: #0b0c0b;
}
button {
  border: 0;
  font: inherit;
}
a {
  text-decoration: none;
  color: inherit;
}
.site-shell {
  min-height: 100vh;
}

/* ---------- scroll rig ---------- */
.cinema-scroll {
  position: relative;
  height: calc(100vh + 3700px);
}
.anchor {
  position: absolute;
  left: 0;
  width: 1px;
  height: 1px;
}
#acquisitions {
  top: 900px;
}
#intelligence {
  top: 1600px;
}
#approach {
  top: 2600px;
}
#opportunities {
  top: 3400px;
}

.stage {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  isolation: isolate;
  background: #101110;
}

.world,
.back-stack,
.sky-img,
.shade,
.scene-img,
.site-header,
.sights-slider,
.sights-controls,
.hero-title,
.intro-copy,
.story-panel {
  position: absolute;
}
.world {
  inset: 0;
  overflow: hidden;
  background: #101110;
}

/* ---------- header ---------- */
.site-header {
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto minmax(240px, 1fr);
  align-items: center;
  gap: 32px;
  padding: 32px clamp(24px, 3vw, 48px);
  color: rgba(243, 236, 224, 0.86);
}
.site-logo {
  justify-self: start;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: rgba(243, 236, 224, 0.94);
  white-space: nowrap;
}
.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.2vw, 40px);
}
.site-nav a,
.header-cta {
  color: rgba(243, 236, 224, 0.82);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
  transition: color 220ms ease;
}
.site-nav a:hover,
.header-cta:hover {
  color: var(--paper);
}
.header-cta {
  justify-self: end;
  white-space: nowrap;
}
.site-header a:focus-visible,
.sight-card:focus-visible,
.sight-nav:focus-visible,
.cta-primary:focus-visible,
.cta-secondary:focus-visible {
  outline: 1px solid var(--paper);
  outline-offset: 4px;
}

/* ---------- scene layers ---------- */
.scene-img {
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  will-change: transform, opacity, filter;
  pointer-events: none;
}
.sky-img {
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(var(--blur-px)) brightness(calc(var(--back-brightness) * 0.82)) saturate(0.5);
}
.back-stack {
  z-index: 1;
  top: 0;
  bottom: 0;
  left: -3vw;
  right: -3vw;
  opacity: var(--back-opacity);
  transform: translate3d(var(--back-x), var(--back-y), 0) scale(var(--back-scale));
  transform-origin: 50% 100%;
  will-change: transform, filter, opacity;
}
.back-img {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(var(--blur-px)) brightness(var(--back-brightness));
}
.back-block,
.back-grid {
  top: auto;
  bottom: 0;
  left: 48%;
  right: auto;
  width: 112%;
  height: auto;
  object-fit: contain;
}
.back-block {
  z-index: 3;
  opacity: 0.92;
  filter: blur(var(--block-blur-px)) brightness(calc(var(--block-brightness) * 0.72))
    saturate(calc(var(--block-saturation) * 0.55));
  transform: translate3d(-50%, var(--block-y), 0) scale(0.86);
}
.back-grid {
  z-index: 1;
  -webkit-mask-image: radial-gradient(75% 75% at 50% 50%, #000 35%, transparent 100%);
  mask-image: radial-gradient(75% 75% at 50% 50%, #000 35%, transparent 100%);
  opacity: 0.5;
  mix-blend-mode: screen;
  transform: translate3d(-50%, calc(var(--grid-y) - 110px), 0) scale(var(--grid-scale));
}

/* ---------- opportunities slider ---------- */
.sights-slider {
  z-index: 7;
  left: 0;
  right: 0;
  top: calc(var(--sights-screen-top) + 40px);
  padding: 0;
  opacity: 1;
  visibility: var(--sights-visibility);
  transform: translate3d(var(--sights-enter-x), var(--sights-y), 0) scale(var(--sights-scale));
  transform-origin: 0 0;
  pointer-events: auto;
  will-change: transform;
}
.sights-track {
  display: flex;
  gap: clamp(16px, 1.15vw, 24px);
  align-items: stretch;
  transform: translate3d(calc(var(--sights-shift) - 18vw), 0, 0);
  transition: transform 640ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.sights-track.is-jumping {
  transition: none;
}
.sight-card {
  position: relative;
  flex: 0 0 clamp(360px, 19.4vw, 430px);
  height: 220px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(20, 20, 15, 0.14);
  border-radius: 2px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.34);
  cursor: pointer;
  pointer-events: auto;
  user-select: none;
  transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1);
}
.sight-card.is-active {
  transform: translateY(-6px);
}
.sight-kicker {
  display: block;
  margin-bottom: 56px;
  color: rgba(20, 20, 15, 0.6);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.sight-pin {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 67.2px;
  height: 67.2px;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  pointer-events: none;
}
.sight-card h3 {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: calc(24px + (15px * 1.24 * 2) + 12px);
  max-width: calc(100% - 76px);
  margin: 0;
  font-family: var(--display);
  font-size: 27px;
  font-weight: 400;
  line-height: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sight-card p {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  margin: 12px 0 0;
  color: rgba(20, 20, 15, 0.74);
  font-size: 15px;
  line-height: 1.24;
  display: -webkit-box;
  max-height: calc(2em * 1.24);
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.sights-controls {
  z-index: 8;
  left: 48px;
  top: calc(var(--sights-screen-top) + 40px + 220px + 24px);
  display: flex;
  gap: 14px;
  opacity: var(--sights-controls-opacity);
  transform: translate3d(0, var(--sights-y), 0);
  pointer-events: none;
  will-change: transform, opacity;
}
.sights-controls.is-ready {
  pointer-events: auto;
}
.sight-nav {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(243, 236, 224, 0.94);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

/* ---------- hero ---------- */
.hero-title {
  z-index: 8;
  left: 50%;
  top: clamp(122px, 19vh, 205px);
  width: min(94vw, 1780px);
  margin: 0;
  color: var(--paper);
  font-family: var(--display);
  font-size: 13rem;
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: 0.02em;
  text-align: center;
  transform: translate3d(-50%, var(--title-y), 0) scale(var(--title-scale));
  opacity: var(--title-opacity);
  will-change: transform, opacity;
}

.asset-img {
  z-index: 4;
  left: 50%;
  bottom: var(--asset-bottom);
  width: min(var(--asset-width), 2140px);
  height: auto;
  opacity: var(--asset-opacity);
  filter: brightness(0.86) saturate(0.5);
  transform: translate3d(var(--asset-x), var(--asset-y), 0) scale(var(--asset-scale));
  transform-origin: 50% 48%;
}
.splitframe-img {
  z-index: 6;
  bottom: -6vh;
  width: min(42vw, 820px);
  height: auto;
  opacity: var(--split-opacity);
  filter: brightness(0.82) saturate(0.4);
  pointer-events: none;
}
.splitframe-left {
  left: 22%;
  transform: translate3d(var(--split-left-x), var(--split-left-y), 0) scale(var(--split-left-scale));
  transform-origin: 21% 52%;
}
.splitframe-right {
  left: 78%;
  transform: translate3d(var(--split-right-x), var(--split-right-y), 0) scale(var(--split-right-scale));
  transform-origin: 79% 52%;
}
.frame-two-img {
  z-index: 5;
  -webkit-mask-image: radial-gradient(70% 70% at 50% 50%, #000 40%, transparent 100%);
  mask-image: radial-gradient(70% 70% at 50% 50%, #000 40%, transparent 100%);
  left: 50%;
  top: 50%;
  width: min(122vw, 2160px);
  height: auto;
  opacity: var(--frame2-opacity);
  transform: translate3d(var(--frame2-x), var(--frame2-y), 0) scale(var(--frame2-scale));
  transform-origin: 50% 48%;
}
.shade {
  inset: 0;
  position: absolute;
  z-index: var(--shade-z);
  pointer-events: none;
  opacity: var(--shade-opacity);
  background: linear-gradient(
    180deg,
    rgba(var(--blur-tint), var(--shade-top-alpha)) 0%,
    rgba(var(--blur-tint), var(--shade-mid-alpha)) 48%,
    rgba(var(--blur-tint), var(--shade-bottom-alpha)) 100%
  );
}

/* ---------- copy ---------- */
.intro-copy::before {
  content: "";
  position: absolute;
  inset: -90% -60%;
  z-index: -1;
  background: radial-gradient(
    60% 60% at 50% 50%,
    rgba(8, 9, 8, 0.78) 0%,
    rgba(8, 9, 8, 0.5) 50%,
    rgba(8, 9, 8, 0) 100%
  );
  pointer-events: none;
}
.hero-title::before {
  content: "";
  position: absolute;
  inset: -60% -25%;
  z-index: -1;
  background: radial-gradient(
    55% 60% at 50% 50%,
    rgba(8, 9, 8, 0.7) 0%,
    rgba(8, 9, 8, 0.36) 55%,
    rgba(8, 9, 8, 0) 100%
  );
  pointer-events: none;
}
.intro-copy {
  z-index: 9;
  left: 50%;
  bottom: clamp(56px, 24vh, 340px);
  width: min(620px, calc(100vw - 40px));
  text-align: center;
  transform: translate3d(-50%, var(--intro-copy-y), 0);
  opacity: var(--intro-copy-opacity);
  will-change: transform, opacity;
}
.intro-descriptor {
  margin: 0 0 20px;
  color: rgba(243, 236, 224, 0.62);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.34em;
}
.intro-copy p {
  margin: 0 auto;
  max-width: 560px;
  color: var(--paper);
  font-size: 1.18rem;
  font-weight: 400;
  line-height: 1.3;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}
.hero-tags span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 22px;
  color: rgba(243, 236, 224, 0.9);
  border: 1px solid rgba(243, 236, 224, 0.3);
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-panel {
  z-index: 10;
  left: 50%;
  top: 45%;
  width: min(860px, calc(100vw - 42px));
  text-align: center;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0);
  will-change: transform, opacity;
}
.story-panel::before {
  content: "";
  position: absolute;
  inset: -70% -45%;
  z-index: -1;
  background: radial-gradient(
    60% 60% at 50% 50%,
    rgba(8, 9, 8, 0.82) 0%,
    rgba(8, 9, 8, 0.62) 48%,
    rgba(8, 9, 8, 0) 100%
  );
  pointer-events: none;
}
.story-panel h2 {
  margin: 0;
  color: var(--paper);
  font-family: var(--display);
  font-size: 4.4rem;
  font-weight: 400;
  line-height: 1;
  text-shadow: 0 16px 38px var(--shadow);
}
.story-panel p {
  width: min(540px, 100%);
  margin: 26px auto 0;
  color: rgba(243, 236, 224, 0.86);
  font-size: 1.05rem;
  line-height: 1.4;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
}
.panel-note,
.panel-turn {
  font-family: var(--display);
  font-size: 2rem !important;
  line-height: 1.1 !important;
  color: var(--paper) !important;
  margin-top: 32px !important;
}
.story-panel-a {
  top: 58%;
  opacity: var(--panelA-opacity);
  transform: translate3d(-50%, var(--panelA-y), 0);
}
.story-panel-b {
  top: 44%;
  opacity: var(--panelB-opacity);
  transform: translate3d(-50%, var(--panelB-y), 0);
}
.story-panel-c {
  top: 46%;
  opacity: var(--panelC-opacity);
  transform: translate3d(-50%, var(--panelC-y), 0);
}
.story-panel-d {
  top: 46%;
  opacity: var(--panelD-opacity);
  transform: translate3d(-50%, var(--panelD-y), 0);
}
.story-panel-e {
  top: 62%;
  opacity: var(--panelE-opacity);
  transform: translate3d(-50%, var(--panelE-y), 0);
}

.step-line {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  width: min(860px, 100%);
  margin: 48px auto 0;
  padding: 0;
  list-style: none;
  text-align: left;
}
.step-line li {
  padding-top: 16px;
  border-top: 1px solid rgba(243, 236, 224, 0.28);
}
.step-line strong {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.22em;
}
.step-line span {
  display: block;
  margin-top: 10px;
  color: rgba(243, 236, 224, 0.72);
  font-size: 0.9rem;
  line-height: 1.35;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  width: min(860px, 100%);
  margin: 52px auto 0;
  text-align: left;
}
.facts dt {
  padding-top: 16px;
  border-top: 1px solid rgba(243, 236, 224, 0.28);
  color: var(--paper);
  font-family: var(--display);
  font-size: 1.9rem;
  line-height: 1;
}
.facts dd {
  margin: 12px 0 0;
  color: rgba(243, 236, 224, 0.72);
  font-size: 0.9rem;
  line-height: 1.35;
}

.stage-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  width: min(900px, 100%);
  margin: 48px auto 0;
  padding: 0;
  list-style: none;
  text-align: left;
}
.stage-list li {
  padding-top: 14px;
  border-top: 1px solid rgba(243, 236, 224, 0.28);
}
.stage-list span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}
.stage-list p {
  width: auto;
  margin: 10px 0 0;
  font-size: 0.86rem;
  line-height: 1.35;
  text-align: left;
}

/* ---------- static sections ---------- */
.partners,
.closing {
  position: relative;
  z-index: 2;
  padding: clamp(90px, 14vh, 180px) clamp(24px, 6vw, 120px);
  background: #0b0c0b;
}
.partners h2,
.closing h2 {
  margin: 0;
  max-width: 18ch;
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 400;
  line-height: 1.02;
}
.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  margin-top: 72px;
}
.partner-grid h3 {
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(243, 236, 224, 0.22);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.22em;
}
.partner-grid p {
  margin: 14px 0 0;
  color: rgba(243, 236, 224, 0.72);
  font-size: 1rem;
  line-height: 1.45;
}
.partner-note {
  max-width: 46ch;
  margin: 64px 0 0;
  color: rgba(243, 236, 224, 0.82);
  font-family: var(--display);
  font-size: 1.6rem;
  line-height: 1.2;
}
.closing {
  border-top: 1px solid rgba(243, 236, 224, 0.14);
}
.closing-mark {
  margin: 64px 0 0;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.closing-sub {
  margin: 10px 0 0;
  color: rgba(243, 236, 224, 0.6);
  font-size: 0.95rem;
}
.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 48px;
}
.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 30px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--paper);
  font-size: 0.95rem;
  font-weight: 500;
}
.cta-secondary {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 30px;
  border: 1px solid rgba(243, 236, 224, 0.32);
  border-radius: 999px;
  font-size: 0.95rem;
}
/* .closing-footer removed: the design's one-line "© 2026" footer inside
   .closing was replaced by the shared legal footer, which renders after
   </main> as .site-footer (see build.mjs footer()). No element carries
   this class any more. */

/* ---------- responsive ---------- */
@media (max-width: 1500px) {
  .hero-title {
    font-size: 10.5rem;
  }
  .story-panel h2 {
    font-size: 3.8rem;
  }
}

@media (max-width: 1100px) {
  .hero-title {
    top: 15vh;
    font-size: 7rem;
  }
  .asset-img {
    width: 138vw;
  }
  .splitframe-img {
    width: 52vw;
  }
  .frame-two-img {
    width: 132vw;
  }
  .story-panel h2 {
    font-size: 3rem;
  }
  .step-line,
  .facts,
  .stage-list,
  .partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 36px;
  }
  .sight-card {
    flex-basis: clamp(320px, 40vw, 390px);
  }
}

@media (max-width: 640px) {
  .stage {
    min-height: 640px;
  }
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 22px;
  }
  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .site-nav::-webkit-scrollbar {
    display: none;
  }
  .hero-title {
    top: 17vh;
    font-size: 4.2rem;
  }
  .asset-img {
    bottom: 2vh;
    width: 190vw;
  }
  .splitframe-img {
    width: 70vw;
  }
  .frame-two-img {
    width: 176vw;
  }
  .intro-copy {
    bottom: 42px;
  }
  .intro-copy p,
  .story-panel p {
    font-size: 0.98rem;
  }
  .story-panel h2 {
    font-size: 2.2rem;
  }
  .panel-note,
  .panel-turn {
    font-size: 1.4rem !important;
  }
  .step-line,
  .facts,
  .stage-list,
  .partner-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 26px;
  }
  .stage-list li:nth-child(n + 3),
  .step-line li:nth-child(n + 3) {
    display: none;
  }
  .sight-card {
    flex-basis: min(82vw, 330px);
  }
  .sights-controls {
    left: 24px;
    top: calc(var(--sights-screen-top) + 296px);
  }
  .sight-pin {
    width: 57.6px;
    height: 57.6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .scene-img,
  .back-stack,
  .hero-title,
  .intro-copy,
  .story-panel,
  .sights-track,
  .sights-slider,
  .sight-card {
    transition: none;
  }
}

/* ---------- build-time injected blocks ----------
   The enquiry form and the shared site footer are generated by build.mjs and
   injected into templates/home.html. Everything above this line is the design
   as imported; everything below is styled to sit inside it — same ground,
   same paper, same Instrument Serif headings, same restraint. */

/* Honeypot — off-screen, never focusable by a human. */
.hp {
  position: absolute;
  left: -9999px;
}

.enquiry {
  position: relative;
  z-index: 2;
  padding: clamp(80px, 12vh, 150px) clamp(24px, 6vw, 120px);
  background: #0b0c0b;
  border-top: 1px solid rgba(243, 236, 224, 0.14);
}
.enquiry h2 {
  margin: 0;
  max-width: 18ch;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  font-weight: 400;
  line-height: 1.02;
}
.enquiry-form {
  max-width: 520px;
  margin-top: 56px;
}
.enquiry-form .field {
  margin-bottom: 26px;
}
.enquiry-form label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(243, 236, 224, 0.55);
}
.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid rgba(243, 236, 224, 0.28);
  border-radius: 0;
  background: transparent;
  color: var(--paper);
  font-family: var(--body);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}
.enquiry-form textarea {
  min-height: 112px;
  resize: vertical;
}
.enquiry-form select option {
  color: var(--ink);
}
.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  outline: none;
  border-bottom-color: var(--paper);
}
.enquiry-form button {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  margin-top: 14px;
  padding: 0 34px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.enquiry-form button:hover {
  opacity: 0.86;
}
/* Cloudflare Turnstile widget — sits directly above the submit button.
   Its own iframe carries fixed padding; this only adds breathing room
   against the textarea above it. data-theme="dark" (set in build.mjs) is
   what actually keeps it legible against this page's dark ground. */
.enquiry-form .cf-turnstile {
  margin-top: 6px;
}

/* Shared legal footer — same markup as every other page, restyled for the
   cinematic palette. See footer() in build.mjs. */
.site-footer {
  position: relative;
  z-index: 2;
  background: #0b0c0b;
  border-top: 1px solid rgba(243, 236, 224, 0.14);
  color: rgba(243, 236, 224, 0.55);
  font-size: 0.85rem;
}
.site-footer .wrap {
  max-width: none;
  padding: clamp(48px, 7vh, 76px) clamp(24px, 6vw, 120px);
}
.site-footer .footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
  justify-content: space-between;
  align-items: baseline;
}
.footer-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  color: var(--paper);
}
.footer-brand .brand-mark {
  font-family: var(--display);
  font-size: 1.1rem;
}
.footer-brand .brand-name {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}
.footer-links a {
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: var(--paper);
}
.footer-sms {
  max-width: 78ch;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(243, 236, 224, 0.12);
  font-size: 0.78rem;
  line-height: 1.7;
  color: rgba(243, 236, 224, 0.45);
}
.footer-sms strong {
  color: rgba(243, 236, 224, 0.72);
  font-weight: 600;
}
.footer-sms a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  justify-content: space-between;
  margin-top: 32px;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  color: rgba(243, 236, 224, 0.38);
}

@media (max-width: 1100px) {
  .enquiry-form {
    max-width: none;
  }
}

/* ---------- partner cards as links ----------
   The design shipped these as inert <article> elements. They are real
   anchors now, so each one needs a visible affordance — an underlined,
   letterspaced action label that brightens and nudges on hover. */
.partner-card {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.partner-cta {
  display: inline-flex;
  gap: 0.5em;
  align-items: baseline;
  margin-top: 1.1rem;
  padding-bottom: 0.35rem;
  font-family: var(--body);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0.72;
  border-bottom: 1px solid rgba(243, 236, 224, 0.28);
  transition: opacity 0.3s ease, border-color 0.3s ease;
}
.partner-cta span {
  transition: transform 0.3s ease;
}
.partner-card:hover .partner-cta {
  opacity: 1;
  border-bottom-color: rgba(243, 236, 224, 0.72);
}
.partner-card:hover .partner-cta span {
  transform: translateX(4px);
}
.partner-card:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: 6px;
}
