:root {
  --wine: #65131f;
  --wine-deep: #260307;
  --wine-black: #150103;
  --gold: #cda85d;
  --gold-light: #f1deb0;
  --champagne: #ead6a8;
  --ivory: #fbf7ef;
  --paper: #fffdf8;
  --ink: #191313;
  --muted: #776b63;
  --line: rgba(177, 135, 72, 0.3);
  --gold-bright: #f8e7ba;
  --wine-glow: #8d2635;
  --shadow-soft: 0 24px 70px rgba(58, 17, 20, 0.1);
  --shadow-deep: 0 36px 90px rgba(7, 0, 1, 0.38);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(
      circle at 8% 12%,
      rgba(205, 168, 93, 0.08),
      transparent 26rem
    ),
    var(--ivory);
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
::selection {
  background: var(--wine);
  color: var(--gold-bright);
}
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: #fff;
  color: #111;
  border-radius: 4px;
}
.skip-link:focus {
  transform: none;
}
.reading-progress {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
}
.reading-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  box-shadow: 0 0 16px rgba(241, 222, 176, 0.9);
}

.legacy-header {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 88px;
  padding: 0 clamp(24px, 6vw, 98px);
  border-bottom: 1px solid rgba(234, 214, 168, 0.18);
  color: #fff;
}
.legacy-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}
.brand-gem {
  color: var(--gold-light);
  font-size: 38px;
  line-height: 1;
}
.legacy-brand b,
.legacy-brand small {
  display: block;
}
.legacy-brand b {
  font-family: Georgia, serif;
  font-size: 20px;
  letter-spacing: 0.2em;
}
.legacy-brand small {
  margin-top: 3px;
  color: #bdaca4;
  font-size: 8px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.legacy-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.legacy-nav a {
  color: #e8ded9;
  font-size: 12px;
  transition: color 0.2s ease;
}
.legacy-nav a:hover {
  color: var(--gold-light);
}
.legacy-nav .nav-button {
  padding: 12px 18px;
  border: 1px solid rgba(234, 214, 168, 0.5);
  color: var(--gold-light);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(234, 214, 168, 0.38);
  background: transparent;
  color: #fff;
  cursor: pointer;
}
.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}
.menu-toggle span:nth-child(1) {
  transform: translateY(-5px);
}
.menu-toggle span:nth-child(3) {
  transform: translateY(5px);
}
.menu-toggle b {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg);
}

.legacy-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: clamp(40px, 7vw, 110px);
  min-height: max(860px, 100svh);
  padding: 155px clamp(24px, 7vw, 112px) 100px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 18% 20%,
      rgba(205, 168, 93, 0.22),
      transparent 25%
    ),
    radial-gradient(
      circle at 82% 49%,
      rgba(141, 38, 53, 0.48),
      transparent 35%
    ),
    linear-gradient(132deg, #100002, var(--wine-deep) 46%, #661220);
  color: #fff;
}
.legacy-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.2;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.28) 0.55px,
    transparent 0.55px
  );
  background-size: 19px 19px;
  mask-image: linear-gradient(to right, #000, transparent 78%);
}
.legacy-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.055) 0 1px,
    transparent 1px
  );
  background-size: clamp(84px, 8vw, 128px) 100%;
  opacity: 0.12;
}
.hero-orbit {
  position: absolute;
  border: 1px solid rgba(234, 214, 168, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

/* Background hero orbits are intentionally scoped so they do not resize
   the portrait seal orbits inside .hero-emblem. */
.hero-orbit--one {
  top: -280px;
  right: -220px;
  width: 900px;
  height: 900px;
}
.hero-orbit--two {
  right: -2%;
  bottom: -430px;
  width: 1050px;
  height: 1050px;
}
.hero-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 76% 22%,
      rgba(255, 255, 255, 0.8) 0 1px,
      transparent 2px
    ),
    radial-gradient(
      circle at 90% 68%,
      rgba(255, 255, 255, 0.75) 0 1px,
      transparent 2px
    ),
    radial-gradient(
      circle at 64% 80%,
      rgba(205, 168, 93, 0.85) 0 1px,
      transparent 2px
    );
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 760px;
}
.kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.kicker span {
  display: inline-block;
  width: 42px;
  height: 1px;
  background: var(--gold);
}
.kicker.dark {
  color: #875f31;
}
.hero-script {
  margin: 42px 0 8px 4px;
  transform: rotate(-3deg);
  color: var(--gold-light);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(42px, 5vw, 70px);
  font-style: italic;
  line-height: 0.85;
}
.legacy-hero h1 {
  margin: 0;
  font-family: Didot, "Bodoni 72", Georgia, serif;
  font-size: clamp(51px, 6vw, 90px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.95;
}
.legacy-hero h1 em {
  color: var(--champagne);
  font-weight: 400;
}
.hero-deck {
  max-width: 680px;
  margin: 34px 0;
  color: #d9ceca;
  font-family: Georgia, serif;
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.75;
}
.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    color 0.22s ease,
    box-shadow 0.22s ease;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}
.button-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--wine-deep);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.18);
}
.button-ghost {
  border-color: rgba(234, 214, 168, 0.42);
  background: transparent;
  color: var(--gold-light);
}
.button-ghost:hover {
  background: rgba(234, 214, 168, 0.1);
}
.hero-signature {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 52px;
}
.hero-signature > strong {
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 1;
}
.hero-signature > span {
  padding-left: 18px;
  border-left: 1px solid rgba(234, 214, 168, 0.28);
}
.hero-signature b,
.hero-signature small {
  display: block;
}
.hero-signature b {
  font-family: Georgia, serif;
  font-size: 15px;
  font-weight: 400;
}
.hero-signature small {
  margin-top: 5px;
  color: #a9958c;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-emblem {
  position: relative;
  z-index: 2;
  align-self: center;
  justify-self: center;
  width: min(44vw, 650px);
  aspect-ratio: 1;
  filter: drop-shadow(0 36px 72px rgba(0, 0, 0, 0.38));
}
.legacy-hero .hero-emblem.legacy-seal--portrait {
  min-width: 420px;
  isolation: isolate;
}
.legacy-hero .hero-emblem.legacy-seal--portrait::before {
  position: absolute;
  z-index: -1;
  inset: 3%;
  border: 1px solid rgba(248, 231, 186, 0.2);
  border-radius: 50%;
  box-shadow:
    0 0 0 18px rgba(255, 255, 255, 0.018),
    0 0 90px rgba(205, 168, 93, 0.2);
  content: "";
}
.legacy-hero .hero-emblem .seal-orbit {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.legacy-hero .hero-emblem .seal-orbit.orbit-one {
  inset: -5%;
}
.legacy-hero .hero-emblem .seal-orbit.orbit-two {
  inset: 3%;
}
.legacy-hero .legacy-seal--portrait .seal-core.seal-core--portrait {
  position: absolute;
  inset: 9%;
  display: block;
  width: auto;
  height: auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(248, 231, 186, 0.72);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 35%, #711825, #190104 72%);
  box-shadow:
    inset 0 0 0 8px rgba(255, 255, 255, 0.035),
    inset 0 -42px 80px rgba(21, 1, 3, 0.42),
    0 28px 70px rgba(0, 0, 0, 0.34);
}
.legacy-hero .legacy-seal--portrait .seal-portrait {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 16%;
  transform: scale(1.01);
  filter: saturate(0.92) contrast(1.04);
}
.legacy-hero .legacy-seal--portrait .seal-portrait__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      transparent 40%,
      rgba(20, 1, 3, 0.22) 62%,
      rgba(20, 1, 3, 0.94) 100%
    ),
    radial-gradient(
      circle at 50% 28%,
      transparent 46%,
      rgba(24, 1, 4, 0.2) 100%
    );
  pointer-events: none;
}
.legacy-hero .legacy-seal--portrait .seal-portrait__caption {
  position: absolute;
  z-index: 2;
  right: 15%;
  bottom: 9%;
  left: 15%;
  display: grid;
  justify-items: center;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.75);
}
.legacy-hero .legacy-seal--portrait .seal-portrait__caption small,
.legacy-hero .legacy-seal--portrait .seal-portrait__caption span {
  color: var(--gold-bright);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(7px, 0.65vw, 10px);
  font-weight: 700;
  letter-spacing: 0.28em;
  line-height: 1.4;
  text-transform: uppercase;
}
.legacy-hero .legacy-seal--portrait .seal-portrait__caption strong {
  margin: 6px 0 4px;
  color: #fff;
  font-family: Didot, "Bodoni 72", Georgia, serif;
  font-size: clamp(20px, 2.4vw, 36px);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
}
.emblem-ring {
  position: absolute;
  border-radius: 50%;
}
.ring-outer {
  inset: 0;
  border: 1px solid rgba(234, 214, 168, 0.36);
  box-shadow:
    inset 0 0 0 16px rgba(255, 255, 255, 0.012),
    inset 0 0 0 17px rgba(234, 214, 168, 0.09);
}
.ring-inner {
  inset: 11%;
  border: 1px solid rgba(234, 214, 168, 0.22);
  background: radial-gradient(
    circle,
    rgba(107, 20, 31, 0.35),
    rgba(20, 1, 3, 0.2)
  );
  backdrop-filter: blur(2px);
}
.emblem-diamond {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  color: rgba(234, 214, 168, 0.08);
  font-size: 330px;
  line-height: 1;
}
.emblem-copy {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  flex-direction: column;
  transform: translate(-50%, -50%);
  text-align: center;
}
.emblem-copy small,
.emblem-copy span {
  color: #bdaa9e;
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.emblem-copy b {
  margin: 15px 0;
  color: var(--gold-light);
  font-family: Didot, Georgia, serif;
  font-size: clamp(72px, 9vw, 126px);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-shadow: 0 0 38px rgba(205, 168, 93, 0.2);
}
.emblem-year {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(234, 214, 168, 0.65);
  font-size: 9px;
  letter-spacing: 0.38em;
}
.year-top {
  top: 6%;
}
.year-bottom {
  bottom: 6%;
}

.legacy-marquee {
  overflow: hidden;
  padding: 22px 0;
  border-top: 1px solid rgba(234, 214, 168, 0.12);
  border-bottom: 1px solid rgba(234, 214, 168, 0.12);
  background: #1d0205;
  color: var(--gold-light);
}
.legacy-marquee > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 46px);
  min-width: max-content;
  padding: 0 24px;
}
.legacy-marquee span {
  font-family: Georgia, serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.legacy-marquee i {
  color: #7f5260;
  font-style: normal;
}

.story-section {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: clamp(50px, 7vw, 110px);
  padding: 120px clamp(24px, 7vw, 112px) 135px;
  background: linear-gradient(145deg, #fffdf9, #f8f0e4);
}
.chapter-rail {
  position: sticky;
  top: 118px;
  align-self: start;
  display: flex;
  flex-direction: column;
  padding: 27px 24px;
  border: 1px solid rgba(177, 135, 72, 0.25);
  border-radius: 20px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}
.chapter-rail p {
  margin: 0 0 20px;
  color: #9d7747;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.chapter-rail a {
  position: relative;
  padding: 10px 0 10px 13px;
  color: #7b6b60;
  font-size: 11px;
  line-height: 1.45;
}
.chapter-rail a::before {
  position: absolute;
  top: 16px;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
  opacity: 0.6;
}
.chapter-rail a:hover {
  color: var(--wine);
}
.story-content {
  max-width: 1070px;
}
.section-heading {
  max-width: 850px;
  margin-bottom: 82px;
}
.section-heading h2 {
  margin: 25px 0 24px;
  font-family: Didot, Georgia, serif;
  font-size: clamp(43px, 5vw, 72px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.03;
}
.section-heading h2 em {
  color: var(--wine);
  font-weight: 400;
}
.section-heading > p:not(.kicker) {
  max-width: 750px;
  margin: 0;
  color: var(--muted);
  font-family: Georgia, serif;
  font-size: 18px;
  line-height: 1.9;
}
.section-heading.light {
  margin: 0 auto 75px;
  color: #fff;
  text-align: center;
}
.section-heading.light .kicker {
  justify-content: center;
  color: var(--gold-bright);
}
.section-heading.light h2 em {
  color: var(--gold-light);
}
.story-flow {
  border-top: 1px solid #eadfce;
}
.feature-story {
  position: relative;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) minmax(250px, 0.55fr);
  gap: clamp(24px, 4vw, 55px);
  padding: 75px 0;
  border-bottom: 1px solid #eadfce;
  scroll-margin-top: 110px;
}
.feature-story.reverse {
  grid-template-columns: 68px minmax(0, 1fr) minmax(250px, 0.55fr);
}
.story-number {
  color: #cbb28a;
  font-family: Georgia, serif;
  font-size: 18px;
}
.section-label {
  margin: 0 0 12px;
  color: #a17742;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.feature-story h3 {
  margin: 0 0 24px;
  font-family: Didot, Georgia, serif;
  font-size: clamp(32px, 3.1vw, 48px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.08;
}
.feature-story > div > p:not(.section-label) {
  color: #71665f;
  font-size: 15px;
  line-height: 1.9;
}
blockquote {
  align-self: center;
  margin: 0;
  padding: 35px;
  border-left: 2px solid var(--gold);
  background: linear-gradient(145deg, #f6efe1, #fffdf8);
}
blockquote > span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 54px;
  line-height: 0.5;
}
blockquote p {
  margin: 15px 0 0;
  color: var(--wine);
  font-family: Georgia, serif;
  font-size: 25px;
  font-style: italic;
  line-height: 1.4;
}
.legacy-stat-panel {
  display: grid;
  align-self: center;
  gap: 1px;
  background: #e9deca;
}
.legacy-stat-panel div {
  display: grid;
  grid-template-columns: 68px 1fr;
  align-items: center;
  gap: 18px;
  padding: 23px;
  background: #faf4e8;
}
.legacy-stat-panel strong {
  color: var(--wine);
  font-family: Georgia, serif;
  font-size: 33px;
  font-weight: 400;
}
.legacy-stat-panel span {
  color: #75675e;
  font-size: 11px;
  line-height: 1.5;
}
.quote-card {
  align-self: center;
  padding: 40px;
  background: var(--wine-deep);
  color: #fff;
  box-shadow: 18px 18px 0 #eadcc4;
}
.quote-card small {
  color: var(--gold);
  font-size: 8px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.quote-card p {
  margin: 22px 0;
  font-family: Georgia, serif;
  font-size: 24px;
  font-style: italic;
  line-height: 1.5;
}
.quote-card span {
  color: #ad9c94;
  font-size: 10px;
}
.homecoming-mark {
  align-self: center;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 16px;
  padding: 38px;
  border: 1px solid #d9c39d;
  background: #faf3e6;
}
.homecoming-mark span {
  color: var(--wine);
  font-family: Georgia, serif;
  font-size: 30px;
}
.homecoming-mark b {
  align-self: center;
  color: #66574f;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.homecoming-mark i {
  grid-column: 1/-1;
  height: 1px;
  margin: 13px 0;
  background: #d8c5a4;
}

.timeline-section {
  position: relative;
  isolation: isolate;
  padding: 125px clamp(24px, 7vw, 112px) 145px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 15% 10%,
      rgba(205, 168, 93, 0.18),
      transparent 27rem
    ),
    radial-gradient(
      circle at 86% 76%,
      rgba(141, 38, 53, 0.44),
      transparent 34rem
    ),
    linear-gradient(145deg, #160104, #31050b 52%, #4d0b14);
  color: #fff;
}
.timeline-section::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 16%,
    #000 84%,
    transparent
  );
}
.timeline-section::after {
  position: absolute;
  z-index: -1;
  top: 26%;
  left: 50%;
  width: min(80vw, 980px);
  aspect-ratio: 1;
  border: 1px solid rgba(234, 214, 168, 0.06);
  border-radius: 50%;
  box-shadow:
    0 0 0 72px rgba(234, 214, 168, 0.018),
    0 0 0 144px rgba(234, 214, 168, 0.012);
  content: "";
  transform: translateX(-50%);
}
.timeline-section .section-heading {
  max-width: 900px;
  margin-bottom: 76px;
}
.timeline-section .section-heading > p:not(.kicker) {
  color: #c8b8b3;
}
.timeline-shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(30px, 4vw, 54px);
  border: 1px solid rgba(234, 214, 168, 0.18);
  border-radius: 36px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.055),
    rgba(255, 255, 255, 0.018)
  );
  box-shadow:
    var(--shadow-deep),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
}
.timeline {
  position: relative;
  max-width: 1120px;
  margin: auto;
}
.timeline::before {
  position: absolute;
  top: 34px;
  bottom: 34px;
  left: 50%;
  width: 1px;
  background: linear-gradient(
    transparent,
    rgba(234, 214, 168, 0.66) 8%,
    rgba(234, 214, 168, 0.22) 92%,
    transparent
  );
  content: "";
  transform: translateX(-50%);
}
.timeline article {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1fr);
  grid-template-areas: "year node card";
  align-items: center;
  min-height: 196px;
}
.timeline article:nth-child(even) {
  grid-template-areas: "card node year";
}
.timeline time {
  grid-area: year;
  padding-right: 34px;
  color: var(--gold-bright);
  font-family: Didot, "Bodoni 72", Georgia, serif;
  font-size: clamp(25px, 2.4vw, 36px);
  letter-spacing: -0.02em;
  text-align: right;
}
.timeline article:nth-child(even) time {
  padding-right: 0;
  padding-left: 34px;
  text-align: left;
}
.timeline article > span {
  position: relative;
  z-index: 2;
  grid-area: node;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
}
.timeline article > span::before {
  width: 13px;
  height: 13px;
  border: 1px solid var(--gold-bright);
  background: #35070d;
  box-shadow:
    0 0 0 8px rgba(205, 168, 93, 0.09),
    0 0 28px rgba(205, 168, 93, 0.36);
  content: "";
  transform: rotate(45deg);
}
.timeline article > div {
  grid-area: card;
  width: min(100%, 470px);
  padding: 27px 30px 29px;
  border: 1px solid rgba(234, 214, 168, 0.14);
  border-radius: 20px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.075),
    rgba(255, 255, 255, 0.026)
  );
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.16);
}
.timeline article:nth-child(even) > div {
  justify-self: end;
}
.timeline small {
  color: var(--gold);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.timeline h3 {
  margin: 10px 0 10px;
  color: #fffaf1;
  font-family: Georgia, serif;
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 400;
  line-height: 1.2;
}
.timeline p {
  max-width: 650px;
  margin: 0;
  color: #c5b7b2;
  font-size: 13px;
  line-height: 1.75;
}

.pillars-section {
  padding: 125px clamp(24px, 7vw, 112px) 145px;
  background: #f6efe4;
}
.pillars-section .section-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.pillars-section .kicker {
  justify-content: center;
}
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1180px;
  margin: auto;
}
.pillar-grid article {
  position: relative;
  min-height: 280px;
  padding: 42px;
  overflow: hidden;
  border: 1px solid rgba(177, 135, 72, 0.22);
  border-radius: 20px;
  background: linear-gradient(145deg, #fffefa, #fbf4e9);
  box-shadow: 0 18px 48px rgba(52, 20, 13, 0.07);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.pillar-grid article:hover {
  z-index: 1;
  transform: translateY(-5px);
  border-color: rgba(177, 135, 72, 0.48);
  box-shadow: 0 26px 58px rgba(52, 20, 13, 0.13);
}
.pillar-grid article > span {
  position: absolute;
  top: 20px;
  right: 22px;
  color: #d7c9b3;
  font-family: Georgia, serif;
  font-size: 11px;
}
.pillar-grid i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 30px;
  border: 1px solid #d2b77f;
  border-radius: 50%;
  color: var(--wine);
  font-size: 20px;
  font-style: normal;
}
.pillar-grid h3 {
  margin: 0 0 14px;
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 400;
}
.pillar-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.family-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(45px, 7vw, 110px);
  align-items: center;
  padding: 125px clamp(24px, 8vw, 130px);
  background: #190104;
  color: #fff;
}
.family-copy h2 {
  margin: 25px 0;
  font-family: Didot, Georgia, serif;
  font-size: clamp(43px, 5vw, 70px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.03;
}
.family-copy h2 em {
  color: var(--gold-light);
  font-weight: 400;
}
.family-copy > p:not(.kicker) {
  color: #b7a9a4;
  font-family: Georgia, serif;
  font-size: 16px;
  line-height: 1.9;
}
.family-card {
  position: relative;
  padding: 58px 48px 48px;
  border: 1px solid rgba(234, 214, 168, 0.3);
  border-radius: 24px;
  background: linear-gradient(
    145deg,
    rgba(108, 19, 31, 0.6),
    rgba(34, 2, 6, 0.7)
  );
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}
.family-card::before,
.family-card::after {
  position: absolute;
  width: 40px;
  height: 40px;
  content: "";
  border-color: var(--gold);
}
.family-card::before {
  top: 13px;
  left: 13px;
  border-top: 1px solid;
  border-left: 1px solid;
}
.family-card::after {
  right: 13px;
  bottom: 13px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}
.family-monogram {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  margin-bottom: 30px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 36px;
}
.family-card p {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(23px, 2.5vw, 35px);
  font-style: italic;
  line-height: 1.5;
}
.family-card small {
  display: block;
  margin-top: 28px;
  color: #a5938b;
  font-size: 8px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.legacy-cta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 45px;
  padding: 105px clamp(24px, 8vw, 130px);
  background: var(--paper);
}
.legacy-cta > div:first-child {
  max-width: 800px;
}
.legacy-cta h2 {
  margin: 24px 0 16px;
  font-family: Didot, Georgia, serif;
  font-size: clamp(42px, 5vw, 67px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.03;
}
.legacy-cta h2 em {
  color: var(--wine);
  font-weight: 400;
}
.legacy-cta p:not(.kicker) {
  max-width: 700px;
  color: var(--muted);
  font-family: Georgia, serif;
  font-size: 16px;
  line-height: 1.8;
}
.legacy-cta .button-ghost {
  border-color: #cdb47f;
  color: var(--wine);
}

.legacy-footer {
  padding: 65px 24px;
  background: var(--wine-black);
  color: #fff;
  text-align: center;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-light);
}
.footer-brand span {
  font-size: 30px;
}
.footer-brand b {
  font-family: Georgia, serif;
  font-size: 18px;
  letter-spacing: 0.2em;
}
.legacy-footer > p {
  margin: 18px 0 5px;
  font-family: Georgia, serif;
  font-size: 18px;
}
.legacy-footer > strong {
  display: block;
  color: var(--gold-light);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.legacy-footer nav {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
}
.legacy-footer nav a {
  color: #9f8e87;
  font-size: 10px;
}
.legacy-footer > small {
  display: block;
  margin-top: 28px;
  color: #6e5e59;
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.share-toast {
  position: fixed;
  z-index: 500;
  right: 22px;
  bottom: 22px;
  padding: 13px 18px;
  transform: translateY(120%);
  border: 1px solid #d8c08d;
  background: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
  color: var(--wine);
  font-size: 12px;
  opacity: 0;
  transition: 0.25s ease;
}
.share-toast.visible {
  transform: none;
  opacity: 1;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

@media (max-width: 1050px) {
  .legacy-nav {
    position: fixed;
    z-index: 90;
    top: 0;
    right: 0;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    width: min(84vw, 390px);
    height: 100vh;
    padding: 120px 40px 40px;
    transform: translateX(105%);
    background: rgba(25, 1, 4, 0.98);
    box-shadow: -25px 0 70px rgba(0, 0, 0, 0.35);
    transition: transform 0.28s ease;
  }
  .legacy-nav.open {
    transform: none;
  }
  .legacy-nav a {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid rgba(234, 214, 168, 0.12);
    font-family: Georgia, serif;
    font-size: 18px;
  }
  .legacy-nav .nav-button {
    margin-top: 12px;
    padding: 14px 16px;
    font-family: inherit;
    font-size: 10px;
    text-align: center;
  }
  .menu-toggle {
    position: relative;
    z-index: 100;
    display: inline-flex;
  }
  .legacy-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 150px;
    text-align: center;
  }
  .hero-content {
    margin: auto;
  }
  .kicker,
  .hero-actions,
  .hero-signature {
    justify-content: center;
  }
  .hero-deck {
    margin-right: auto;
    margin-left: auto;
  }
  .hero-emblem {
    width: min(82vw, 590px);
    margin-top: 30px;
  }
  .story-section {
    grid-template-columns: 1fr;
  }
  .chapter-rail {
    display: none;
  }
  .feature-story,
  .feature-story.reverse {
    grid-template-columns: 50px 1fr;
  }
  .feature-story > :last-child {
    grid-column: 2;
  }
}

@media (max-width: 900px) {
  .timeline-shell {
    padding: 34px 26px;
    border-radius: 28px;
  }
  .timeline::before {
    left: 80px;
  }
  .timeline article,
  .timeline article:nth-child(even) {
    grid-template-columns: 62px 36px minmax(0, 1fr);
    grid-template-areas: "year node card";
    min-height: 174px;
  }
  .timeline time,
  .timeline article:nth-child(even) time {
    padding: 0 10px 0 0;
    font-size: 20px;
    text-align: right;
  }
  .timeline article > span {
    width: 36px;
    height: 72px;
  }
  .timeline article > div,
  .timeline article:nth-child(even) > div {
    justify-self: stretch;
    width: auto;
    margin: 12px 0 12px 18px;
  }
}

@media (max-width: 760px) {
  .legacy-header {
    min-height: 74px;
    padding: 0 18px;
  }
  .legacy-brand b {
    font-size: 17px;
  }
  .legacy-brand small {
    display: none;
  }
  .brand-gem {
    font-size: 32px;
  }
  .legacy-hero {
    gap: 55px;
    padding: 125px 20px 75px;
  }
  .legacy-hero h1 {
    font-size: clamp(45px, 13vw, 66px);
  }
  .hero-script {
    font-size: 45px;
  }
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .hero-signature {
    align-items: flex-start;
    text-align: left;
  }
  .hero-emblem {
    width: min(94vw, 500px);
  }
  .legacy-hero .hero-emblem.legacy-seal--portrait {
    min-width: 0;
  }
  .legacy-hero .legacy-seal--portrait .seal-core.seal-core--portrait {
    inset: 8%;
  }
  .legacy-hero .hero-emblem .seal-orbit.orbit-one {
    inset: -4%;
  }
  .legacy-hero .hero-emblem .seal-orbit.orbit-two {
    inset: 3%;
  }
  .emblem-diamond {
    font-size: 240px;
  }
  .legacy-marquee {
    overflow-x: auto;
    scrollbar-width: none;
  }
  .story-section,
  .timeline-section,
  .pillars-section,
  .family-section,
  .legacy-cta {
    padding-right: 20px;
    padding-left: 20px;
  }
  .story-section {
    padding-top: 88px;
    padding-bottom: 95px;
  }
  .section-heading {
    margin-bottom: 55px;
  }
  .feature-story,
  .feature-story.reverse {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 55px 0;
  }
  .feature-story > :last-child {
    grid-column: 1;
    margin-top: 18px;
  }
  .story-number {
    font-size: 13px;
  }
  .quote-card {
    box-shadow: 9px 9px 0 #eadcc4;
  }
  .timeline-section {
    padding-top: 92px;
    padding-bottom: 100px;
  }
  .timeline-section .section-heading {
    margin-bottom: 50px;
  }
  .timeline-shell {
    padding: 26px 16px;
    border-radius: 24px;
  }
  .timeline::before {
    left: 66px;
  }
  .timeline article,
  .timeline article:nth-child(even) {
    grid-template-columns: 54px 24px minmax(0, 1fr);
    min-height: 162px;
  }
  .timeline time,
  .timeline article:nth-child(even) time {
    padding-right: 8px;
    font-size: 16px;
  }
  .timeline article > span {
    width: 24px;
  }
  .timeline article > span::before {
    width: 10px;
    height: 10px;
    box-shadow: 0 0 0 6px rgba(205, 168, 93, 0.09);
  }
  .timeline article > div,
  .timeline article:nth-child(even) > div {
    margin: 10px 0 10px 12px;
    padding: 22px 20px 24px;
    border-radius: 16px;
  }
  .timeline h3 {
    font-size: 20px;
  }
  .timeline p {
    font-size: 12px;
  }
  .pillar-grid {
    grid-template-columns: 1fr;
  }
  .pillar-grid article {
    min-height: 240px;
  }
  .family-section {
    grid-template-columns: 1fr;
    padding-top: 90px;
    padding-bottom: 100px;
  }
  .family-card {
    padding: 46px 30px 38px;
  }
  .legacy-cta {
    align-items: stretch;
    flex-direction: column;
    padding-top: 85px;
    padding-bottom: 90px;
  }
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .legacy-footer nav {
    flex-wrap: wrap;
  }
}

@media print {
  .reading-progress,
  .legacy-header,
  .mio-site-header,
  .hero-actions,
  .legacy-marquee,
  .chapter-rail,
  .legacy-cta,
  .legacy-footer,
  .mio-site-footer,
  .mio-mobile-actions,
  .share-toast {
    display: none !important;
  }
  body {
    background: #fff;
    color: #111;
  }
  .legacy-hero {
    min-height: 0;
    padding: 50px;
    background: #3e0710 !important;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }
  .hero-emblem {
    width: 260px;
  }
  .story-section {
    display: block;
    padding: 50px;
  }
  .timeline-section,
  .family-section {
    padding: 50px;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }
  .pillar-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}

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



