:root {
  --wine: #7d1f2d;
  --wine-dark: #4e111b;
  --wine-light: #a83a49;
  --gold: #c99a48;
  --gold-light: #e7c77f;
  --ink: #211b19;
  --muted: #716965;
  --paper: #f4efe5;
  --cream: #fbf8f1;
  --line: rgba(83, 54, 40, 0.16);
  --shadow: 0 24px 65px rgba(49, 29, 21, 0.13);
  --serif: Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
}
body.modal-open, body.nav-open { overflow: hidden; }
a { color: var(--wine); text-decoration: none; transition: color .25s ease, opacity .25s ease, transform .25s ease; }
a:hover, a:focus { color: var(--wine-light); text-decoration: none; }
button, input { font: inherit; }
button:focus-visible, a:focus-visible, input:focus-visible { outline: 3px solid rgba(201, 154, 72, .52); outline-offset: 3px; }
img { max-width: 100%; }
h1, h2, h3, h4, p { margin-top: 0; }
.section { padding: 110px 0; }
.section-heading { max-width: 760px; margin: 0 auto 54px; text-align: center; }
.section-heading h2, .about-copy h2 {
  margin: 8px 0 20px;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -.04em;
}
.section-heading p { margin: 0; color: var(--muted); font-size: 18px; }
.section-heading.light h2, .section-heading.light p { color: #fff; }
.section-heading.light p { opacity: .7; }
.section-kicker { color: var(--wine); font-size: 12px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
.light .section-kicker { color: var(--gold-light); }

/* Header */
#header {
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
  height: 92px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  transition: height .3s ease, background .3s ease, box-shadow .3s ease;
}
#header.header-fixed { height: 72px; background: rgba(67, 13, 23, .97); box-shadow: 0 10px 30px rgba(26, 7, 10, .22); backdrop-filter: blur(12px); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.brand { display: flex; align-items: center; color: #fff; }
.brand:hover, .brand:focus { color: #fff; }
.brand-mark { padding-right: 16px; font-family: var(--serif); font-size: 24px; font-weight: 700; letter-spacing: .08em; }
.brand-name { padding-left: 16px; border-left: 1px solid rgba(255, 255, 255, .35); color: rgba(255, 255, 255, .68); font-size: 9px; font-weight: 700; letter-spacing: .28em; }
#nav-menu-container ul { display: flex; align-items: center; gap: 34px; margin: 0; padding: 0; list-style: none; }
#nav-menu-container a { position: relative; padding: 10px 0; color: rgba(255, 255, 255, .76); font-size: 13px; font-weight: 650; letter-spacing: .02em; }
#nav-menu-container a::after { position: absolute; right: 0; bottom: 3px; left: 0; height: 1px; background: var(--gold-light); content: ""; transform: scaleX(0); transition: transform .25s ease; }
#nav-menu-container a:hover, #nav-menu-container .menu-active a { color: #fff; }
#nav-menu-container a:hover::after, #nav-menu-container .menu-active a::after { transform: scaleX(1); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid rgba(255, 255, 255, .35); border-radius: 50%; background: transparent; color: #fff; cursor: pointer; }

/* Hero */
.hero {
  position: relative;
  min-height: 860px;
  overflow: hidden;
  background: radial-gradient(circle at 78% 28%, rgba(197, 146, 69, .2), transparent 27%), linear-gradient(115deg, #3a0b14 0%, #691623 50%, #8c2937 100%);
  color: #fff;
}
.hero::before { position: absolute; top: 0; bottom: 0; left: 8%; width: 1px; background: rgba(255, 255, 255, .08); content: ""; }
.hero::after { position: absolute; right: -170px; bottom: -290px; width: 720px; height: 720px; border: 1px solid rgba(255, 255, 255, .1); border-radius: 50%; box-shadow: 0 0 0 80px rgba(255, 255, 255, .025), 0 0 0 160px rgba(255, 255, 255, .02); content: ""; }
.hero-pattern { position: absolute; inset: 0; opacity: .12; background-image: linear-gradient(30deg, transparent 49%, rgba(255, 255, 255, .11) 50%, transparent 51%), linear-gradient(150deg, transparent 49%, rgba(255, 255, 255, .07) 50%, transparent 51%); background-size: 44px 76px; mask-image: linear-gradient(to right, transparent, #000 65%); }
.hero-content { position: relative; z-index: 2; display: flex; align-items: center; min-height: 860px; padding-top: 95px; padding-bottom: 80px; }
.hero-copy { z-index: 2; }
.eyebrow { display: flex; align-items: center; gap: 13px; margin-bottom: 20px; color: var(--gold-light); font-size: 12px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow span { display: block; width: 45px; height: 1px; background: var(--gold-light); }
.hero h1 { margin: 0 0 24px; font-family: var(--serif); font-size: clamp(72px, 8vw, 116px); font-weight: 400; line-height: .82; letter-spacing: -.065em; text-transform: uppercase; }
.hero h1 strong { color: var(--gold-light); font-style: italic; font-weight: 400; }
.hero-copy > p { max-width: 610px; margin-bottom: 30px; color: rgba(255, 255, 255, .75); font-size: 19px; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; }
.btn-primary-roman, .btn-ghost, .random-button, .btn-load-more { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 27px; border: 1px solid transparent; border-radius: 2px; font-size: 13px; font-weight: 800; letter-spacing: .055em; text-transform: uppercase; cursor: pointer; }
.btn-primary-roman { background: var(--gold); color: #28180f; }
.btn-primary-roman:hover, .btn-primary-roman:focus { background: var(--gold-light); color: #28180f; transform: translateY(-2px); }
.btn-ghost { gap: 9px; border-color: rgba(255, 255, 255, .35); background: transparent; color: #fff; }
.btn-ghost:hover { border-color: #fff; background: rgba(255, 255, 255, .08); }
.hero-note { margin-top: 25px; color: rgba(255, 255, 255, .5); font-size: 12px; }
.hero-note i { margin-right: 6px; color: var(--gold-light); }
.hero-art { position: relative; width: 112%; margin-left: -2%; }
.hero-art img { display: block; width: 100%; filter: drop-shadow(0 40px 35px rgba(21, 4, 7, .3)); }
.hero-seal { position: absolute; right: 0; bottom: 11%; display: flex; align-items: center; justify-content: center; flex-direction: column; width: 116px; height: 116px; border: 1px solid rgba(255, 255, 255, .42); border-radius: 50%; background: rgba(69, 11, 21, .8); box-shadow: inset 0 0 0 7px rgba(255, 255, 255, .05); backdrop-filter: blur(8px); }
.hero-seal strong { font-family: var(--serif); font-size: 38px; font-weight: 400; line-height: 1; }
.hero-seal span { color: var(--gold-light); font-size: 9px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.hero-scroll { position: absolute; z-index: 3; bottom: 32px; left: 50%; display: flex; justify-content: center; width: 26px; height: 42px; border: 1px solid rgba(255, 255, 255, .32); border-radius: 20px; transform: translateX(-50%); }
.hero-scroll span { width: 3px; height: 7px; margin-top: 8px; border-radius: 2px; background: #fff; animation: scroll-dot 1.8s infinite; }
@keyframes scroll-dot { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translateY(17px); } }

/* Statistics */
.stats-strip { position: relative; z-index: 4; background: #241a17; color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { display: flex; align-items: center; justify-content: center; flex-direction: column; min-height: 132px; padding: 20px; border-right: 1px solid rgba(255, 255, 255, .09); text-align: center; }
.stat-item:first-child { border-left: 1px solid rgba(255, 255, 255, .09); }
.stat-item strong { color: var(--gold-light); font-family: var(--serif); font-size: 30px; font-weight: 400; line-height: 1.1; }
.stat-item span { margin-top: 7px; color: rgba(255, 255, 255, .54); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }

/* About */
.about-section { position: relative; background: var(--paper); }
.about-section::before { position: absolute; inset: 0; opacity: .33; background-image: radial-gradient(rgba(84, 55, 40, .12) .7px, transparent .7px); background-size: 8px 8px; content: ""; pointer-events: none; }
.image-frame { position: relative; padding: 16px; border: 1px solid rgba(89, 55, 38, .24); background: rgba(255, 255, 255, .34); box-shadow: var(--shadow); }
.image-frame::before, .image-frame::after { position: absolute; width: 42px; height: 42px; border-color: var(--wine); content: ""; }
.image-frame::before { top: -7px; left: -7px; border-top: 2px solid; border-left: 2px solid; }
.image-frame::after { right: -7px; bottom: -7px; border-right: 2px solid; border-bottom: 2px solid; }
.image-frame img { display: block; width: 100%; }
.image-caption { position: absolute; right: 15px; bottom: -34px; color: #8e7b6c; font-size: 9px; font-weight: 800; letter-spacing: .2em; }
.about-copy { padding-left: 70px; }
.about-copy .lead { color: var(--muted); font-size: 18px; line-height: 1.75; }
.about-points { margin-top: 36px; }
.about-points > div { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 18px 0; border-top: 1px solid var(--line); }
.about-points span { color: var(--gold); font-family: var(--serif); font-size: 15px; font-style: italic; }
.about-points p { margin: 0; color: var(--muted); }
.about-points strong { color: var(--ink); }

/* Timeline */
.timeline-section { overflow: hidden; background: linear-gradient(rgba(30, 21, 19, .96), rgba(30, 21, 19, .96)), repeating-linear-gradient(90deg, transparent 0, transparent 79px, rgba(255, 255, 255, .04) 80px); }
.timeline { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; padding-top: 10px; }
.timeline::before { position: absolute; top: 82px; right: 9%; left: 9%; height: 1px; background: linear-gradient(to right, transparent, var(--gold), transparent); content: ""; }
.timeline-item { position: relative; padding: 0 13px; text-align: center; }
.timeline-year { height: 62px; color: var(--gold-light); font-family: var(--serif); font-size: 35px; line-height: 1; }
.timeline-year small { display: block; margin-top: 5px; font-family: var(--sans); font-size: 8px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.timeline-dot { position: relative; z-index: 2; width: 13px; height: 13px; margin: 4px auto 27px; border: 3px solid #291d1a; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 1px var(--gold); }
.timeline-card { min-height: 180px; padding: 24px 18px; border: 1px solid rgba(255, 255, 255, .09); background: rgba(255, 255, 255, .035); transition: border-color .25s ease, transform .25s ease; }
.timeline-card:hover { border-color: rgba(231, 199, 127, .42); transform: translateY(-5px); }
.timeline-card h3 { margin-bottom: 12px; color: #fff; font-family: var(--serif); font-size: 21px; font-weight: 400; }
.timeline-card p { margin: 0; color: rgba(255, 255, 255, .56); font-size: 13px; line-height: 1.65; }

/* Facts */
.facts-section { background: var(--cream); }
.facts-toolbar { display: flex; justify-content: center; gap: 12px; max-width: 860px; margin: 0 auto 28px; }
.search-box { position: relative; display: flex; align-items: center; flex: 1; min-height: 58px; margin: 0; border: 1px solid var(--line); background: #fff; box-shadow: 0 12px 35px rgba(56, 36, 27, .06); }
.search-box > i { margin-left: 21px; color: var(--gold); }
.search-box input { flex: 1; min-width: 0; height: 56px; padding: 0 18px; border: 0; outline: 0; background: transparent; color: var(--ink); }
.search-box input::placeholder { color: #aaa09a; }
#clear-search { display: none; width: 46px; height: 46px; margin-right: 5px; border: 0; background: transparent; color: #988d87; cursor: pointer; }
#clear-search.visible { display: block; }
.random-button { gap: 9px; min-height: 58px; border-color: var(--wine); background: var(--wine); color: #fff; }
.random-button:hover { background: var(--wine-dark); }
.category-filters { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; max-width: 1080px; margin: 0 auto 26px; }
.filter-button { padding: 9px 15px; border: 1px solid var(--line); border-radius: 30px; background: transparent; color: #6d625c; font-size: 12px; font-weight: 700; cursor: pointer; transition: all .2s ease; }
.filter-button i { margin-right: 6px; color: var(--gold); }
.filter-button:hover, .filter-button.active { border-color: var(--wine); background: var(--wine); color: #fff; }
.filter-button.active i { color: var(--gold-light); }
.facts-meta { display: flex; align-items: center; justify-content: space-between; max-width: 1110px; margin: 0 auto 18px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.facts-meta p { margin: 0; color: #8a7f79; font-size: 12px; }
.facts-meta strong { color: var(--ink); }
.text-button { padding: 0; border: 0; border-bottom: 1px solid currentColor; background: transparent; color: var(--wine); font-size: 12px; font-weight: 700; cursor: pointer; }
.facts-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; max-width: 1110px; margin: 0 auto; }
.fact-card { position: relative; display: flex; overflow: hidden; flex-direction: column; min-height: 275px; padding: 27px; border: 1px solid rgba(93, 65, 51, .13); background: #fff; box-shadow: 0 12px 34px rgba(63, 42, 31, .045); animation: fact-in .35s ease both; transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease; }
.fact-card::before { position: absolute; top: 0; left: 0; width: 3px; height: 0; background: var(--wine); content: ""; transition: height .25s ease; }
.fact-card:hover { border-color: rgba(125, 31, 45, .33); box-shadow: 0 18px 45px rgba(63, 42, 31, .1); transform: translateY(-4px); }
.fact-card:hover::before { height: 100%; }
@keyframes fact-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.fact-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 23px; }
.fact-number { color: var(--gold); font-family: var(--serif); font-size: 13px; font-style: italic; letter-spacing: .08em; }
.fact-icon { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 50%; color: var(--wine); }
.fact-card p { flex: 1; margin-bottom: 24px; color: #49403b; font-family: var(--serif); font-size: 18px; line-height: 1.48; }
.fact-category { color: #9b8e86; font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.facts-empty { max-width: 520px; margin: 40px auto 0; padding: 50px 20px; border: 1px solid var(--line); text-align: center; }
.facts-empty i { margin-bottom: 15px; color: var(--gold); font-size: 28px; }
.facts-empty h3 { margin-bottom: 8px; font-family: var(--serif); }
.facts-empty p { color: var(--muted); }
.facts-empty button { padding: 9px 16px; border: 1px solid var(--wine); background: transparent; color: var(--wine); cursor: pointer; }
.load-more-wrap { margin-top: 40px; text-align: center; }
.btn-load-more { min-width: 245px; border-color: var(--wine); background: transparent; color: var(--wine); }
.btn-load-more:hover { background: var(--wine); color: #fff; }
.btn-load-more span { margin-left: 5px; }
.noscript-note { margin-top: 30px; padding: 15px; background: #fff3cd; text-align: center; }

/* Legacy */
.legacy-section { background: var(--paper); }
.legacy-grid { display: grid; grid-template-columns: 1.35fr 1fr; grid-template-rows: repeat(2, 280px); gap: 18px; }
.legacy-card { position: relative; overflow: hidden; margin: 0; background: #2c211d; }
.legacy-card.legacy-wide { grid-row: 1 / 3; }
.legacy-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.legacy-card:hover img { transform: scale(1.04); }
.legacy-card::after { position: absolute; inset: 0; background: linear-gradient(to top, rgba(28, 12, 12, .92), transparent 62%); content: ""; }
.legacy-overlay { position: absolute; z-index: 2; right: 34px; bottom: 28px; left: 34px; color: #fff; }
.legacy-overlay span { color: var(--gold-light); font-family: var(--serif); font-size: 12px; font-style: italic; }
.legacy-overlay h3 { margin: 2px 0 4px; font-family: var(--serif); font-size: 33px; font-weight: 400; }
.legacy-overlay p { max-width: 480px; margin: 0; color: rgba(255, 255, 255, .68); font-size: 13px; }

/* Quote and footer */
.quote-section { padding: 120px 0; background: linear-gradient(rgba(100, 21, 34, .93), rgba(100, 21, 34, .93)), radial-gradient(circle at center, var(--wine-light), var(--wine-dark)); color: #fff; text-align: center; }
.quote-section .container { max-width: 900px; }
.laurel { margin-bottom: 12px; color: var(--gold-light); font-size: 45px; }
.quote-section blockquote { margin: 0 0 20px; font-family: var(--serif); font-size: clamp(33px, 5vw, 54px); font-style: italic; line-height: 1.2; }
.quote-section p { max-width: 620px; margin: 0 auto 32px; color: rgba(255, 255, 255, .65); }
#footer { padding: 55px 0; background: #1d1513; color: rgba(255, 255, 255, .5); }
.footer-inner { display: grid; grid-template-columns: 1.2fr .8fr 1fr; align-items: center; gap: 40px; }
.footer-brand { color: var(--gold-light); font-family: var(--serif); font-size: 28px; letter-spacing: .09em; }
#footer p { margin: 6px 0 0; font-size: 12px; }
.footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: 5px; }
.footer-links a { color: rgba(255, 255, 255, .68); font-size: 12px; }
.footer-links a:hover { color: var(--gold-light); }
.footer-note { padding-left: 28px; border-left: 1px solid rgba(255, 255, 255, .12); }

/* Modal */
.fact-modal[hidden] { display: none; }
.fact-modal { position: fixed; z-index: 1200; inset: 0; display: flex; align-items: center; justify-content: center; padding: 20px; }
.modal-backdrop { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; background: rgba(25, 14, 12, .86); cursor: default; backdrop-filter: blur(5px); }
.modal-card { position: relative; z-index: 2; width: 100%; max-width: 690px; padding: 58px; border: 1px solid rgba(201, 154, 72, .5); background: var(--paper); box-shadow: 0 35px 100px rgba(0, 0, 0, .4); animation: modal-in .3s ease both; }
.modal-card::before { position: absolute; inset: 10px; border: 1px solid rgba(125, 31, 45, .13); content: ""; pointer-events: none; }
@keyframes modal-in { from { opacity: 0; transform: translateY(15px) scale(.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
.modal-close { position: absolute; z-index: 3; top: 18px; right: 18px; width: 38px; height: 38px; border: 0; background: transparent; color: var(--wine); cursor: pointer; }
.modal-number { margin-bottom: 7px; color: var(--gold); font-family: var(--serif); font-size: 14px; font-style: italic; letter-spacing: .08em; }
.modal-category { color: var(--wine); font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.modal-card p { margin: 27px 0 30px; color: #382d28; font-family: var(--serif); font-size: clamp(25px, 4vw, 34px); line-height: 1.42; }
.modal-next { padding: 0 0 5px; border: 0; border-bottom: 1px solid var(--wine); background: transparent; color: var(--wine); font-size: 12px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; cursor: pointer; }
.modal-next i { margin-left: 8px; }
.back-to-top { position: fixed; z-index: 800; right: 22px; bottom: 22px; display: flex; align-items: center; justify-content: center; width: 46px; height: 46px; border: 1px solid rgba(255, 255, 255, .4); background: var(--wine); color: #fff; opacity: 0; pointer-events: none; transform: translateY(12px); }
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--gold); color: #24150f; }

@media (max-width: 1199px) {
  .hero, .hero-content { min-height: 780px; }
  .hero-art { width: 108%; }
  .about-copy { padding-left: 45px; }
  .facts-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 991px) {
  .section { padding: 85px 0; }
  #header, #header.header-fixed { height: 70px; background: rgba(67, 13, 23, .97); }
  .nav-toggle { display: block; z-index: 3; }
  #nav-menu-container { position: fixed; z-index: 2; top: 0; right: 0; bottom: 0; width: min(340px, 86vw); padding: 105px 35px 35px; background: #321017; box-shadow: -20px 0 50px rgba(0, 0, 0, .25); transform: translateX(105%); transition: transform .3s ease; }
  .nav-open #nav-menu-container { transform: translateX(0); }
  #nav-menu-container ul { align-items: stretch; flex-direction: column; gap: 0; }
  #nav-menu-container a { display: block; padding: 14px 0; border-bottom: 1px solid rgba(255, 255, 255, .1); font-family: var(--serif); font-size: 21px; }
  #nav-menu-container a::after { display: none; }
  .hero, .hero-content { min-height: auto; }
  .hero-content { padding-top: 155px; padding-bottom: 95px; }
  .hero-art { width: 92%; max-width: 650px; margin: 30px auto 0; }
  .hero-scroll { display: none; }
  .about-copy { padding-top: 70px; padding-left: 15px; }
  .timeline { grid-template-columns: 1fr; gap: 18px; max-width: 720px; margin: 0 auto; }
  .timeline::before { top: 0; bottom: 0; left: 26px; width: 1px; height: auto; background: linear-gradient(to bottom, transparent, var(--gold), transparent); }
  .timeline-item { display: grid; grid-template-columns: 62px 1fr; align-items: center; gap: 20px; padding: 0; text-align: left; }
  .timeline-year { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; flex-direction: column; width: 58px; height: 58px; border-radius: 50%; background: #291d1a; font-size: 21px; }
  .timeline-dot { display: none; }
  .timeline-card { min-height: 0; padding: 20px 23px; }
  .legacy-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 430px 270px; }
  .legacy-card.legacy-wide { grid-column: 1 / 3; grid-row: auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-note { grid-column: 1 / 3; padding: 22px 0 0; border-top: 1px solid rgba(255, 255, 255, .12); border-left: 0; }
}

@media (max-width: 767px) {
  .section { padding: 72px 0; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2, .about-copy h2 { font-size: 42px; }
  .section-heading p { font-size: 16px; }
  .brand-name { display: none; }
  .brand-mark { padding-right: 0; }
  .hero-content { padding-top: 120px; padding-bottom: 70px; }
  .hero h1 { font-size: 67px; }
  .hero-copy > p { font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .btn-primary-roman, .btn-ghost { width: 100%; }
  .hero-art { width: 112%; margin-left: -6%; }
  .hero-seal { right: 2%; width: 92px; height: 92px; }
  .hero-seal strong { font-size: 30px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { min-height: 110px; border-bottom: 1px solid rgba(255, 255, 255, .09); }
  .stat-item:nth-child(3) { border-left: 1px solid rgba(255, 255, 255, .09); }
  .facts-toolbar { flex-direction: column; }
  .random-button { width: 100%; }
  .category-filters { justify-content: flex-start; flex-wrap: nowrap; margin-right: -15px; margin-left: -15px; padding: 0 15px 9px; overflow-x: auto; scrollbar-width: thin; }
  .filter-button { flex: 0 0 auto; }
  .facts-grid { grid-template-columns: 1fr; }
  .fact-card { min-height: 0; }
  .legacy-grid { display: block; }
  .legacy-card, .legacy-card.legacy-wide { height: 340px; margin-bottom: 14px; }
  .quote-section { padding: 85px 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-note { grid-column: auto; }
  .modal-card { padding: 50px 30px 38px; }
  .modal-card p { font-size: 24px; }
}

@media (max-width: 480px) {
  .container { padding-right: 18px; padding-left: 18px; }
  .hero h1 { font-size: 54px; }
  .hero-copy > p { font-size: 15px; }
  .eyebrow { font-size: 10px; }
  .hero-note { line-height: 1.5; }
  .hero-art { width: 122%; margin-left: -11%; }
  .stat-item strong { font-size: 24px; }
  .stat-item span { font-size: 8px; }
  .about-copy { padding-top: 58px; }
  .image-caption { right: 0; }
  .timeline-item { grid-template-columns: 54px 1fr; gap: 12px; }
  .timeline-year { width: 52px; height: 52px; font-size: 19px; }
  .timeline::before { left: 23px; }
  .timeline-card h3 { font-size: 18px; }
  .timeline-card p { font-size: 12px; }
  .facts-meta { align-items: flex-start; gap: 12px; }
  .fact-card { padding: 23px; }
  .fact-card p { font-size: 17px; }
  .legacy-card, .legacy-card.legacy-wide { height: 300px; }
  .legacy-overlay { right: 24px; bottom: 22px; left: 24px; }
  .legacy-overlay h3 { font-size: 28px; }
}

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