:root {
  --rrm-bg: #fbf6ec;
  --rrm-bg-deep: #f3eadb;
  --rrm-surface: #fffdf8;
  --rrm-surface-strong: #ffffff;
  --rrm-primary: #0e5c5a;
  --rrm-primary-dark: #083f3e;
  --rrm-secondary: #7a2139;
  --rrm-accent: #c9962e;
  --rrm-accent-bright: #e2b34d;
  --rrm-saffron: #e57d25;
  --rrm-text: #202a28;
  --rrm-muted: #66726d;
  --rrm-border: #e5d5b9;
  --rrm-border-strong: #d2bd96;
  --rrm-legal: #f6eceb;
  --rrm-footer: #0b302f;
  --rrm-footer-deep: #071f1f;
  --rrm-white: #ffffff;
  --rrm-shadow-sm: 0 8px 24px rgba(70, 46, 22, 0.08);
  --rrm-shadow-md: 0 20px 54px rgba(62, 39, 18, 0.13);
  --rrm-shadow-lg: 0 32px 80px rgba(35, 36, 25, 0.18);
  --rrm-radius-sm: 12px;
  --rrm-radius-md: 18px;
  --rrm-radius-lg: 28px;
  --rrm-radius-xl: 42px;
  --rrm-container: 1240px;
  --rrm-reading: 800px;
  --rrm-header-height: 84px;
  --rrm-transition: 180ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--rrm-header-height) + 20px);
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--rrm-text);
  background:
    radial-gradient(circle at 5% 8%, rgba(229, 125, 37, 0.08), transparent 24rem),
    radial-gradient(circle at 95% 32%, rgba(14, 92, 90, 0.08), transparent 28rem),
    var(--rrm-bg);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.72;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.rrm-lang-hi {
  font-family: "Noto Sans Devanagari", "Noto Sans", system-ui, sans-serif;
  line-height: 1.86;
}

body.rrm-drawer-open {
  overflow: hidden;
  overscroll-behavior: none;
}

html.rrm-drawer-open {
  overflow: hidden;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--rrm-primary);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.19em;
}

a:hover {
  color: var(--rrm-secondary);
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--rrm-saffron);
  outline-offset: 4px;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  z-index: 10000;
  top: 10px;
  left: 10px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto;
  color: #fff;
  background: var(--rrm-primary-dark);
  border-radius: 10px;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.72em;
  color: var(--rrm-primary-dark);
  font-family: Georgia, "Times New Roman", "Noto Serif Devanagari", serif;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.rrm-lang-hi h1,
.rrm-lang-hi h2,
.rrm-lang-hi h3,
.rrm-lang-hi h4 {
  font-family: "Noto Serif Devanagari", "Noto Sans Devanagari", Georgia, serif;
  line-height: 1.35;
  letter-spacing: 0;
}

h1 { font-size: clamp(2.45rem, 5.2vw, 5.15rem); }
h2 { font-size: clamp(1.85rem, 3.2vw, 3.15rem); }
h3 { font-size: clamp(1.22rem, 1.8vw, 1.62rem); }

p,
ul,
ol {
  margin: 0 0 1.35em;
}

ul,
ol {
  padding-inline-start: 1.3em;
}

.rrm-container {
  width: min(calc(100% - 40px), var(--rrm-container));
  margin-inline: auto;
}

.rrm-container--narrow {
  width: min(calc(100% - 40px), var(--rrm-reading));
}

.rrm-section {
  position: relative;
  padding-block: clamp(62px, 8vw, 118px);
}

.rrm-section--compact {
  padding-block: clamp(42px, 6vw, 76px);
}

.rrm-section--tint {
  background:
    linear-gradient(135deg, rgba(201, 150, 46, 0.08), transparent 48%),
    #f5ecdd;
  border-block: 1px solid rgba(210, 189, 150, 0.65);
}

.rrm-section--green {
  color: #e8f2ed;
  background:
    radial-gradient(circle at 80% 20%, rgba(226, 179, 77, 0.2), transparent 24rem),
    linear-gradient(135deg, var(--rrm-primary-dark), var(--rrm-primary));
}

.rrm-section--green h2,
.rrm-section--green h3,
.rrm-section--green a {
  color: #fff8e7;
}

.rrm-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--rrm-secondary);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.rrm-eyebrow::before {
  width: 30px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--rrm-saffron), var(--rrm-accent));
}

.rrm-lang-hi .rrm-eyebrow {
  letter-spacing: 0.04em;
}

.rrm-lead {
  max-width: 720px;
  color: #4c5955;
  font-size: clamp(1.08rem, 1.4vw, 1.3rem);
  line-height: 1.75;
}

.rrm-skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--rrm-primary-dark);
  border-radius: 10px;
  transform: translateY(-150%);
}

.rrm-skip-link:focus {
  transform: translateY(0);
}

/* Header */
.rrm-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  width: 100%;
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid rgba(210, 189, 150, 0.7);
  box-shadow: 0 10px 32px rgba(51, 37, 22, 0.07);
  backdrop-filter: blur(18px);
}

.rrm-header__ornament {
  height: 4px;
  background: linear-gradient(90deg, var(--rrm-secondary), var(--rrm-saffron) 36%, var(--rrm-accent) 62%, var(--rrm-primary));
}

.rrm-header__inner {
  display: grid;
  grid-template-columns: 176px 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: calc(var(--rrm-header-height) - 4px);
}

.rrm-brand {
  display: inline-flex;
  align-items: center;
  width: 176px;
  text-decoration: none;
}

.rrm-brand img {
  width: 176px;
  height: auto;
}

.rrm-desktop-nav {
  display: flex;
  justify-content: center;
}

.rrm-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.55vw, 25px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.rrm-menu li {
	position: relative;
  margin: 0;
}

.rrm-menu .menu-item-has-children > a::after {
	width: 7px;
	height: 7px;
	margin: -4px 0 0 8px;
	content: "";
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
}

.rrm-desktop-nav .sub-menu {
	position: absolute;
	z-index: 30;
	top: calc(100% - 2px);
	left: 50%;
	display: grid;
	min-width: 218px;
	margin: 0;
	padding: 10px;
	list-style: none;
	background: rgba(255, 253, 248, 0.98);
	border: 1px solid var(--rrm-border);
	border-radius: 18px;
	box-shadow: 0 22px 55px rgba(18, 58, 54, 0.18);
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, 10px);
	transition: opacity 180ms ease, transform 180ms ease;
}

.rrm-desktop-nav .menu-item-has-children:hover > .sub-menu,
.rrm-desktop-nav .menu-item-has-children:focus-within > .sub-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translate(-50%, 0);
}

.rrm-desktop-nav .sub-menu a {
	justify-content: flex-start;
	width: 100%;
	min-height: 42px;
	padding: 9px 12px;
	border-radius: 11px;
}

.rrm-desktop-nav .sub-menu a:hover,
.rrm-desktop-nav .sub-menu a:focus-visible {
	background: var(--rrm-surface-strong);
}

.rrm-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #33423e;
  font-size: 0.9rem;
  font-weight: 720;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.rrm-menu a:hover,
.rrm-menu .current-menu-item > a,
.rrm-menu a[aria-current="page"] {
  color: var(--rrm-secondary);
}

.rrm-menu .current-menu-item > a::after,
.rrm-menu a[aria-current="page"]::after {
  width: 6px;
  height: 6px;
  margin-left: 7px;
  content: "";
  background: var(--rrm-saffron);
  border-radius: 50%;
}

.rrm-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.rrm-language,
.rrm-footer__language {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 12px;
  color: var(--rrm-primary-dark);
  font-weight: 800;
  text-decoration: none;
  border: 1px solid var(--rrm-border);
  border-radius: 999px;
  background: #fff;
}

.rrm-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  color: #172522;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(139, 92, 20, 0.14);
  transition: transform var(--rrm-transition), box-shadow var(--rrm-transition), background var(--rrm-transition);
}

.rrm-button--primary,
.rrm-button--header {
  background: linear-gradient(135deg, var(--rrm-accent-bright), var(--rrm-accent));
  border-color: #bd8826;
}

.rrm-button--header {
  min-height: 44px;
  padding: 10px 17px;
  font-size: 0.88rem;
}

.rrm-button--ghost {
  color: var(--rrm-primary-dark);
  background: rgba(255, 255, 255, 0.74);
  border-color: var(--rrm-border-strong);
  box-shadow: none;
}

.rrm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.rrm-menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 11px;
  background: #fff;
  border: 1px solid var(--rrm-border);
  border-radius: 14px;
  cursor: pointer;
}

.rrm-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--rrm-primary-dark);
  border-radius: 2px;
}

.rrm-drawer {
  position: fixed;
  z-index: 1010;
  top: 0;
  right: 0;
  width: min(90vw, 420px);
  height: 100vh;
  height: 100dvh;
  padding: 22px;
  overflow-y: auto;
  overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
	touch-action: pan-y;
  background: var(--rrm-surface);
  box-shadow: -28px 0 70px rgba(10, 40, 39, 0.24);
  transform: translateX(105%);
  visibility: hidden;
  transition: transform 240ms ease, visibility 240ms step-end;
}

.rrm-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
  transition: transform 240ms ease, visibility 0s;
}

.rrm-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rrm-border);
}

.rrm-drawer__head p {
  margin: 0;
  color: var(--rrm-primary-dark);
  font-size: 1.2rem;
  font-weight: 850;
}

.rrm-drawer__close {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--rrm-primary-dark);
  font-size: 2rem;
  line-height: 1;
  place-items: center;
  background: #fff;
  border: 1px solid var(--rrm-border);
  border-radius: 50%;
  cursor: pointer;
}

.rrm-menu--mobile,
.rrm-mobile-nav .rrm-menu {
  display: grid;
  gap: 4px;
  padding-block: 18px;
}

.rrm-menu--mobile a,
.rrm-mobile-nav .rrm-menu a {
  display: flex;
  justify-content: space-between;
  width: 100%;
  min-height: 52px;
  padding: 12px 10px;
  font-size: 1rem;
  white-space: normal;
  border-bottom: 1px solid #eee3d0;
}

.rrm-mobile-nav .menu-item-has-children > a::after {
	margin-left: auto;
	transition: transform 180ms ease;
}

.rrm-mobile-nav .menu-item-has-children.is-submenu-open > a::after {
	transform: rotate(225deg);
}

.rrm-mobile-nav .sub-menu {
	display: grid;
	gap: 3px;
	margin: 0 0 8px 14px;
	padding: 6px 0 7px 14px;
	list-style: none;
	border-left: 2px solid var(--rrm-accent);
}

.rrm-mobile-nav .sub-menu[hidden] {
	display: none;
}

.rrm-mobile-nav .sub-menu a {
	min-height: 46px;
	color: var(--rrm-primary-dark);
	font-size: 0.94rem;
	background: rgba(255, 255, 255, 0.58);
	border: 0;
	border-radius: 10px;
}

.rrm-prediction__shell {
	position: relative;
	overflow: hidden;
	padding: clamp(24px, 5vw, 52px);
	color: #fffaf0;
	background: linear-gradient(135deg, #0b4a47 0%, #123f3e 54%, #681e2b 100%);
	border: 1px solid rgba(180, 138, 60, 0.7);
	border-radius: clamp(24px, 4vw, 42px);
	box-shadow: 0 30px 80px rgba(31, 61, 57, 0.24);
}

.rrm-prediction__shell::before {
	position: absolute;
	inset: 0;
	content: "";
	pointer-events: none;
	background: radial-gradient(circle at 82% 10%, rgba(231, 180, 74, 0.28), transparent 31%), repeating-linear-gradient(45deg, transparent 0 18px, rgba(255, 255, 255, 0.025) 18px 19px);
}

.rrm-prediction__head,
.rrm-prediction__numbers,
.rrm-prediction__note {
	position: relative;
}

.rrm-prediction__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
}

.rrm-prediction__head h2 {
	max-width: 760px;
	margin-bottom: 0;
	color: #fffaf0;
}

.rrm-prediction__head .rrm-eyebrow {
	color: #f1c66d;
}

.rrm-prediction__timer {
	display: grid;
	min-width: 126px;
	padding: 12px 16px;
	text-align: center;
	background: rgba(255, 255, 255, 0.09);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 16px;
}

.rrm-prediction__timer span {
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.rrm-prediction__timer strong {
	color: #f3ca72;
	font-size: 1.45rem;
}

.rrm-prediction__numbers {
	display: flex;
	justify-content: center;
	gap: clamp(14px, 4vw, 32px);
	margin: clamp(28px, 5vw, 52px) 0 24px;
}

.rrm-prediction__numbers span {
	display: grid;
	width: clamp(82px, 13vw, 132px);
	aspect-ratio: 1;
	color: #4e1720;
	font-family: Georgia, serif;
	font-size: clamp(2.6rem, 7vw, 5rem);
	font-weight: 900;
	place-items: center;
	background: radial-gradient(circle at 35% 28%, #fff8da 0%, #efc76d 55%, #b98224 100%);
	border: 3px solid rgba(255, 249, 218, 0.72);
	border-radius: 50%;
	box-shadow: inset 0 -10px 20px rgba(102, 54, 10, 0.2), 0 15px 34px rgba(0, 0, 0, 0.24);
}

.rrm-prediction__note {
	max-width: 780px;
	margin: 0 auto;
	color: #f9eed9;
	text-align: center;
}

@media (max-width: 620px) {
	.rrm-prediction__head {
		align-items: stretch;
		flex-direction: column;
	}

	.rrm-prediction__timer {
		width: 100%;
	}

	.rrm-prediction__numbers {
		gap: 10px;
	}
}

.rrm-drawer__actions {
  display: grid;
  gap: 12px;
  padding: 18px 0 max(28px, env(safe-area-inset-bottom));
}

.rrm-button--drawer,
.rrm-language--drawer {
  width: 100%;
}

.rrm-overlay {
  position: fixed;
  z-index: 1005;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  background: rgba(5, 35, 34, 0.54);
  border: 0;
  opacity: 0;
  pointer-events: none;
	touch-action: none;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms step-end;
}

.rrm-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transition: opacity 220ms ease, visibility 0s;
}

/* Hero and page composition */
.rrm-home-hero,
.rrm-page-hero {
  overflow: hidden;
}

.rrm-home-hero::before,
.rrm-page-hero::before {
  position: absolute;
  z-index: -1;
  top: 4%;
  right: -8%;
  width: 34vw;
  min-width: 360px;
  aspect-ratio: 1;
  content: "";
  background: repeating-radial-gradient(circle at 0 100%, transparent 0 21px, rgba(201, 150, 46, 0.12) 22px 24px);
  border-radius: 50%;
}

.rrm-hero__grid,
.rrm-page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  align-items: center;
  gap: clamp(34px, 6vw, 84px);
}

.rrm-home-hero h1 {
  max-width: 770px;
}

.rrm-notice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  max-width: 680px;
  margin-top: 26px;
  padding: 17px 18px;
  color: #5f2536;
  background: var(--rrm-legal);
  border: 1px solid #dfc3c5;
  border-radius: var(--rrm-radius-md);
}

.rrm-notice::before {
  display: grid;
  width: 34px;
  height: 34px;
  color: #fff;
  font-weight: 900;
  content: "i";
  background: var(--rrm-secondary);
  border-radius: 50%;
  place-items: center;
}

.rrm-notice p {
  margin: 0;
}

.rrm-arch-frame {
  position: relative;
  margin: 0;
  padding: 12px;
  background: linear-gradient(145deg, #fff, #efe0c7);
  border: 1px solid var(--rrm-border-strong);
  border-radius: 46% 46% var(--rrm-radius-lg) var(--rrm-radius-lg) / 24% 24% var(--rrm-radius-lg) var(--rrm-radius-lg);
  box-shadow: var(--rrm-shadow-lg);
}

.rrm-arch-frame::after {
  position: absolute;
  inset: 18px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: inherit;
  pointer-events: none;
}

.rrm-arch-frame img {
  width: 100%;
  border-radius: 44% 44% 18px 18px / 22% 22% 18px 18px;
}

.rrm-page-hero h1 {
  font-size: clamp(2.35rem, 4.5vw, 4.55rem);
}

.rrm-breadcrumb {
  padding-top: 24px;
}

.rrm-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: var(--rrm-muted);
  font-size: 0.88rem;
  list-style: none;
}

.rrm-breadcrumb li + li::before {
  margin-right: 8px;
  color: var(--rrm-accent);
  content: "◆";
  font-size: 0.58em;
}

/* Cards and content */
.rrm-bento {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
}

.rrm-card {
  position: relative;
  max-width: 100%;
  padding: clamp(24px, 3vw, 38px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--rrm-border);
  border-radius: var(--rrm-radius-lg);
  box-shadow: var(--rrm-shadow-sm);
}

.rrm-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 72px;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--rrm-secondary), var(--rrm-saffron), var(--rrm-accent));
  border-radius: 0 0 6px 0;
}

.rrm-card p:last-child,
.rrm-card ul:last-child {
  margin-bottom: 0;
}

.rrm-card--wide { grid-column: span 7; }
.rrm-card--medium { grid-column: span 5; }
.rrm-card--third { grid-column: span 4; }
.rrm-card--half { grid-column: span 6; }
.rrm-card--green {
  color: #e8f1ed;
  background: linear-gradient(145deg, var(--rrm-primary-dark), var(--rrm-primary));
  border-color: #236e69;
}
.rrm-card--green h2,
.rrm-card--green h3,
.rrm-card--green a { color: #fff8e8; }
.rrm-card--maroon {
  color: #f8edef;
  background: linear-gradient(145deg, #5d182d, var(--rrm-secondary));
  border-color: #8f3c53;
}
.rrm-card--maroon h2,
.rrm-card--maroon h3,
.rrm-card--maroon a { color: #fff7e5; }
.rrm-card--gold { background: linear-gradient(145deg, #fff9e9, #f3e3bd); }

.rrm-topic-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  text-decoration: none;
}

.rrm-editorial {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(34px, 7vw, 92px);
}

.rrm-editorial--reverse .rrm-editorial__media { order: 2; }
.rrm-editorial--reverse .rrm-editorial__copy { order: 1; }

.rrm-editorial__media {
  position: relative;
  margin: 0;
}

.rrm-editorial__media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border: 10px solid #fff;
  border-radius: var(--rrm-radius-xl) var(--rrm-radius-lg) var(--rrm-radius-xl) var(--rrm-radius-lg);
  box-shadow: var(--rrm-shadow-md);
}

.rrm-editorial__media::after {
  position: absolute;
  z-index: -1;
  right: -18px;
  bottom: -18px;
  width: 55%;
  height: 55%;
  content: "";
  background: repeating-linear-gradient(45deg, rgba(201, 150, 46, 0.34) 0 2px, transparent 2px 11px);
  border-radius: var(--rrm-radius-lg);
}

.rrm-copy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.rrm-prose {
  width: min(100%, var(--rrm-reading));
  margin-inline: auto;
}

.rrm-prose > p,
.rrm-prose > ul,
.rrm-prose > ol {
  color: #3f4b47;
}

.rrm-prose h2 {
  margin-top: 1.65em;
}

.rrm-prose h3 {
  margin-top: 1.4em;
}

.rrm-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 22px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.rrm-checklist li {
  position: relative;
  margin: 0;
  padding: 14px 15px 14px 46px;
  background: #fff;
  border: 1px solid var(--rrm-border);
  border-radius: var(--rrm-radius-sm);
}

.rrm-checklist li::before {
  position: absolute;
  top: 15px;
  left: 15px;
  display: grid;
  width: 22px;
  height: 22px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
  content: "✓";
  background: var(--rrm-primary);
  border-radius: 50%;
  place-items: center;
}

.rrm-card .rrm-checklist {
  grid-template-columns: 1fr;
}

.rrm-safety-panel {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  gap: 28px;
  padding: clamp(26px, 4vw, 50px);
  color: #f5eee0;
  background:
    radial-gradient(circle at 8% 20%, rgba(226, 179, 77, 0.22), transparent 12rem),
    linear-gradient(135deg, #143f3d, var(--rrm-primary-dark));
  border: 1px solid #2d716b;
  border-radius: var(--rrm-radius-xl);
  box-shadow: var(--rrm-shadow-md);
}

.rrm-safety-panel__mark {
  display: grid;
  width: 120px;
  height: 120px;
  color: var(--rrm-primary-dark);
  font-family: Georgia, serif;
  font-size: 2.15rem;
  font-weight: 900;
  background: linear-gradient(145deg, #f8d77c, var(--rrm-accent));
  border-radius: 44% 44% 50% 50% / 56% 56% 44% 44%;
  place-items: center;
}

.rrm-safety-panel h2,
.rrm-safety-panel h3,
.rrm-safety-panel a {
  color: #fff8e7;
}

.rrm-safety-panel .rrm-checklist li {
  color: var(--rrm-text);
}

.rrm-table-wrap {
  max-width: 100%;
  margin: 26px 0;
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--rrm-border);
  border-radius: var(--rrm-radius-md);
  box-shadow: var(--rrm-shadow-sm);
}

.rrm-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.rrm-table th,
.rrm-table td {
  padding: 15px 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #eee3d0;
}

.rrm-table th {
  color: var(--rrm-primary-dark);
  background: #f6ecdc;
}

.rrm-table tr:last-child td {
  border-bottom: 0;
}

/* FAQ */
.rrm-faq__list {
  display: grid;
  gap: 12px;
}

.rrm-faq__item {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--rrm-border);
  border-radius: var(--rrm-radius-md);
  box-shadow: var(--rrm-shadow-sm);
}

.rrm-faq__item summary {
  position: relative;
  padding: 20px 58px 20px 22px;
  color: var(--rrm-primary-dark);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.rrm-faq__item summary::-webkit-details-marker { display: none; }
.rrm-faq__item summary::after {
  position: absolute;
  top: 50%;
  right: 20px;
  display: grid;
  width: 28px;
  height: 28px;
  content: "+";
  background: #f6ead4;
  border-radius: 50%;
  transform: translateY(-50%);
  place-items: center;
}
.rrm-faq__item[open] summary::after { content: "−"; }
.rrm-faq__item div { padding: 0 22px 20px; color: #4c5854; }
.rrm-faq__item div p { margin: 0; }

.rrm-related {
  width: min(100%, var(--rrm-container));
  margin: clamp(40px, 7vw, 84px) auto;
}
.rrm-related ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.rrm-related li { margin: 0; }
.rrm-related a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 12px 15px;
  font-weight: 760;
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--rrm-border);
  border-radius: var(--rrm-radius-sm);
}

/* Search, archives and error pages */
.rrm-main { min-height: 55vh; }
.rrm-listing { display: grid; gap: 18px; }
.rrm-listing article {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--rrm-border);
  border-radius: var(--rrm-radius-md);
  box-shadow: var(--rrm-shadow-sm);
}
.rrm-listing article h2 { font-size: 1.55rem; }
.rrm-search-form {
  display: flex;
  gap: 10px;
  margin: 24px 0;
}
.rrm-search-form label { flex: 1; }
.rrm-search-form input[type="search"] {
  width: 100%;
  min-height: 52px;
  padding: 12px 16px;
  color: var(--rrm-text);
  background: #fff;
  border: 1px solid var(--rrm-border-strong);
  border-radius: 999px;
}
.rrm-error-code {
  margin: 0;
  color: rgba(14, 92, 90, 0.12);
  font-family: Georgia, serif;
  font-size: clamp(8rem, 22vw, 17rem);
  font-weight: 900;
  line-height: 0.8;
}

/* Footer */
.rrm-footer {
  position: relative;
  padding-top: 38px;
  overflow: hidden;
  color: #d9e8e3;
  background:
    radial-gradient(circle at 88% 10%, rgba(201, 150, 46, 0.18), transparent 25rem),
    linear-gradient(150deg, var(--rrm-footer), var(--rrm-footer-deep));
}
.rrm-footer__pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 420px;
  height: 420px;
  background: repeating-radial-gradient(circle at 100% 0, transparent 0 22px, rgba(255, 255, 255, 0.045) 23px 25px);
  pointer-events: none;
}
.rrm-footer h2,
.rrm-footer h3 { color: #fff7e5; }
.rrm-footer a { color: #f4d68d; }
.rrm-footer a:hover { color: #fff; }
.rrm-footer__notices {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 46px;
}
.rrm-footer__notices span {
  display: flex;
  align-items: center;
  min-height: 70px;
  padding: 14px 16px;
  color: #22312d;
  font-size: 0.88rem;
  font-weight: 720;
  background: #fff7e7;
  border: 1px solid rgba(244, 214, 141, 0.55);
  border-radius: var(--rrm-radius-md);
}
.rrm-footer__notices strong {
  margin-right: 7px;
  color: var(--rrm-secondary);
  font-size: 1.2rem;
}
.rrm-footer__grid {
  display: grid;
  grid-template-columns: minmax(250px, 1.55fr) repeat(3, minmax(150px, 0.8fr));
  gap: clamp(30px, 5vw, 64px);
  padding-bottom: 52px;
}
.rrm-footer__brand img {
  width: 190px;
  margin-bottom: 22px;
  filter: brightness(0) invert(1) sepia(0.2);
}
.rrm-footer__brand h2,
.rrm-footer__nav h2 {
  margin-bottom: 16px;
  font-family: inherit;
  font-size: 1rem;
  letter-spacing: 0.02em;
}
.rrm-footer__brand p { color: #bcd0ca; font-size: 0.94rem; }
.rrm-footer__language {
  color: #20322f !important;
  background: #fff4d9;
  border-color: #d9bb71;
}
.rrm-footer__nav ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.rrm-footer__nav li { margin: 0; }
.rrm-footer__nav a {
  display: inline-flex;
  padding-block: 3px;
  color: #c9dad5;
  font-size: 0.92rem;
  text-decoration: none;
}
.rrm-footer__responsible {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(320px, 1.2fr) auto;
  align-items: center;
  gap: 32px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--rrm-radius-lg);
}
.rrm-footer__responsible .rrm-eyebrow { color: #f4d68d; }
.rrm-footer__responsible h2 { margin: 0; font-size: clamp(1.35rem, 2vw, 1.85rem); }
.rrm-footer__responsible p { margin: 0; color: #c7d8d3; font-size: 0.94rem; }
.rrm-footer__responsible > a { font-weight: 800; text-align: center; }
.rrm-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 38px;
  padding: 24px 0 max(24px, env(safe-area-inset-bottom));
  color: #a9c1ba;
  font-size: 0.82rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.rrm-footer__bottom p { margin: 0; }

@media (hover: hover) and (pointer: fine) {
  .rrm-card,
  .rrm-button,
  .rrm-related a {
    transition: transform var(--rrm-transition), box-shadow var(--rrm-transition), border-color var(--rrm-transition);
  }
  .rrm-card:hover { transform: translateY(-4px); box-shadow: var(--rrm-shadow-md); border-color: var(--rrm-border-strong); }
  .rrm-button:hover { color: #172522; transform: translateY(-2px); box-shadow: 0 16px 34px rgba(139, 92, 20, 0.2); }
  .rrm-related a:hover { transform: translateY(-2px); border-color: var(--rrm-accent); }
}

@media (max-width: 1180px) {
  .rrm-header__inner { grid-template-columns: 150px 1fr auto; gap: 14px; }
  .rrm-brand, .rrm-brand img { width: 150px; }
  .rrm-menu { gap: 12px; }
  .rrm-menu a { font-size: 0.82rem; }
}

@media (max-width: 1024px) {
  :root { --rrm-header-height: 76px; }
  .rrm-header__inner { grid-template-columns: 1fr auto; }
  .rrm-desktop-nav { display: none; }
  .rrm-button--header { display: none; }
  .rrm-menu-toggle { display: block; }
  .rrm-hero__grid,
  .rrm-page-hero__grid { grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr); gap: 36px; }
  .rrm-card--wide,
  .rrm-card--medium,
  .rrm-card--third { grid-column: span 6; }
  .rrm-footer__notices { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rrm-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rrm-footer__brand { grid-column: 1 / -1; max-width: 680px; }
  .rrm-footer__responsible { grid-template-columns: 1fr 1.4fr; }
  .rrm-footer__responsible > a { grid-column: 1 / -1; justify-self: start; }
}

@media (max-width: 768px) {
  .rrm-container { width: min(calc(100% - 30px), var(--rrm-container)); }
  .rrm-container--narrow { width: min(calc(100% - 30px), var(--rrm-reading)); }
  .rrm-header__inner { min-height: 72px; }
  .rrm-brand, .rrm-brand img { width: 148px; }
  .rrm-header__actions > .rrm-language { display: none; }
  .rrm-hero__grid,
  .rrm-page-hero__grid,
  .rrm-editorial { grid-template-columns: 1fr; }
  .rrm-home-hero__copy,
  .rrm-page-hero__copy { order: 1; }
  .rrm-home-hero__media,
  .rrm-page-hero__media { order: 2; width: min(100%, 620px); margin-inline: auto; }
  .rrm-editorial--reverse .rrm-editorial__media,
  .rrm-editorial--reverse .rrm-editorial__copy { order: initial; }
  .rrm-bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rrm-card--wide,
  .rrm-card--medium,
  .rrm-card--third,
  .rrm-card--half { grid-column: span 1; }
  .rrm-copy-grid { grid-template-columns: 1fr; }
  .rrm-related ul { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rrm-safety-panel { grid-template-columns: 84px 1fr; }
  .rrm-safety-panel__mark { width: 84px; height: 84px; font-size: 1.6rem; }
  .rrm-footer__responsible { grid-template-columns: 1fr; }
  .rrm-footer__responsible > a { grid-column: auto; }
  .rrm-footer__bottom { flex-direction: column; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .rrm-section { padding-block: 58px; }
  .rrm-bento,
  .rrm-checklist,
  .rrm-related ul,
  .rrm-footer__notices,
  .rrm-footer__grid { grid-template-columns: 1fr; }
  .rrm-card--wide,
  .rrm-card--medium,
  .rrm-card--third,
  .rrm-card--half { grid-column: auto; }
  .rrm-actions { display: grid; grid-template-columns: 1fr; }
  .rrm-button { width: 100%; white-space: normal; }
  .rrm-notice { grid-template-columns: 1fr; }
  .rrm-arch-frame { padding: 8px; border-radius: 34% 34% 18px 18px / 16% 16% 18px 18px; }
  .rrm-arch-frame img { border-radius: 32% 32% 12px 12px / 14% 14% 12px 12px; }
  .rrm-safety-panel { grid-template-columns: 1fr; }
  .rrm-footer__brand { grid-column: auto; }
  .rrm-footer__notices span { min-height: 58px; }
}

@media (max-width: 390px) {
  .rrm-container { width: min(calc(100% - 24px), var(--rrm-container)); }
  .rrm-container--narrow { width: min(calc(100% - 24px), var(--rrm-reading)); }
  .rrm-brand, .rrm-brand img { width: 132px; }
  .rrm-header__actions { gap: 6px; }
  .rrm-menu-toggle { width: 44px; height: 44px; }
  .rrm-drawer { width: 94vw; padding: 18px; }
  .rrm-card { padding: 22px; border-radius: 20px; }
}

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

@media print {
  .rrm-header,
  .rrm-footer,
  .rrm-actions,
  .rrm-related { display: none !important; }
  body { color: #000; background: #fff; }
}
