:root {
  --navy: #0b1827;
  --navy-deep: #07111d;
  --navy-soft: #142438;
  --ivory: #f2ede3;
  --paper: #e8e0d3;
  --vellum: #ddd2c0;
  --gold: #aa8954;
  --gold-light: #d1b37d;
  --ink: #182230;
  --muted: #706a61;
  --line-dark: rgba(11, 24, 39, 0.16);
  --line-light: rgba(242, 237, 227, 0.18);
  --serif: "Cormorant Garamond", "Bodoni 72", Didot, Baskerville, Georgia, serif;
  --sans: Inter, Manrope, "Helvetica Neue", Arial, sans-serif;
  --page-max: 1180px;
  --page-gutter: clamp(24px, 5vw, 70px);
  --section-y: clamp(108px, 13vw, 184px);
  --section-y-compact: clamp(76px, 8vw, 118px);
  --measure-lead: 620px;
  --measure-body: 540px;
  --measure-note: 460px;
  --type-hero: clamp(58px, 7.2vw, 104px);
  --hero-ratio: 16 / 9;
  --type-section: clamp(44px, 5.2vw, 76px);
  --type-subsection: clamp(25px, 2.2vw, 34px);
  --type-lead: clamp(19px, 1.75vw, 26px);
  --type-body: 15px;
  --leading-body: 1.66;
  --leading-lead: 1.42;
  --heading-tight: .9;
  --motion-ease: cubic-bezier(.22, .61, .36, 1);
  --motion-slow: 620ms;
  --motion-medium: 420ms;
  --motion-fast: 220ms;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--ivory); color: var(--ink); font-family: var(--sans); font-size: var(--type-body); line-height: var(--leading-body); text-rendering: optimizeLegibility; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
::selection { background: var(--gold); color: var(--navy); }

.skip-link { position: fixed; z-index: 1000; top: 12px; left: 12px; transform: translateY(-150%); padding: 12px 18px; background: var(--ivory); color: var(--navy); }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 4px; }

.site-header { position: fixed; z-index: 100; inset: 0 0 auto; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; min-height: 96px; padding: 22px var(--page-gutter); color: var(--ivory); border-bottom: 1px solid rgba(242, 237, 227, 0.1); transition: background-color var(--motion-medium) var(--motion-ease), min-height var(--motion-medium) var(--motion-ease), color var(--motion-medium) var(--motion-ease), padding var(--motion-medium) var(--motion-ease), border-color var(--motion-medium) var(--motion-ease), box-shadow var(--motion-medium) var(--motion-ease); }
.site-header:not(.is-scrolled) { opacity: 0; pointer-events: none; }
.site-header.is-scrolled { min-height: 70px; padding-top: 14px; padding-bottom: 14px; color: var(--navy); background: rgba(242, 237, 227, 0.94); border-color: rgba(11, 24, 39, 0.09); box-shadow: 0 1px 18px rgba(11, 24, 39, .04); backdrop-filter: blur(14px); }
.wordmark { display: inline-flex; flex-direction: column; justify-self: start; width: max-content; text-decoration: none; }
.wordmark span { color: var(--gold-light); font-family: var(--serif); font-size: 27px; line-height: 1; letter-spacing: .24em; }
.site-header.is-scrolled .wordmark span { color: #8f6b36; }
.wordmark small { margin-top: 6px; font-size: 8px; line-height: 1; letter-spacing: .19em; text-transform: uppercase; }
.site-header nav { display: flex; gap: clamp(28px, 3.2vw, 44px); }
.site-header nav a, .header-request { font-size: 9px; font-weight: 600; letter-spacing: .18em; text-decoration: none; text-transform: uppercase; }
.site-header nav a { position: relative; opacity: .64; transition: opacity var(--motion-fast) var(--motion-ease); }
.site-header nav a::after, .header-request::after, .text-button::after { content: ""; position: absolute; right: 0; bottom: -5px; left: 0; border-bottom: 1px solid currentColor; opacity: .55; transform: scaleX(.42); transform-origin: left; transition: transform var(--motion-medium) var(--motion-ease), opacity var(--motion-medium) var(--motion-ease); }
.site-header nav a:hover { opacity: 1; }
.site-header nav a:hover::after, .header-request:hover::after, .text-button:hover::after { opacity: .86; transform: scaleX(1); }
.header-request { position: relative; justify-self: end; padding: 9px 0 7px; opacity: .82; transition: opacity var(--motion-fast) var(--motion-ease); }
.site-header.is-scrolled .header-request { border-bottom-color: rgba(11, 24, 39, .42); }

.hero { position: relative; min-height: calc(100vw * 951 / 1653); display: flex; align-items: flex-end; overflow: hidden; padding: 155px var(--page-gutter) clamp(78px, 9vh, 116px); color: var(--ivory); background: var(--navy); }
.hero__picture { position: absolute; inset: 0; display: block; }
.hero__image { width: 100%; height: 100%; object-fit: contain; object-position: center top; scale: 1; animation: none; background: #0a0b09; }
.hero__hotspot { position: absolute; z-index: 3; display: block; }
.hero__hotspot--house { left: 30.5%; top: 4.5%; width: 9%; height: 5%; }
.hero__hotspot--allocation { left: 43%; top: 4.5%; width: 12%; height: 5%; }
.hero__hotspot--circle { left: 55.2%; top: 4.5%; width: 9%; height: 5%; }
.hero__hotspot--request { left: 77%; top: 4%; width: 18%; height: 5.5%; }
.hero__hotspot--button { left: 3.3%; top: 80.3%; width: 22.2%; height: 7.2%; }
.hero__veil { display: none; }
.hero__content { position: absolute; z-index: 1; left: var(--page-gutter); bottom: clamp(78px, 9vh, 116px); width: min(680px, 100%); }
.hero__content, .hero__content.reveal.is-visible, .hero__scroll { opacity: 0 !important; pointer-events: none; }
.eyebrow { margin: 0 0 22px; color: var(--gold-light); font-size: 10px; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; }
.hero h1 { margin-bottom: 30px; font-size: var(--type-hero); line-height: .9; letter-spacing: 0; }
.hero__subhead { max-width: var(--measure-note); margin-bottom: 28px; font-family: var(--serif); font-size: var(--type-lead); line-height: 1.25; }
.hero__support { max-width: 455px; margin-bottom: 38px; color: rgba(242, 237, 227, .72); font-size: 13px; letter-spacing: .03em; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 17px 30px; border: 1px solid transparent; border-radius: 0; font-size: 9px; font-weight: 700; letter-spacing: .2em; text-decoration: none; text-transform: uppercase; cursor: pointer; transition: opacity var(--motion-fast) var(--motion-ease), color var(--motion-medium) var(--motion-ease), background-color var(--motion-medium) var(--motion-ease), border-color var(--motion-medium) var(--motion-ease); }
.button--dark { color: var(--ivory); background: rgba(11, 24, 39, .72); border-color: rgba(242, 237, 227, .5); }
.button--dark:hover { color: var(--ivory); background: rgba(11, 24, 39, .58); border-color: rgba(242, 237, 227, .78); opacity: .94; }
.button--gold { width: 100%; color: var(--navy); background: var(--gold-light); border-color: rgba(11, 24, 39, .16); }
.button--gold:hover { color: var(--navy); background: rgba(209, 179, 125, .86); border-color: rgba(11, 24, 39, .28); opacity: .95; }
.microcopy { margin: 13px 0 0; color: rgba(242, 237, 227, .62); font-size: 10px; letter-spacing: .04em; }
.hero__scroll { position: absolute; z-index: 2; right: clamp(22px, 5vw, 78px); bottom: 55px; display: flex; align-items: center; gap: 18px; color: rgba(242, 237, 227, .75); font-size: 9px; letter-spacing: .2em; text-decoration: none; text-transform: uppercase; writing-mode: vertical-rl; }
.hero__scroll i { display: block; width: 1px; height: 52px; background: rgba(242, 237, 227, .5); }

.section-pad { padding: var(--section-y) var(--page-gutter); }
.house { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(54px, 8vw, 126px); align-items: center; min-height: 0; padding-top: clamp(88px, 9vw, 126px); padding-bottom: clamp(96px, 10vw, 142px); overflow: hidden; background: radial-gradient(circle at 78% 38%, rgba(209, 179, 125, .13), transparent 29%), linear-gradient(180deg, #eee7dc 0%, var(--ivory) 66%, #e8e0d3 100%); border-top: 1px solid rgba(170, 137, 84, .18); }
.house h2, .allocation h2, .circle h2, .consideration h2 { margin-bottom: 40px; color: var(--navy); font-size: var(--type-section); line-height: var(--heading-tight); letter-spacing: 0; }
.house__copy { position: relative; z-index: 1; max-width: 620px; }
.house__copy .lead { max-width: var(--measure-lead); font-family: var(--serif); font-size: var(--type-lead); line-height: var(--leading-lead); }
.house__copy .lead { color: var(--muted); }
.house__steps { margin: clamp(34px, 4vw, 50px) 0 0; padding: 0; border-top: 1px solid rgba(11, 24, 39, .18); list-style: none; counter-reset: house-step; }
.house__steps li { display: grid; grid-template-columns: minmax(88px, .55fr) 1.45fr; gap: 22px; padding: 15px 0; border-bottom: 1px solid rgba(11, 24, 39, .12); counter-increment: house-step; }
.house__steps strong { color: var(--navy); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.house__steps span { color: var(--muted); font-family: var(--serif); font-size: 16px; line-height: 1.35; }
.house__visual { position: relative; margin: 0; }
.house__visual::before { content: ""; position: absolute; inset: -18px 24px 18px -18px; border: 1px solid rgba(170, 137, 84, .22); pointer-events: none; }
.house__visual img { position: relative; width: 100%; aspect-ratio: 1609 / 977; background: var(--paper); object-fit: cover; object-position: 50% center; box-shadow: 0 32px 80px rgba(11, 24, 39, .13); }

.allocation { background: linear-gradient(180deg, var(--paper), var(--vellum)); }
.allocation__header { display: grid; grid-template-columns: 1fr .72fr; gap: 9vw; align-items: end; margin-bottom: var(--section-y-compact); }
.allocation__intro { max-width: var(--measure-body); color: var(--muted); }
.release-date { margin: 30px 0 0; color: var(--navy); font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.allocation__stage { position: relative; display: grid; grid-template-columns: minmax(0, 1.42fr) minmax(290px, .58fr); min-height: clamp(560px, 52vw, 780px); background: var(--navy-deep); color: var(--ivory); box-shadow: 0 34px 100px rgba(11, 24, 39, .16); }
.allocation__stage > picture,
.allocation__stage > img { width: 100%; height: 100%; min-width: 0; overflow: hidden; }
.allocation__stage > picture { display: block; }
.allocation__stage > picture > img,
.allocation__stage > img { width: 100%; height: 100%; object-fit: cover; object-position: 50% center; }
.allocation__list { display: flex; flex-direction: column; justify-content: center; margin: 0; padding: 55px clamp(24px, 4vw, 58px); list-style: none; }
.allocation__list li { display: grid; grid-template-columns: 76px 1fr; gap: 18px; align-items: baseline; padding: 16px 0; border-bottom: 1px solid rgba(242, 237, 227, .13); }
.allocation__list span { color: rgba(209, 179, 125, .78); font-size: 8px; letter-spacing: .14em; text-transform: uppercase; }
.allocation__list strong { color: rgba(242, 237, 227, .82); font-family: var(--serif); font-size: clamp(17px, 1.35vw, 22px); font-weight: 400; }
.allocation__caption { position: absolute; left: clamp(24px, 4vw, 58px); bottom: clamp(22px, 3vw, 42px); max-width: 330px; margin: 0; color: rgba(242, 237, 227, .62); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.circle { background: var(--ivory); }
.circle__header { display: grid; grid-template-columns: 1fr 1fr; column-gap: 10vw; align-items: end; margin-bottom: var(--section-y-compact); }
.circle__header .eyebrow { grid-column: 1 / -1; }
.circle__header h2 { margin-bottom: 0; }
.circle__header > p:last-child { max-width: var(--measure-body); color: var(--muted); }
.privileges { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.privilege { min-height: 270px; display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(30px, 3vw, 42px); border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); transition: background-color var(--motion-medium) var(--motion-ease), color var(--motion-medium) var(--motion-ease); }
.privilege:hover { background: rgba(255, 255, 255, .12); }
.privilege h3 { margin-bottom: 22px; color: var(--navy); font-size: var(--type-subsection); line-height: 1.1; }
.privilege > p:last-child { max-width: var(--measure-note); color: var(--muted); font-size: 13px; }

.consideration { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(70px, 10vw, 160px); background: linear-gradient(180deg, #07111d 0%, #081522 100%); color: var(--ivory); }
.consideration h2 { color: var(--ivory); }
.consideration__intro > p:not(.eyebrow) { max-width: var(--measure-body); color: rgba(242, 237, 227, .65); }
.consideration__note { display: flex; gap: 20px; align-items: flex-start; margin-top: 55px; padding-top: 25px; border-top: 1px solid var(--line-light); }
.consideration__note span { display: grid; flex: 0 0 42px; place-items: center; width: 42px; height: 42px; border: 1px solid rgba(209, 179, 125, .55); border-radius: 50%; color: var(--gold-light); font-family: var(--serif); }
.consideration__note p { max-width: var(--measure-note); margin: 0; font-size: 11px; }
.form-panel { min-height: 760px; padding: clamp(38px, 5.4vw, 74px); background: var(--ivory); color: var(--ink); box-shadow: 0 34px 100px rgba(0, 0, 0, .24); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(22px, 3vw, 34px); }
.field { margin-bottom: 30px; }
.field label { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 15px; min-height: 24px; margin-bottom: 10px; color: var(--navy); font-size: 9px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.field label span { min-width: 0; }
.field label em { color: var(--muted); font-style: normal; font-weight: 400; letter-spacing: .08em; white-space: nowrap; }
.field input, .field select, .field textarea { width: 100%; min-height: 54px; padding: 13px 2px; color: var(--navy); border: 0; border-bottom: 1px solid #a49d92; border-radius: 0; outline: 0; background: transparent; font-variant-numeric: lining-nums tabular-nums; transition: border-color var(--motion-fast) var(--motion-ease), box-shadow var(--motion-fast) var(--motion-ease), background-color var(--motion-fast) var(--motion-ease); }
.field textarea { min-height: 156px; padding: 18px 20px; border: 1px solid rgba(11, 24, 39, .18); background: rgba(255, 255, 255, .18); resize: vertical; }
.field textarea::placeholder { color: rgba(112, 106, 97, .74); font-family: var(--serif); font-size: 17px; }
.field select { appearance: none; background: linear-gradient(45deg, transparent 50%, var(--navy) 50%) calc(100% - 10px) 50% / 5px 5px no-repeat, linear-gradient(135deg, var(--navy) 50%, transparent 50%) calc(100% - 5px) 50% / 5px 5px no-repeat; }
.field input:focus, .field select:focus { border-bottom-color: var(--gold); box-shadow: 0 1px 0 var(--gold); }
.field textarea:focus { border-color: var(--gold); box-shadow: inset 0 0 0 1px rgba(170, 137, 84, .4); }
.field [aria-invalid="true"] { border-bottom-color: #9a2c2c; }
.field-error { display: block; min-height: 18px; padding-top: 5px; color: #882727; font-size: 10px; }
.email-suggestion { margin-top: 10px; padding: 15px 16px; border: 1px solid rgba(170, 137, 84, .32); color: var(--navy); background: rgba(170, 137, 84, .07); animation: panel-settle var(--motion-slow) var(--motion-ease) both; }
.email-suggestion p { margin: 0 0 12px; font: 14px/1.5 var(--serif); }
.email-suggestion div { display: flex; flex-wrap: wrap; gap: 16px; }
.email-suggestion button { padding: 0; border: 0; background: transparent; color: var(--navy); cursor: pointer; font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.email-suggestion button:hover, .email-suggestion button:focus-visible { color: var(--gold); outline: none; }
.form-disclaimer { margin: 18px auto 0; max-width: var(--measure-note); color: var(--muted); font-size: 10px; text-align: center; }
.form-status { min-height: 18px; margin: 18px auto 0; max-width: var(--measure-body); color: var(--muted); font-size: 10px; text-align: center; transition: color var(--motion-fast) var(--motion-ease), opacity var(--motion-fast) var(--motion-ease); }
.form-status.is-error { max-width: none; padding: 15px 18px; color: #5f2b20; border: 1px solid rgba(132, 61, 43, .28); background: rgba(132, 61, 43, .08); font-size: 12px; line-height: 1.5; text-align: left; }
.button:disabled { cursor: wait; opacity: .62; }
.submission-overlay { position: fixed; z-index: 500; inset: 0; display: grid; place-items: center; padding: 24px; color: var(--ivory); background: rgba(8, 19, 31, .78); backdrop-filter: blur(8px); animation: state-fade var(--motion-medium) var(--motion-ease) both; }
.submission-overlay[hidden] { display: none; }
.submission-overlay__panel { width: min(520px, 100%); padding: clamp(38px, 7vw, 72px) clamp(28px, 6vw, 58px); border: 1px solid rgba(209, 179, 125, .3); background: rgba(11, 24, 39, .92); text-align: center; box-shadow: 0 28px 70px rgba(0, 0, 0, .3); animation: panel-settle var(--motion-slow) var(--motion-ease) both; }
.submission-overlay__panel p { margin: 0; color: rgba(242, 237, 227, .72); font-size: 13px; letter-spacing: .04em; }
.submission-overlay__panel p:first-child { margin-bottom: 18px; color: var(--ivory); font-family: var(--serif); font-size: clamp(27px, 4vw, 42px); line-height: 1.15; letter-spacing: 0; }
.confirmation { min-height: 620px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; animation: panel-settle var(--motion-slow) var(--motion-ease) both; }
.confirmation[hidden] { display: none; }
.confirmation__mark { display: grid; place-items: center; width: 72px; height: 72px; margin: 15px 0 35px; color: var(--gold); border: 1px solid rgba(170, 137, 84, .5); border-radius: 50%; font-family: var(--serif); font-size: 30px; }
.confirmation h3 { max-width: 570px; margin-bottom: 25px; color: var(--navy); font-size: clamp(38px, 4vw, 60px); line-height: 1.05; }
.confirmation p:not(.eyebrow) { margin-bottom: 8px; color: var(--muted); }
.confirmation .confirmation__reference { margin: 24px 0 8px; color: var(--navy); font-family: var(--serif); font-size: 24px; }
.text-button { position: relative; margin-top: 42px; padding: 7px 0; color: var(--navy); border: 0; background: transparent; font-size: 10px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; cursor: pointer; transition: opacity var(--motion-fast) var(--motion-ease); }

.site-footer { display: grid; grid-template-columns: 1fr auto; gap: 35px; align-items: start; padding: var(--section-y-compact) var(--page-gutter); background: var(--navy-deep); color: var(--ivory); border-top: 1px solid rgba(209, 179, 125, .18); }
.wordmark--footer span { color: var(--gold-light); }
.site-footer nav { display: flex; gap: 30px; }
.site-footer nav a { color: rgba(242, 237, 227, .7); font-size: 10px; letter-spacing: .12em; text-decoration: none; text-transform: uppercase; transition: color var(--motion-fast) var(--motion-ease), opacity var(--motion-fast) var(--motion-ease); }
.site-footer nav a:hover { color: var(--ivory); opacity: .86; }
.site-footer > p { grid-column: 1 / -1; margin: 30px 0 0; font-family: var(--serif); font-size: 22px; }
.site-footer > small { grid-column: 1 / -1; color: rgba(242, 237, 227, .42); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.mobile-request { display: none; }

.js .reveal { opacity: 0; transform: translateY(6px); transition: opacity var(--motion-slow) var(--motion-ease), transform var(--motion-slow) var(--motion-ease); }
.reveal--delay { transition-delay: .12s; }
.reveal--delay-2 { transition-delay: .24s; }
.js .reveal.is-visible { opacity: 1; transform: none; }

@keyframes hero-settle { from { opacity: .72; scale: 1.022; } to { opacity: 1; scale: 1.005; } }
@keyframes panel-settle { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@keyframes state-fade { from { opacity: 0; } to { opacity: 1; } }

@media (max-width: 1180px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
  .hero { min-height: calc(100vw * 951 / 1653); padding: 130px var(--page-gutter) 82px; }
  .hero__image { object-position: center top; }
  .hero__content { width: min(610px, 72%); }
  .house { grid-template-columns: 1fr 1fr; gap: 55px; }
  .allocation__stage { grid-template-columns: 1fr; }
  .allocation__stage > picture,
  .allocation__stage > img { max-height: 780px; }
  .allocation__stage > picture > img,
  .allocation__stage > img { object-position: center 47%; }
  .allocation__list { display: grid; grid-template-columns: 1fr 1fr; }
  .allocation__list li:nth-child(odd) { padding-right: 25px; }
  .allocation__list li:nth-child(even) { padding-left: 25px; border-left: 1px solid var(--line-light); }
  .allocation__caption { top: clamp(24px, 4vw, 42px); bottom: auto; }
  .consideration { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  body { font-size: 15px; }
  .site-header { min-height: 76px; padding: 17px 20px; }
  .site-header.is-scrolled { min-height: 64px; padding-top: 12px; padding-bottom: 12px; }
  .wordmark span { font-size: 23px; }
  .header-request { display: none; }
  .hero { min-height: calc(100vw * 800 / 390); padding: 0; }
  .hero__image { object-fit: cover; object-position: center top; }
  .hero__hotspot--house,
  .hero__hotspot--allocation,
  .hero__hotspot--circle,
  .hero__hotspot--request { display: none; }
  .hero__hotspot--button { left: 5%; top: 80.5%; width: 59%; height: 7%; }
  .hero__content { width: 100%; }
  .hero h1 { font-size: clamp(48px, 15vw, 66px); }
  .hero__support { max-width: 330px; }
  .hero__scroll { display: none; }
  .section-pad { padding: 92px 20px; }
  .house { grid-template-columns: 1fr; min-height: auto; padding-top: 76px; padding-bottom: 96px; }
  .house__copy { transform: none; }
  .house h2, .allocation h2, .circle h2, .consideration h2 { font-size: clamp(42px, 12vw, 62px); }
  .house__visual { order: -1; margin: 0 8px 18px; }
  .house__visual::before { inset: -10px 12px 10px -10px; }
  .house__visual img { aspect-ratio: 1609 / 977; height: auto; max-height: none; object-position: 50% 50%; }
  .allocation__header, .circle__header { grid-template-columns: 1fr; gap: 35px; margin-bottom: 55px; }
  .allocation__stage { min-height: 0; }
  .allocation__stage > picture,
  .allocation__stage > img { aspect-ratio: 4 / 5; height: auto; max-height: none; }
  .allocation__stage > picture > img,
  .allocation__stage > img { height: 100%; object-position: 50% 45%; }
  .allocation__list { grid-template-columns: 1fr; padding: 30px 24px 34px; }
  .allocation__list li:nth-child(n) { grid-template-columns: 78px 1fr; padding: 15px 0; border-left: 0; }
  .allocation__caption { position: static; padding: 0 24px 34px; }
  .privileges { grid-template-columns: 1fr; }
  .privilege { min-height: 220px; }
  .consideration { gap: 62px; }
  .form-panel { padding: 38px 20px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer nav { flex-wrap: wrap; }
  .site-footer > p, .site-footer > small { grid-column: auto; }
  .mobile-request { display: block; margin: 0; padding: 17px 18px; color: var(--gold-light); border-top: 1px solid rgba(209, 179, 125, .5); border-bottom: 1px solid rgba(209, 179, 125, .38); background: var(--navy); box-shadow: none; font-size: 10px; font-weight: 700; letter-spacing: .18em; text-align: center; text-decoration: none; text-transform: uppercase; }
}

.field--guard { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
