:root {
  --ink: #0b0b0d;
  --ink-raised: #17171c;
  --ink-soft: #202027;
  --ink-muted: #2a2a32;
  --gold: #b8954e;
  --gold-bright: #d4b56f;
  --cream: #f4efe6;
  --cream-muted: #c9c4ba;
  --cream-dim: #97938d;
  --wine: #7a1024;
  --wine-soft: #9a2940;
  --line: rgba(244, 239, 230, 0.15);
  --line-gold: rgba(184, 149, 78, 0.42);
  --shadow-lg: 0 28px 80px rgba(0, 0, 0, 0.38);
  --shadow-md: 0 18px 44px rgba(0, 0, 0, 0.26);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --shell: min(1180px, calc(100% - 40px));
  --display: var(--mrc-font-en);
  --body: var(--mrc-font-en);
  --mono: ui-monospace, "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
textarea,
select {
  font-family: var(--body);
}

body:has(.mobile-cta-bar) {
  padding-bottom: 82px;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: var(--gold);
  color: var(--ink);
}

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-180%);
  padding: 10px 15px;
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--ink);
  font-size: 0.875rem;
  font-weight: 700;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 30;
  border-bottom: 1px solid rgba(244, 239, 230, 0.1);
  background: rgba(11, 11, 13, 0.88);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 72px;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  gap: 10px;
  color: var(--cream);
  font-family: var(--mono);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.1;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: var(--radius-sm);
  color: var(--gold-bright);
  font-size: 0.9rem;
  line-height: 1;
}

.nav-toggle {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--cream);
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 220ms var(--ease-out), opacity 220ms ease;
}

.nav-toggle span {
  position: relative;
}

.nav-toggle::before {
  transform: translateY(-5px);
}

.nav-toggle::after {
  transform: translateY(5px);
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(1px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-1px) rotate(-45deg);
}

.site-nav {
  position: absolute;
  top: calc(100% + 1px);
  right: 0;
  left: 0;
  display: grid;
  max-height: 0;
  overflow: hidden;
  border-bottom: 1px solid transparent;
  background: var(--ink-raised);
  opacity: 0;
  transition: max-height 280ms var(--ease-out), opacity 180ms ease, border-color 180ms ease;
}

.site-nav.is-open {
  max-height: 360px;
  border-bottom-color: var(--line);
  opacity: 1;
}

.site-nav a {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(244, 239, 230, 0.08);
  color: var(--cream-muted);
  font-size: 0.88rem;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a:last-child {
  border-bottom: 0;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  background: rgba(184, 149, 78, 0.08);
  color: var(--gold-bright);
}

.header-cta {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(760px, calc(100svh - 72px));
  overflow: hidden;
  background: var(--ink);
}

.hero-backdrop {
  position: absolute;
  z-index: -4;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(11, 11, 13, 0.98) 0%, rgba(11, 11, 13, 0.9) 40%, rgba(11, 11, 13, 0.47) 100%),
    linear-gradient(0deg, var(--ink) 0%, transparent 34%),
    url("../img/bg-desktop.jpg");
  background-position: center;
  background-size: cover;
  opacity: 0.72;
}

.hero-backdrop::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 38%, rgba(184, 149, 78, 0.14), transparent 28%),
    linear-gradient(105deg, transparent 45%, rgba(244, 239, 230, 0.03) 45.1%, transparent 45.25%);
  content: "";
}

.hero-grid-lines {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: var(--shell);
  margin: auto;
  pointer-events: none;
  border-inline: 1px solid rgba(244, 239, 230, 0.08);
  background-image: linear-gradient(90deg, transparent 49.9%, rgba(244, 239, 230, 0.065) 50%, transparent 50.1%);
}

.hero-layout {
  display: grid;
  align-items: center;
  min-height: inherit;
  gap: 40px;
  padding-block: clamp(58px, 9vw, 116px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.reveal {
  animation: reveal-up 750ms var(--ease-out) both;
}

.hero-copy > *:nth-child(2) {
  animation-delay: 100ms;
}

.hero-copy > *:nth-child(3) {
  animation-delay: 170ms;
}

.hero-copy > *:nth-child(4) {
  animation-delay: 240ms;
}

.eyebrow,
.data-label,
.card-number,
.image-index,
.heritage-year,
.footer-small,
.effective-date {
  color: var(--gold);
  font-family: var(--mono);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
}

.eyebrow::before {
  width: 30px;
  height: 1px;
  background: var(--gold);
  content: "";
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 8.2vw, 7.3rem);
  line-height: 0.91;
}

.hero-lede {
  max-width: 590px;
  margin-bottom: 31px;
  color: var(--cream-muted);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.65;
}

.primary-cta {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  overflow: hidden;
  padding: 17px 19px 17px 22px;
  border: 1px solid var(--gold-bright);
  border-radius: var(--radius-md);
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(184, 149, 78, 0.35);
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  text-align: left;
  transition: transform 220ms var(--ease-out), background 220ms ease, box-shadow 220ms ease;
}

.primary-cta::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -46%;
  width: 28%;
  transform: skewX(-22deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.26), transparent);
  content: "";
  opacity: 0;
  transition: left 600ms var(--ease-out), opacity 240ms ease;
}

.primary-cta:hover {
  background: var(--gold-bright);
  box-shadow: 0 12px 38px rgba(184, 149, 78, 0.25);
  transform: translateY(-2px);
}

.primary-cta:hover::before {
  left: 125%;
  opacity: 1;
}

.primary-cta:active {
  transform: translateY(0);
}

.primary-cta:focus-visible {
  outline-color: var(--cream);
  outline-offset: 5px;
}

.cta-arrow {
  flex: 0 0 auto;
  font-family: Arial, sans-serif;
  font-size: 1.45em;
  font-weight: 400;
  line-height: 0.8;
  transition: transform 220ms var(--ease-out);
}

.primary-cta:hover .cta-arrow {
  transform: translateX(5px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--cream);
  font-size: 0.91rem;
  font-weight: 650;
  text-decoration: underline;
  text-decoration-color: rgba(184, 149, 78, 0.7);
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.text-link:hover {
  color: var(--gold-bright);
  text-decoration-color: currentColor;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 29px 0 0;
  color: var(--cream-dim);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.045em;
  line-height: 1.5;
}

.hero-note::before {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(184, 149, 78, 0.12);
  content: "";
}

.hero-visual {
  position: relative;
  width: min(100%, 620px);
  margin-inline: auto 0;
  animation: hero-float 7s ease-in-out infinite;
}

.hero-visual-frame {
  position: relative;
  aspect-ratio: 1.16 / 1;
  overflow: hidden;
  border: 1px solid rgba(184, 149, 78, 0.52);
  border-radius: var(--radius-lg);
  background: var(--ink-soft);
  box-shadow: var(--shadow-lg);
}

.hero-visual-frame::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(184, 149, 78, 0.18), transparent 40%),
    linear-gradient(0deg, rgba(11, 11, 13, 0.43), transparent 43%);
  content: "";
  pointer-events: none;
}

.hero-visual-frame::after {
  position: absolute;
  z-index: 2;
  inset: 10px;
  border: 1px solid rgba(244, 239, 230, 0.16);
  border-radius: 9px;
  content: "";
  pointer-events: none;
}

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

.image-index {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--cream);
}

.image-index::before {
  width: 21px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.image-index-top {
  top: 25px;
  right: 25px;
}

.image-index-bottom {
  bottom: 24px;
  left: 24px;
}

.hero-data-card {
  position: absolute;
  z-index: 4;
  right: -11px;
  bottom: -18px;
  width: min(200px, 54%);
  padding: 16px;
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-md);
  background: rgba(23, 23, 28, 0.94);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}

.hero-data-card .data-label {
  display: block;
  margin-bottom: 8px;
}

.hero-data-card p:last-child {
  margin: 0;
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 650;
  line-height: 1.35;
}

.fitness-band,
.experience-band,
.heritage-band,
.gallery-band,
.closing-cta {
  position: relative;
  overflow: hidden;
}

.fitness-band {
  background: #111116;
  padding-block: clamp(72px, 10vw, 138px);
}

.fitness-band::before,
.experience-band::before,
.gallery-band::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-gold), transparent);
  content: "";
}

.section-heading {
  display: grid;
  gap: 18px;
  max-width: 790px;
  margin-bottom: clamp(35px, 6vw, 64px);
}

.section-heading > p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: var(--cream-muted);
  font-size: 1.03rem;
}

.section-heading h2,
.heritage-heading h2,
.gallery-heading h2,
.closing-inner h2 {
  margin: 0;
  font-size: clamp(2.25rem, 5.3vw, 4.75rem);
  line-height: 0.98;
}

.standard-grid {
  display: grid;
  gap: 14px;
}

.standard-card {
  position: relative;
  min-height: 238px;
  padding: 25px 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(244, 239, 230, 0.05), rgba(244, 239, 230, 0.015));
  transition: border-color 220ms ease, transform 280ms var(--ease-out), background 220ms ease;
}

.standard-card::after {
  position: absolute;
  right: -50px;
  bottom: -48px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(184, 149, 78, 0.19);
  border-radius: 50%;
  content: "";
  transition: transform 350ms var(--ease-out);
}

.standard-card:hover {
  border-color: var(--line-gold);
  background: linear-gradient(135deg, rgba(184, 149, 78, 0.11), rgba(244, 239, 230, 0.025));
  transform: translateY(-5px);
}

.standard-card:hover::after {
  transform: scale(1.16);
}

.card-number {
  display: block;
  margin-bottom: 36px;
}

.standard-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 9px;
  font-size: 1.42rem;
  line-height: 1.08;
}

.standard-card p {
  position: relative;
  z-index: 1;
  max-width: 31ch;
  margin: 0;
  color: var(--cream-muted);
  font-size: 0.91rem;
  line-height: 1.65;
}

.comparison-wrap {
  margin-top: clamp(46px, 8vw, 95px);
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.comparison-intro {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.comparison-intro h3 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.05;
}

.comparison-intro p {
  max-width: 640px;
  margin: 0;
  color: var(--cream-muted);
  font-size: 0.95rem;
}

.comparison-table {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(11, 11, 13, 0.34);
  scrollbar-color: var(--gold) var(--ink-soft);
  scrollbar-width: thin;
}

.compare-row {
  display: grid;
  min-width: 690px;
  grid-template-columns: 1.1fr repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.compare-row:last-child {
  border-bottom: 0;
}

.compare-row > * {
  padding: 14px 16px;
  border-right: 1px solid var(--line);
  color: var(--cream-muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.compare-row > *:last-child {
  border-right: 0;
}

.compare-row > *:first-child {
  color: var(--cream);
  font-weight: 700;
}

.compare-head {
  background: rgba(184, 149, 78, 0.12);
}

.compare-head > * {
  color: var(--gold-bright);
  font-family: var(--mono);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.experience-band {
  background: #15151a;
  padding-block: clamp(72px, 10vw, 142px);
}

.experience-layout {
  display: grid;
  gap: clamp(35px, 7vw, 104px);
}

.experience-statement {
  margin: 0;
  padding-left: 22px;
  border-left: 2px solid var(--gold);
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.experience-statement em {
  color: var(--gold-bright);
  font-style: normal;
}

.experience-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.experience-item {
  display: grid;
  grid-template-columns: 33px 1fr;
  gap: 14px;
  padding-block: 21px;
  border-bottom: 1px solid var(--line);
}

.experience-item::before {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  color: var(--gold);
  content: "→";
  font-family: Arial, sans-serif;
  font-size: 0.81rem;
}

.experience-item h3 {
  margin-bottom: 5px;
  font-size: 1.18rem;
  line-height: 1.18;
}

.experience-item p {
  max-width: 57ch;
  margin: 0;
  color: var(--cream-muted);
  font-size: 0.92rem;
}

.heritage-band {
  background: linear-gradient(135deg, #1b1016 0%, #171317 52%, #15151a 100%);
  padding-block: clamp(72px, 10vw, 138px);
}

.heritage-band::before {
  position: absolute;
  top: -150px;
  right: -120px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(122, 16, 36, 0.58);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(122, 16, 36, 0.09), 0 0 0 90px rgba(122, 16, 36, 0.04);
  content: "";
  pointer-events: none;
}

.heritage-heading {
  position: relative;
  display: grid;
  gap: 17px;
  max-width: 800px;
  margin-bottom: clamp(35px, 6vw, 62px);
}

.heritage-heading .eyebrow {
  color: #d27484;
}

.heritage-heading .eyebrow::before {
  background: #d27484;
}

.heritage-heading > p:not(.eyebrow) {
  max-width: 630px;
  margin: 0;
  color: var(--cream-muted);
}

.heritage-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-inline: 2px 9px;
  border-radius: 50%;
  background: var(--wine-soft);
  vertical-align: middle;
}

.heritage-grid {
  display: grid;
  gap: 13px;
}

.heritage-card {
  position: relative;
  padding: 24px 20px 22px;
  border-top: 2px solid rgba(122, 16, 36, 0.85);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  background: rgba(11, 11, 13, 0.33);
}

.heritage-year {
  display: block;
  margin-bottom: 29px;
  color: #d27484;
}

.heritage-card h3 {
  margin-bottom: 9px;
  font-size: 1.42rem;
  line-height: 1.08;
}

.heritage-card p {
  margin: 0;
  color: var(--cream-muted);
  font-size: 0.91rem;
}

.heritage-footnote {
  max-width: 830px;
  margin: 29px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(244, 239, 230, 0.13);
  color: var(--cream-dim);
  font-size: 0.82rem;
}

.gallery-band {
  background: #19191f;
  padding-block: clamp(72px, 10vw, 142px);
}

.gallery-heading {
  display: grid;
  gap: 17px;
  max-width: 750px;
  margin-bottom: clamp(33px, 5vw, 58px);
}

.gallery-heading > p:not(.eyebrow) {
  max-width: 580px;
  margin: 0;
  color: var(--cream-muted);
}

.gallery-grid {
  display: grid;
  gap: 12px;
}

.gallery-panel {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border: 1px solid rgba(244, 239, 230, 0.12);
  border-radius: var(--radius-md);
  background: var(--ink-soft);
  isolation: isolate;
}

.gallery-panel::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 11, 13, 0.84) 0%, rgba(11, 11, 13, 0.06) 59%);
  content: "";
  transition: background 300ms ease;
  pointer-events: none;
}

.gallery-panel img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  transition: transform 700ms var(--ease-out), filter 500ms ease;
}

.gallery-panel:hover img {
  filter: saturate(1.07);
  transform: scale(1.045);
}

.gallery-panel:hover::before {
  background: linear-gradient(0deg, rgba(11, 11, 13, 0.92) 0%, rgba(11, 11, 13, 0.02) 69%);
}

.gallery-panel > div,
.gallery-panel figcaption {
  position: absolute;
  z-index: 2;
  right: 19px;
  bottom: 16px;
  left: 19px;
}

.gallery-panel h3,
.gallery-panel p {
  margin: 0;
}

.gallery-panel h3 {
  color: var(--cream);
  font-size: 1.15rem;
  line-height: 1.12;
}

.gallery-panel p {
  margin-top: 4px;
  color: var(--cream-muted);
  font-size: 0.79rem;
}

.panel-wide {
  min-height: 400px;
}

.panel-wide img {
  min-height: 400px;
}

.closing-cta {
  background: #0d0d10;
  padding-block: clamp(76px, 11vw, 154px);
}

.closing-cta::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(80vw, 950px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  content: "";
}

.closing-inner {
  display: grid;
  gap: 22px;
  max-width: 850px;
  margin: auto;
  text-align: center;
}

.closing-inner .eyebrow {
  justify-content: center;
  margin-bottom: 0;
}

.closing-inner > p:not(.eyebrow) {
  max-width: 630px;
  margin: 0 auto;
  color: var(--cream-muted);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
}

.closing-inner .primary-cta {
  max-width: 690px;
  margin: 12px auto 0;
  text-align: left;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #09090b;
  color: var(--cream-muted);
}

.footer-grid {
  display: grid;
  gap: 36px;
  padding-block: 49px 38px;
}

.footer-brand {
  max-width: 280px;
}

.footer-brand .brand {
  margin-bottom: 15px;
}

.footer-brand p {
  margin: 0;
  color: var(--cream-dim);
  font-size: 0.85rem;
  line-height: 1.65;
}

.footer-discover {
  display: grid;
  gap: 18px;
}

.footer-discover h2,
.footer-discover h3 {
  margin: 0;
  color: var(--cream);
  font-family: var(--mono);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.footer-discover nav,
.footer-discover ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-discover a {
  width: fit-content;
  color: var(--cream-muted);
  font-size: 0.85rem;
  transition: color 160ms ease;
}

.footer-discover a:hover,
.footer-discover a:focus-visible {
  color: var(--gold-bright);
}

.footer-small {
  color: var(--cream-dim);
  font-size: 0.62rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 9px 18px;
  padding-block: 18px;
  border-top: 1px solid var(--line);
  color: var(--cream-dim);
  font-size: 0.75rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: var(--cream-muted);
  text-decoration: underline;
  text-decoration-color: rgba(184, 149, 78, 0.5);
  text-underline-offset: 3px;
}

.footer-bottom a:hover {
  color: var(--gold-bright);
}

.mobile-cta-bar {
  position: fixed;
  z-index: 40;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 10px 15px max(10px, env(safe-area-inset-bottom));
  border-top: 1px solid var(--line-gold);
  background: rgba(11, 11, 13, 0.94);
  box-shadow: 0 -10px 32px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.mobile-cta-bar .primary-cta {
  min-height: 52px;
  padding: 12px 16px;
  font-size: 0.96rem;
}

.legal-page {
  background: #111116;
}

.legal-main {
  padding-block: clamp(55px, 8vw, 105px);
  background:
    linear-gradient(180deg, rgba(184, 149, 78, 0.045), transparent 20%),
    #111116;
}

.legal-layout {
  display: grid;
  gap: 42px;
}

.legal-aside {
  order: 2;
  padding-top: 23px;
  border-top: 1px solid var(--line);
}

.legal-aside h2 {
  margin: 0 0 12px;
  color: var(--cream);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.legal-aside nav {
  display: grid;
  gap: 5px;
}

.legal-aside a {
  display: block;
  width: fit-content;
  padding: 4px 0;
  color: var(--cream-dim);
  font-size: 0.88rem;
  transition: color 160ms ease;
}

.legal-aside a:hover,
.legal-aside a:focus-visible,
.legal-aside a[aria-current="page"] {
  color: var(--gold-bright);
}

.legal-document {
  max-width: 810px;
}

.legal-document .eyebrow {
  margin-bottom: 17px;
}

.legal-document h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.7rem, 6.5vw, 5.2rem);
  line-height: 0.96;
}

.legal-lede {
  max-width: 660px;
  margin-bottom: 20px;
  color: var(--cream-muted);
  font-size: clamp(1rem, 1.7vw, 1.16rem);
  line-height: 1.65;
}

.effective-date {
  display: inline-flex;
  padding: 7px 10px;
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-sm);
  color: var(--gold-bright);
}

.legal-document > section {
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.legal-document h2 {
  margin-bottom: 14px;
  color: var(--cream);
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  line-height: 1.08;
}

.legal-document h3 {
  margin: 25px 0 8px;
  color: var(--cream);
  font-size: 1.1rem;
  line-height: 1.2;
}

.legal-document p,
.legal-document li {
  color: var(--cream-muted);
  font-size: 0.94rem;
}

.legal-document p {
  margin-bottom: 15px;
}

.legal-document ul,
.legal-document ol {
  display: grid;
  gap: 7px;
  margin: 0 0 17px;
  padding-left: 21px;
}

.legal-document a {
  color: var(--gold-bright);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.legal-document strong {
  color: var(--cream);
  font-weight: 700;
}

@media (min-width: 560px) {
  .hero-data-card {
    right: -20px;
    bottom: -19px;
    padding: 18px;
  }

  .standard-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .heritage-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .gallery-panel:nth-child(1),
  .gallery-panel:nth-child(4) {
    grid-column: span 2;
  }

  .footer-grid {
    grid-template-columns: 1.35fr repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  :root {
    --shell: min(1180px, calc(100% - 64px));
  }

  body:has(.mobile-cta-bar) {
    padding-bottom: 0;
  }

  .site-header {
    position: sticky;
    top: 0;
    backdrop-filter: blur(16px);
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
    min-height: 77px;
    gap: 28px;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    max-height: none;
    align-items: center;
    justify-content: center;
    gap: clamp(15px, 2.4vw, 31px);
    overflow: visible;
    border: 0;
    background: transparent;
    opacity: 1;
  }

  .site-nav a {
    padding: 7px 0;
    border: 0;
    background: transparent;
    color: var(--cream-muted);
    font-size: 0.79rem;
    white-space: nowrap;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible,
  .site-nav a[aria-current="page"] {
    background: transparent;
    color: var(--gold-bright);
  }

  .header-cta {
    display: inline-flex;
    min-height: 43px;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border: 1px solid var(--line-gold);
    border-radius: var(--radius-sm);
    color: var(--gold-bright);
    font-family: var(--mono);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.055em;
    text-transform: uppercase;
    transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
  }

  .header-cta:hover {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--ink);
  }

  .header-cta .cta-arrow {
    font-size: 1.22em;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.8fr);
    gap: clamp(30px, 5.5vw, 83px);
  }

  .hero-copy {
    padding-bottom: 16px;
  }

  .hero-visual {
    margin-top: 32px;
  }

  .primary-cta {
    min-height: 72px;
    padding: 20px 22px 20px 27px;
  }

  .standard-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .experience-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.74fr);
    align-items: start;
  }

  .experience-statement {
    padding-right: 20px;
  }

  .gallery-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 14px;
  }

  .gallery-panel {
    grid-column: span 4;
    min-height: 355px;
  }

  .gallery-panel:nth-child(1),
  .gallery-panel:nth-child(4) {
    grid-column: span 7;
  }

  .gallery-panel:nth-child(2),
  .gallery-panel:nth-child(5) {
    grid-column: span 5;
  }

  .gallery-panel:nth-child(3) {
    grid-column: span 5;
  }

  .gallery-panel:nth-child(6) {
    grid-column: span 7;
  }

  .gallery-panel:nth-child(1),
  .gallery-panel:nth-child(4) {
    min-height: 440px;
  }

  .gallery-panel:nth-child(1) img,
  .gallery-panel:nth-child(4) img {
    min-height: 440px;
  }

  .panel-wide {
    min-height: 440px;
  }

  .footer-grid {
    grid-template-columns: 1.7fr 1fr 1fr;
    gap: 45px;
  }

  .mobile-cta-bar {
    display: none;
  }

  .legal-layout {
    grid-template-columns: 190px minmax(0, 1fr);
    align-items: start;
    gap: clamp(44px, 8vw, 112px);
  }

  .legal-aside {
    position: sticky;
    top: 105px;
    order: 0;
    padding-top: 0;
    border-top: 0;
  }
}

@media (min-width: 1040px) {
  .header-inner {
    gap: 38px;
  }

  .hero {
    min-height: min(790px, calc(100svh - 77px));
  }

  .hero-layout {
    grid-template-columns: minmax(0, 0.96fr) minmax(430px, 0.81fr);
  }

  .hero-visual {
    width: min(100%, 610px);
  }

  .hero-data-card {
    right: -30px;
    bottom: -23px;
  }

  .standard-card {
    min-height: 258px;
    padding: 29px 26px;
  }

  .heritage-card {
    padding: 28px 25px 25px;
  }
}

@media (max-width: 767px) {
  .hero-backdrop {
    background-image:
      linear-gradient(180deg, rgba(11, 11, 13, 0.61) 0%, rgba(11, 11, 13, 0.93) 48%, var(--ink) 100%),
      url("../img/bg-mobile.jpg");
    background-position: center top;
    opacity: 0.75;
  }

  .hero-grid-lines {
    width: calc(100% - 40px);
    background-image: linear-gradient(90deg, transparent 49.85%, rgba(244, 239, 230, 0.055) 50%, transparent 50.15%);
  }

  .hero-layout {
    padding-bottom: 64px;
  }

  .hero-visual {
    order: -1;
    width: min(100%, 460px);
    margin: 4px auto 8px;
  }

  .hero-visual-frame {
    aspect-ratio: 1.24 / 1;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-copy .primary-cta {
    max-width: 100%;
  }

  .image-index-top {
    top: 16px;
    right: 16px;
  }

  .image-index-bottom {
    bottom: 16px;
    left: 16px;
  }

  .hero-data-card {
    right: 10px;
    bottom: -14px;
  }

  .hero-note {
    max-width: 36ch;
  }

  .comparison-table {
    margin-right: -2px;
  }

  .closing-inner .primary-cta {
    text-align: left;
  }
}

@media (max-width: 420px) {
  :root {
    --shell: calc(100% - 32px);
  }

  .brand {
    font-size: 0.63rem;
    letter-spacing: 0.1em;
  }

  .hero-layout {
    gap: 27px;
  }

  h1 {
    font-size: clamp(2.72rem, 13vw, 3.38rem);
  }

  .hero-lede {
    font-size: 0.96rem;
  }

  .primary-cta {
    min-height: 60px;
    padding-inline: 16px;
    font-size: 0.96rem;
  }

  .hero-data-card {
    width: 60%;
    padding: 12px;
  }

  .hero-data-card p:last-child {
    font-size: 0.76rem;
  }

  .standard-card {
    min-height: 220px;
  }

  .gallery-panel,
  .gallery-panel img {
    min-height: 250px;
  }
}

@media (hover: hover) {
  .brand:hover .brand-mark {
    background: rgba(184, 149, 78, 0.12);
  }

  .heritage-card {
    transition: transform 220ms var(--ease-out), background 220ms ease;
  }

  .heritage-card:hover {
    background: rgba(122, 16, 36, 0.18);
    transform: translateY(-4px);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .primary-cta {
    animation: cta-halo 5.5s ease-in-out 1.3s infinite;
  }

  .header-cta {
    transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms var(--ease-out);
  }

  .header-cta:hover {
    transform: translateY(-1px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

@keyframes cta-halo {
  0%,
  76%,
  100% {
    box-shadow: 0 0 0 0 rgba(184, 149, 78, 0);
  }

  84% {
    box-shadow: 0 0 0 9px rgba(184, 149, 78, 0.12);
  }

  92% {
    box-shadow: 0 0 0 18px rgba(184, 149, 78, 0);
  }
}