.dark-section {
  background: linear-gradient(180deg, #111111, #090909);
  color: var(--white);
}

.feature-grid,
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.feature-card,
.value-card {
  min-height: 240px;
  padding: 26px;
  border: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.feature-card {
  background: rgba(255, 255, 255, .05);
}

.feature-card span {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: .14em;
}

.feature-card h3,
.value-card h3 {
  margin-top: 18px;
  color: inherit;
}

.feature-card p,
.value-card p {
  margin-top: 12px;
  line-height: 1.68;
  color: rgba(255, 255, 255, .74);
}

.final-cta {
  background: var(--white);
}

.cta-shell {
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line);
  background: var(--paper);
}

.cta-shell h2 {
  margin-top: 12px;
  max-width: 980px;
}

.cta-shell p:not(.eyebrow) {
  margin-top: 14px;
  max-width: 690px;
  color: var(--muted);
  line-height: 1.7;
}

.site-footer {
  position: relative;
  background: #090909;
  color: rgba(255, 255, 255, .66);
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: min(var(--max), calc(100% - 32px));
  height: 1px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0), rgba(212, 175, 55, .55), rgba(212, 175, 55, 0));
  pointer-events: none;
}

.footer-row {
  min-height: 116px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: .85rem;
}

.footer-brand {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.footer-brand p {
  color: var(--white);
  font-weight: 800;
}

.footer-brand span {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .48);
}

.footer-contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 16px;
  max-width: 650px;
  font-style: normal;
  line-height: 1.4;
}

.footer-contacts a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 4px 0;
  color: rgba(255, 255, 255, .74);
  transition: color .2s ease;
}

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

.footer-row .footer-main-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--white);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.about-hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: grid;
  align-items: end;
  padding: 156px 0 92px;
  background: var(--black);
  color: var(--white);
}

.about-hero::after {
  background: linear-gradient(180deg, rgba(17, 17, 17, 0), var(--white));
}

.about-hero .narrow {
  position: relative;
  z-index: 2;
  margin-left: max(16px, calc((100vw - var(--max)) / 2));
}

.about-hero-media {
  background-position: 62% center;
  filter: saturate(.82) brightness(.52);
}

.about-hero-shade {
  background:
    linear-gradient(90deg, rgba(17, 17, 17, .94), rgba(17, 17, 17, .76) 54%, rgba(17, 17, 17, .36)),
    linear-gradient(180deg, rgba(17, 17, 17, .22), rgba(17, 17, 17, .9));
}

.about-hero h1 {
  max-width: 13ch;
  font-size: clamp(2.7rem, 6.8vw, 6.2rem);
}

.about-hero .btn-secondary.light {
  border-color: rgba(255, 255, 255, .28);
  color: var(--white);
  background: rgba(255, 255, 255, .06);
}

.legend-section {
  position: relative;
  overflow: clip;
  padding: clamp(120px, 10vw, 160px) 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(212, 175, 55, .18), transparent 32%),
    linear-gradient(180deg, var(--paper) 0%, #fffdfa 48%, #f0eee8 100%);
}

.legend-mark {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: center;
  min-width: 0;
  text-align: center;
}

.legend-chapter {
  margin: 0 0 18px;
  color: #9f7c16;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .22em;
  line-height: 1.35;
  text-transform: uppercase;
}

.legend-symbol {
  font-family: "Noto Sans SC", "Montserrat", sans-serif;
  font-size: clamp(20rem, 28vw, 30rem);
  font-weight: 700;
  line-height: .78;
  color: var(--gold);
  background: linear-gradient(145deg, var(--red) 10%, #b98f1e 46%, var(--gold) 76%);
  text-shadow: 0 30px 70px rgba(216, 25, 32, .14);
  transform-origin: center;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .legend-symbol {
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.legend-mark small {
  margin-top: 22px;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .24em;
  line-height: 1.5;
  text-transform: uppercase;
  color: rgba(17, 17, 17, .58);
}

.legend-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) 1px minmax(28ch, .75fr);
  gap: clamp(34px, 5.6vw, 76px);
  align-items: center;
}

.legend-divider {
  width: 1px;
  min-height: min(480px, 58vh);
  background: linear-gradient(180deg, transparent, rgba(212, 175, 55, .78) 18%, rgba(216, 25, 32, .32) 78%, transparent);
}

.legend-copy {
  display: grid;
  gap: 20px;
  max-width: 34ch;
  font-size: clamp(1.05rem, 1.2vw, 1.22rem);
  line-height: 1.78;
  min-width: 0;
}

.legend-copy h2 {
  max-width: 12ch;
  font-size: clamp(2.15rem, 3.25vw, 3.55rem);
  line-height: 1;
}

.legend-body {
  display: grid;
  gap: 20px;
}

.legend-body p {
  margin: 0;
  color: var(--muted);
}

.legend-body p:first-child::first-letter {
  float: left;
  margin: .12em .18em 0 0;
  color: var(--red);
  font-size: 4.1em;
  font-weight: 800;
  line-height: .72;
}

.js .legend-mark,
.js .legend-copy {
  opacity: 0;
  transform: translate3d(0, 28px, 0) scale(.96);
  transition:
    opacity .85s var(--ease-premium),
    transform .85s var(--ease-premium);
  will-change: opacity, transform;
}

.js .legend-copy {
  transition-delay: 180ms;
}

.js .legend-mark.is-visible,
.js .legend-copy.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  will-change: auto;
}

.values-section {
  background: #f0eee8;
}

.value-card {
  min-height: 260px;
  border-color: var(--line);
  color: var(--white);
}

.value-card.red {
  background: var(--red);
}

.value-card.black {
  background: var(--black);
}

.value-card.gold {
  background: #9f7c16;
}

.story-section {
  background: var(--paper);
}

.dark-final {
  background: #111111;
  color: var(--white);
}

.dark-final .cta-shell {
  border-color: var(--line-dark);
  background: transparent;
}

.dark-final .cta-shell p:not(.eyebrow) {
  color: rgba(255, 255, 255, .74);
}
