:root {
    --ink: #121416;
    --graphite: #2A2E32;
    --amber: #D4A017;
    --cream: #F3EDE2;
    --cue: #C43C3C;
    --cream-deep: #E8DFCC;
    --radius: 10px;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
    background: var(--cream);
    color: var(--ink);
    font-family: "Helvetica Neue", Helvetica, Arial, "Segoe UI", sans-serif;
    line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
img { display: block; max-width: 100%; height: auto; }

.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Header */
.ry-header {
    position: sticky; top: 0; z-index: 40;
    background: var(--graphite);
    color: var(--cream);
    border-bottom: 3px solid var(--amber);
}
.ry-header-inner {
    max-width: 1200px; margin: 0 auto; padding: 12px 20px;
    display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
}
.ry-brand { display: flex; align-items: center; gap: 10px; }
.ry-brand:hover { text-decoration: none; }
.ry-brand-mark {
    width: 14px; height: 14px; border-radius: 50%;
    background: var(--amber);
    box-shadow: 0 0 0 3px var(--cream), 0 0 0 5px var(--cue);
}
.ry-brand-name { font-weight: 800; letter-spacing: .02em; font-size: 1.15rem; line-height: 1.1; }
.ry-brand-tag {
    display: block; font-size: .66rem; letter-spacing: .24em;
    text-transform: uppercase; color: var(--amber); font-weight: 700;
}
.ry-nav { display: flex; gap: 4px; flex-wrap: wrap; }
.ry-nav-link { padding: 8px 12px; border-radius: 6px; font-weight: 600; font-size: .92rem; }
.ry-nav-link:hover { background: rgba(243, 237, 226, .12); text-decoration: none; }
.ry-search { display: flex; gap: 8px; margin-left: auto; }
.ry-search input {
    padding: 9px 12px; border-radius: 6px; border: 1px solid rgba(243, 237, 226, .35);
    background: var(--ink); color: var(--cream); min-width: 210px; font-size: .9rem;
}
.ry-search input::placeholder { color: rgba(243, 237, 226, .55); }
.ry-btn {
    background: var(--amber); color: var(--ink); border: 0; border-radius: 6px;
    padding: 9px 14px; font-weight: 700; font-size: .9rem; cursor: pointer;
}
.ry-btn:hover { background: #e3b233; text-decoration: none; }

/* Sections */
.ry-section { max-width: 1200px; margin: 0 auto; padding: 34px 20px 8px; }
.ry-section-head { display: flex; align-items: end; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.ry-kicker {
    margin: 0 0 4px; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
    color: var(--cue); font-weight: 700;
}
.ry-h1 { margin: 0; font-size: clamp(1.6rem, 3.4vw, 2.4rem); line-height: 1.1; }
.ry-h2 { margin: 0; font-size: clamp(1.3rem, 2.6vw, 1.9rem); line-height: 1.15; }
.ry-meta { font-size: .82rem; color: var(--graphite); margin: 0; }
.ry-link { color: var(--cue); font-weight: 700; }
.ry-link:hover { text-decoration: underline; }

/* Filter bar */
.ry-filterbar {
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
    padding: 14px 16px; margin-bottom: 18px;
    background: #fff; border: 1px solid var(--cream-deep); border-left: 4px solid var(--amber);
    border-radius: var(--radius);
}
.ry-filter-label {
    font-size: .72rem; text-transform: uppercase; letter-spacing: .14em;
    color: var(--graphite); font-weight: 700; margin-right: 4px;
}
.ry-chip {
    padding: 6px 12px; border-radius: 999px; background: var(--cream-deep);
    font-size: .84rem; font-weight: 600; color: var(--ink);
}
.ry-chip:hover { background: var(--amber); text-decoration: none; }
.ry-chip-accent { background: var(--ink); color: var(--cream); }
.ry-chip-accent:hover { background: var(--graphite); }

/* Schedule grid */
.ry-schedule {
    display: grid; grid-template-columns: 150px 1.6fr 1.2fr 1.2fr;
    border: 1px solid var(--cream-deep); border-radius: var(--radius); overflow: hidden;
    background: #fff;
}
.ry-sched-head, .ry-sched-row { display: contents; }
.ry-sched-head span {
    padding: 10px 14px; font-size: .7rem; text-transform: uppercase; letter-spacing: .12em;
    background: var(--graphite); color: var(--cream); font-weight: 700;
}
.ry-sched-row > * { padding: 13px 14px; border-top: 1px solid var(--cream-deep); }
.ry-sched-time { font-weight: 800; color: var(--cue); white-space: nowrap; }
.ry-sched-title { font-weight: 700; }
.ry-sched-title:hover { color: var(--cue); text-decoration: underline; }

/* Mosaic */
.ry-mosaic { display: grid; grid-template-columns: 1.5fr 1fr; grid-auto-rows: 215px; gap: 14px; }
.ry-mosaic-featured {
    position: relative; grid-row: span 2; border-radius: var(--radius);
    overflow: hidden; background: var(--ink); color: #fff; display: block;
}
.ry-mosaic-featured:hover { text-decoration: none; }
.ry-mosaic-img { width: 100%; height: 100%; object-fit: cover; }
.ry-mosaic-caption {
    position: absolute; inset: auto 0 0 0; padding: 18px;
    background: linear-gradient(transparent, rgba(18, 20, 22, .88));
}
.ry-mosaic-caption .ry-kicker { color: var(--amber); }
.ry-mosaic-title { margin: 2px 0 4px; font-size: 1.5rem; line-height: 1.15; }
.ry-mosaic-dek { margin: 0; font-size: .9rem; color: rgba(255, 255, 255, .85); }
.ry-tile {
    position: relative; border-radius: var(--radius); overflow: hidden;
    background: var(--graphite); color: #fff; display: block; min-height: 0;
}
.ry-tile:hover { text-decoration: none; }
.ry-tile img { width: 100%; height: 100%; object-fit: cover; }
.ry-tile-cap {
    position: absolute; inset: auto 0 0 0; padding: 12px 14px;
    background: linear-gradient(transparent, rgba(18, 20, 22, .88));
}
.ry-tile-cap .ry-kicker { color: var(--amber); font-size: .64rem; margin-bottom: 2px; }
.ry-tile h3 { margin: 0; font-size: 1.02rem; line-height: 1.25; }

/* Cards and lists */
.ry-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ry-card {
    background: #fff; border: 1px solid var(--cream-deep); border-radius: var(--radius);
    overflow: hidden; display: flex; flex-direction: column; color: var(--ink);
}
.ry-card:hover { border-color: var(--amber); text-decoration: none; }
.ry-card img { width: 100%; height: 150px; object-fit: cover; }
.ry-card-body { padding: 14px 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.ry-card h3 { margin: 0; font-size: 1.05rem; line-height: 1.25; }
.ry-dek { font-size: .88rem; color: var(--graphite); }
.ry-badge {
    display: inline-block; padding: 3px 9px; border-radius: 999px;
    background: var(--cream-deep); font-size: .72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .06em; align-self: flex-start; color: var(--graphite);
}

.ry-list { display: grid; gap: 12px; }
.ry-list-item {
    display: grid; grid-template-columns: 120px 1fr; gap: 14px; align-items: center;
    background: #fff; border: 1px solid var(--cream-deep); border-radius: var(--radius);
    padding: 10px; color: var(--ink);
}
.ry-list-item:hover { border-color: var(--amber); text-decoration: none; }
.ry-list-item img { width: 120px; height: 84px; object-fit: cover; border-radius: 6px; }
.ry-list-item h3 { margin: 0 0 2px; font-size: 1.02rem; line-height: 1.25; }
.ry-list-item .ry-meta { font-size: .8rem; color: var(--graphite); }

/* Detail */
.ry-detail { max-width: 920px; margin: 0 auto; padding: 34px 20px 60px; }
.ry-detail h1 { font-size: clamp(1.7rem, 4vw, 2.6rem); margin: 6px 0 10px; line-height: 1.08; }
.ry-detail-dek { font-size: 1.05rem; color: var(--graphite); margin: 0 0 18px; }
.ry-detail-hero { display: grid; grid-template-columns: 2fr 1fr; gap: 24px; align-items: start; }
.ry-detail-cover { border-radius: var(--radius); width: 100%; }
.ry-detail-facts {
    margin: 0; display: grid; gap: 12px; background: #fff;
    border: 1px solid var(--cream-deep); border-left: 4px solid var(--amber);
    border-radius: var(--radius); padding: 16px;
}
.ry-detail-facts dt { font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; color: var(--graphite); font-weight: 700; }
.ry-detail-facts dd { margin: 2px 0 0; font-weight: 600; }
.ry-detail-body { margin-top: 24px; font-size: 1rem; max-width: 68ch; }
.ry-detail-body p { margin: 0 0 12px; }

/* Footer */
.ry-footer { margin-top: 48px; background: var(--ink); color: var(--cream); }
.ry-footer-grid {
    max-width: 1200px; margin: 0 auto; padding: 34px 20px;
    display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 24px;
}
.ry-footer-brand { font-weight: 800; margin: 0 0 6px; font-size: 1.05rem; }
.ry-footer-brand span { color: var(--amber); }
.ry-footer-note { font-size: .86rem; color: rgba(243, 237, 226, .72); margin: 0; }
.ry-footer nav { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; align-content: start; }
.ry-footer nav a { font-size: .9rem; }
.ry-footer nav a:hover { color: var(--amber); }

.ry-empty {
    padding: 26px; background: #fff; border: 1px dashed var(--cream-deep);
    border-radius: var(--radius); color: var(--graphite);
}

/* Responsive */
@media (max-width: 900px) {
    .ry-mosaic { grid-template-columns: 1fr; grid-auto-rows: 230px; }
    .ry-card-grid { grid-template-columns: repeat(2, 1fr); }
    .ry-detail-hero { grid-template-columns: 1fr; }
    .ry-footer-grid { grid-template-columns: 1fr; }
    .ry-search { margin-left: 0; width: 100%; }
    .ry-search input { flex: 1; min-width: 0; }
    .ry-schedule { grid-template-columns: 140px 1fr 1fr; }
    .ry-sched-head span:nth-child(4), .ry-sched-row > *:nth-child(4) { display: none; }
}
@media (max-width: 620px) {
    .ry-card-grid { grid-template-columns: 1fr; }
    .ry-list-item { grid-template-columns: 96px 1fr; }
    .ry-list-item img { width: 96px; height: 72px; }
    .ry-schedule { grid-template-columns: 120px 1fr; }
    .ry-sched-head span:nth-child(3), .ry-sched-row > *:nth-child(3),
    .ry-sched-head span:nth-child(4), .ry-sched-row > *:nth-child(4) { display: none; }
}