.page-hero { background: var(--navy); padding: 56px 0 52px; position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--gold); }
.page-hero .eyebrow { color: var(--gold); }
.page-hero h1 { color: #fff; font-size: clamp(1.6rem, 4vw, 2.4rem); margin: 0.4rem 0 0.8rem; }
.page-hero p { color: rgba(255,255,255,0.6); max-width: 520px; font-size: 0.95rem; font-weight: 300; }

.data-table-wrap { overflow-x: auto; margin-bottom: 1.5rem; border: 1px solid var(--border); border-radius: var(--radius-md); }
.data-table { width: 100%; border-collapse: collapse; font-size: 0.86rem; }
.data-table thead tr { background: var(--navy); }
.data-table thead th { color: rgba(255,255,255,0.65); font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 400; padding: 12px 16px; text-align: left; }
.data-table tbody tr { border-bottom: 1px solid var(--border); transition: background 0.15s; }
.data-table tbody tr:last-child { border-bottom: none; }
.data-table tbody tr:hover { background: var(--offwhite); }
.data-table tbody td { padding: 12px 16px; color: var(--text-muted); vertical-align: top; }
.data-table tbody td:first-child { color: var(--text); font-weight: 500; }
.data-table tbody td:nth-child(2) { font-family: 'Playfair Display', serif; font-size: 0.95rem; color: var(--blue); font-weight: 600; white-space: nowrap; }
.row-featured td { background: rgba(201,168,76,0.06); }
.row-badge { font-size: 0.58rem; letter-spacing: 0.08em; text-transform: uppercase; background: var(--gold); color: var(--navy); padding: 2px 7px; border-radius: 2px; font-weight: 700; margin-left: 8px; vertical-align: middle; }
.info-note { background: rgba(61,127,190,0.06); border-left: 3px solid var(--blue); padding: 14px 18px; font-size: 0.82rem; color: var(--text-muted); border-radius: 0 var(--radius) var(--radius) 0; line-height: 1.6; }
.info-note a { color: var(--blue); text-decoration: underline; }
.info-note strong { color: var(--text); }
.fade-in { opacity: 0; transform: translateY(12px); transition: opacity 0.4s ease, transform 0.4s ease; }
.fade-in.visible { opacity: 1; transform: none; }
