:root {
  /* Design tokens: #FFFFFF #373737 #A7A397 #C90016 #E8E6DF #111111 Arial Roboto Condensed sans-serif */
  --font-sans: Arial, Helvetica, sans-serif;
  --font-condensed: "Roboto Condensed", Arial, sans-serif;
  --ink: #373737;
  --black: #111111;
  --stone: #A7A397;
  --stone-dark: #918d82;
  --paper: #FFFFFF;
  --panel: #F2F2F2;
  --line: #E8E6DF;
  --red: #C90016;
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--font-sans); font-size: 14px; line-height: 1.45; }
a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { width: min(1020px, calc(100vw - 32px)); margin-inline: auto; }
.site-header { background: #fff; border-bottom: 1px solid var(--line); }
.iracm-top { min-height: 100px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; color: var(--black); text-decoration: none; min-width: 420px; }
.barcode { width: 128px; height: 54px; margin-right: 10px; background: repeating-linear-gradient(90deg, #111 0 3px, #fff 3px 6px, #111 6px 8px, #fff 8px 13px); border: 1px solid #eee; }
.brand-word { font-size: 54px; line-height: .9; font-weight: 900; letter-spacing: 0; color: #000; }
.brand-subtitle { margin-left: 12px; font-size: 12px; line-height: 1.05; text-transform: uppercase; font-weight: 700; color: #333; }
.header-tools { display: grid; justify-items: end; gap: 8px; }
.language-link { color: #777; text-transform: uppercase; font-size: 12px; font-weight: 700; }
.social-strip { display: flex; align-items: center; gap: 6px; }
.social-button { width: 34px; height: 34px; display: grid; place-items: center; color: #fff; border-radius: 5px; font-weight: 900; box-shadow: inset 0 1px rgba(255,255,255,.35); }
.social-button.tw { background: #31a5df; }
.social-button.fb { background: #38579a; }
.social-button.yt { background: #c63a2c; }
.search-box { display: flex; height: 36px; }
.search-box input { width: 155px; border: 1px solid var(--line); border-right: 0; padding: 0 10px; font-size: 14px; }
.search-box button { width: 38px; border: 0; background: var(--stone); color: #fff; font-weight: 900; }
.primary-nav { background: var(--stone); }
.nav-links { width: min(1020px, calc(100vw - 32px)); margin: 0 auto; padding: 0; list-style: none; display: flex; align-items: stretch; }
.nav-links > li { position: relative; }
.nav-links > li > a { display: block; padding: 13px 14px; color: #fff; text-transform: uppercase; font-weight: 700; font-size: 13px; line-height: 1; }
.nav-links > li:hover > a { background: var(--stone-dark); text-decoration: none; }
.dropdown { display: none; position: absolute; left: 0; top: 100%; width: 260px; padding: 8px; margin: 0; list-style: none; background: #fff; border: 1px solid var(--line); box-shadow: 0 14px 28px rgba(0,0,0,.14); z-index: 20; }
.dropdown a { display: block; padding: 8px; color: var(--ink); font-size: 13px; }
.nav-links > li:hover .dropdown { display: block; }
.home-hero { min-height: 294px; position: relative; overflow: hidden; border-bottom: 18px solid #fff; }
.home-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.hero-copy { position: relative; padding-top: 60px; color: #111; }
.hero-copy h1 { max-width: 360px; margin: 0; font-size: 22px; line-height: 1.05; font-weight: 900; color: #000; }
.hero-copy p { max-width: 370px; margin-top: 12px; font-size: 16px; font-weight: 700; }
.quick-access { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; margin: 18px auto; }
.quick-access article, .feature-tile, .content-card { background: var(--panel); border-radius: 0; border: 0; }
.quick-access article { min-height: 74px; padding: 12px; border-top: 7px solid var(--stone); }
.quick-access h2 { margin: 0; font-size: 13px; line-height: 1.2; text-transform: uppercase; }
.quick-access a { color: var(--ink); }
.dashboard-grid { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 22px; align-items: start; }
.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 28px; padding-block: 28px; }
.content-flow { background: #fff; min-width: 0; }
.content-flow.news-panel, .content-flow, .sidebar { border-top: 42px solid var(--stone); padding: 18px; box-shadow: inset 0 1px var(--line); }
.content-flow h1, .content-flow h2, .feature-tile h2, .content-card h3 { font-family: var(--font-condensed); letter-spacing: 0; color: var(--ink); }
.content-flow h1 { font-size: 30px; margin-top: 0; }
.content-flow h2, .feature-tile h2 { margin-top: 0; font-size: 18px; text-transform: uppercase; }
.content-flow h2::before, .feature-tile h2::before, .content-card h3::before { content: "|||"; color: var(--red); font-family: Arial, sans-serif; margin-right: 8px; letter-spacing: -1px; }
.content-flow img, .main-image { max-width: 100%; height: auto; display: block; }
.content-flow table { width: 100%; border-collapse: collapse; }
.content-flow td, .content-flow th { border: 1px solid var(--line); padding: 8px; vertical-align: top; }
.table-wrap { overflow-x: auto; }
.feature-stack { display: grid; gap: 14px; }
.feature-tile { min-height: 108px; padding: 18px; background: var(--stone); color: #fff; }
.feature-tile h2, .feature-tile a { color: #fff; }
.cards-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; padding-block: 24px; }
.cards-grid.columns-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cards-grid.columns-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.content-card { padding: 18px; border-top: 7px solid var(--stone); }
.content-card.horizontal { display: grid; grid-template-columns: 150px 1fr; gap: 14px; }
.content-card.minimal { background: transparent; border-top: 2px solid var(--line); }
.media-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; }
.media-grid figure { margin: 0; }
.toc, .sidebar { background: #f4f3ef; }
.sidebar { align-self: start; border-top-color: var(--stone); }
.site-footer { margin-top: 36px; padding: 32px 0; background: var(--stone); color: #fff; }
.site-footer .grid { display: grid; grid-template-columns: 1fr 2fr; gap: 28px; }
.site-footer h2, .site-footer h3, .site-footer p, .site-footer a { color: #fff; }
.site-footer a { display: inline-block; margin: 0 12px 8px 0; font-size: 13px; }
.footer-sitemap { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.35); padding-top: 16px; }
.sitemap-linkbank { columns: 4 14rem; column-gap: 2rem; max-height: 22rem; overflow: auto; }
.sitemap-linkbank a { break-inside: avoid; opacity: .9; }
@media (max-width: 900px) {
  .iracm-top, .nav-links, .content-layout, .dashboard-grid, .quick-access, .cards-grid, .site-footer .grid { display: block; }
  .brand { min-width: 0; padding-block: 18px; }
  .brand-word { font-size: 42px; }
  .barcode { width: 92px; }
  .header-tools { justify-items: start; padding-bottom: 14px; }
  .dropdown { position: static; width: auto; box-shadow: none; }
  .quick-access article, .content-card, .sidebar, .feature-tile { margin-bottom: 14px; }
  .home-hero { min-height: 260px; }
}
