:root {
  --rbs-cream: #f8f4ec;
  --rbs-cream-soft: #f1ebdd;
  --rbs-ink: #1a1a1a;
  --rbs-ink-soft: #2a2a2a;
  --rbs-ink-muted: #4a4a4a;
  --rbs-gold: #a78a47;
  --rbs-gold-soft: #c4ab73;
  --rbs-border: #d9d0bb;
  --rbs-divider: #e2dac4;
  --rbs-bg: #fbf8f1;
  --rbs-card: #ffffff;
  --rbs-shadow: 0 1px 2px rgba(26, 26, 26, 0.05);
  --rbs-shadow-card: 0 2px 8px rgba(26, 26, 26, 0.06);
  --rbs-font-serif: 'Lora', Georgia, 'Times New Roman', serif;
  --rbs-font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --rbs-radius: 6px;
  --rbs-radius-lg: 10px;
  --rbs-max: 1180px;
  --rbs-gutter: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--rbs-font-sans);
  color: var(--rbs-ink-soft);
  background-color: var(--rbs-bg);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--rbs-font-serif);
  color: var(--rbs-ink);
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 0.6em;
}

h1 { font-size: 2.4rem; letter-spacing: -0.01em; }
h2 { font-size: 1.65rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }

p {
  margin: 0 0 1em;
}

a {
  color: var(--rbs-gold);
  text-decoration: none;
  transition: color .18s ease;
}

a:hover {
  color: var(--rbs-ink);
  text-decoration: underline;
}

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

.container {
  width: 100%;
  max-width: var(--rbs-max);
  margin: 0 auto;
  padding: 0 var(--rbs-gutter);
}

.site-header {
  background: var(--rbs-cream);
  border-bottom: 1px solid var(--rbs-border);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-decoration: none;
}

.brand-name {
  font-family: var(--rbs-font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--rbs-ink);
  letter-spacing: 0.01em;
}

.brand-tag {
  font-size: 0.75rem;
  color: var(--rbs-ink-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 2px;
}

.brand:hover .brand-name {
  color: var(--rbs-gold);
}

.brand:hover {
  text-decoration: none;
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}

.nav-center a {
  font-size: 0.95rem;
  color: var(--rbs-ink-soft);
  font-weight: 500;
  padding: 6px 2px;
  border-bottom: 1px solid transparent;
}

.nav-center a:hover,
.nav-center a.active {
  color: var(--rbs-gold);
  text-decoration: none;
  border-bottom-color: var(--rbs-gold);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--rbs-ink);
  color: var(--rbs-cream);
  border-radius: var(--rbs-radius);
  font-size: 0.9rem;
  font-weight: 500;
  min-height: 44px;
  border: 1px solid var(--rbs-ink);
}

.nav-cta:hover {
  background: var(--rbs-gold);
  border-color: var(--rbs-gold);
  color: var(--rbs-cream);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--rbs-border);
  border-radius: var(--rbs-radius);
  padding: 8px 12px;
  cursor: pointer;
  color: var(--rbs-ink);
  font-size: 1.4rem;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.hero {
  position: relative;
  min-height: 560px;
  background-color: var(--rbs-ink);
  background-image: linear-gradient(135deg, rgba(26,26,26,0.78) 0%, rgba(26,26,26,0.55) 100%), url('../img/home-hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  color: var(--rbs-cream);
}

.hero-inner {
  width: 100%;
  max-width: var(--rbs-max);
  margin: 0 auto;
  padding: 80px var(--rbs-gutter);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-text h1 {
  color: var(--rbs-cream);
  font-size: 2.8rem;
  line-height: 1.18;
  margin-bottom: 18px;
}

.hero-text p {
  font-size: 1.1rem;
  color: rgba(248, 244, 236, 0.88);
  margin-bottom: 28px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--rbs-radius);
  font-size: 0.95rem;
  font-weight: 500;
  font-family: var(--rbs-font-sans);
  cursor: pointer;
  border: 1px solid transparent;
  min-height: 44px;
  text-align: center;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.btn-primary {
  background: var(--rbs-gold);
  color: var(--rbs-ink);
  border-color: var(--rbs-gold);
}

.btn-primary:hover {
  background: var(--rbs-cream);
  color: var(--rbs-ink);
  border-color: var(--rbs-cream);
  text-decoration: none;
}

.btn-secondary {
  background: transparent;
  color: var(--rbs-cream);
  border-color: var(--rbs-cream);
}

.btn-secondary:hover {
  background: var(--rbs-cream);
  color: var(--rbs-ink);
  text-decoration: none;
}

.btn-ink {
  background: var(--rbs-ink);
  color: var(--rbs-cream);
  border-color: var(--rbs-ink);
}

.btn-ink:hover {
  background: var(--rbs-gold);
  color: var(--rbs-ink);
  border-color: var(--rbs-gold);
  text-decoration: none;
}

.hero-meta {
  background: rgba(248, 244, 236, 0.07);
  border: 1px solid rgba(248, 244, 236, 0.22);
  border-radius: var(--rbs-radius-lg);
  padding: 26px;
  backdrop-filter: blur(2px);
}

.hero-meta h3 {
  color: var(--rbs-cream);
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.hero-meta ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-meta li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.92rem;
  color: rgba(248, 244, 236, 0.85);
  border-bottom: 1px solid rgba(248, 244, 236, 0.15);
}

.hero-meta li:last-child {
  border-bottom: none;
}

.hero-meta i {
  color: var(--rbs-gold-soft);
  margin-top: 3px;
}

.section {
  padding: 80px 0;
}

.section-tight {
  padding: 56px 0;
}

.section-alt {
  background: var(--rbs-cream);
  border-top: 1px solid var(--rbs-divider);
  border-bottom: 1px solid var(--rbs-divider);
}

.section-head {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rbs-gold);
  font-weight: 600;
  margin-bottom: 12px;
}

.section-head h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}

.section-head p {
  color: var(--rbs-ink-muted);
  font-size: 1.05rem;
  margin: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}

.about-text p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--rbs-ink-soft);
}

.about-stats {
  background: var(--rbs-card);
  border: 1px solid var(--rbs-border);
  border-radius: var(--rbs-radius-lg);
  padding: 28px;
  box-shadow: var(--rbs-shadow-card);
}

.about-stats h3 {
  font-size: 1.15rem;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--rbs-divider);
  padding-bottom: 12px;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px dashed var(--rbs-divider);
  font-size: 0.95rem;
}

.stat-row:last-child {
  border-bottom: none;
}

.stat-row strong {
  font-family: var(--rbs-font-serif);
  color: var(--rbs-gold);
  font-size: 1.15rem;
}

.stat-note {
  font-size: 0.75rem;
  color: var(--rbs-ink-muted);
  font-style: italic;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--rbs-divider);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.article-card {
  background: var(--rbs-card);
  border: 1px solid var(--rbs-border);
  border-radius: var(--rbs-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}

.article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(26, 26, 26, 0.09);
}

.card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  background-color: var(--rbs-cream-soft);
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--rbs-divider);
}

.card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-meta {
  font-size: 0.78rem;
  color: var(--rbs-ink-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.card-body h3 {
  font-size: 1.15rem;
  line-height: 1.35;
  margin-bottom: 10px;
}

.card-body h3 a {
  color: var(--rbs-ink);
}

.card-body h3 a:hover {
  color: var(--rbs-gold);
  text-decoration: none;
}

.card-excerpt {
  font-size: 0.95rem;
  color: var(--rbs-ink-muted);
  margin-bottom: 16px;
  flex: 1;
}

.card-read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--rbs-gold);
  font-weight: 500;
  align-self: flex-start;
}

.card-read:hover {
  text-decoration: none;
  color: var(--rbs-ink);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.mission-card {
  padding: 28px;
  background: var(--rbs-bg);
  border-left: 3px solid var(--rbs-gold);
  border-radius: 0 var(--rbs-radius) var(--rbs-radius) 0;
}

.mission-card i {
  font-size: 1.6rem;
  color: var(--rbs-gold);
  margin-bottom: 14px;
  display: block;
}

.mission-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.mission-card p {
  font-size: 0.95rem;
  color: var(--rbs-ink-muted);
  margin: 0;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.adv-item {
  text-align: left;
}

.adv-item .adv-num {
  font-family: var(--rbs-font-serif);
  font-size: 2rem;
  color: var(--rbs-gold);
  display: block;
  margin-bottom: 8px;
  line-height: 1;
}

.adv-item h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.adv-item p {
  font-size: 0.92rem;
  color: var(--rbs-ink-muted);
  margin: 0;
}

.closing-cta {
  background: var(--rbs-ink);
  color: var(--rbs-cream);
  padding: 64px 0;
  text-align: center;
}

.closing-cta h2 {
  color: var(--rbs-cream);
  font-size: 2rem;
  max-width: 680px;
  margin: 0 auto 14px;
}

.closing-cta p {
  color: rgba(248, 244, 236, 0.82);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 28px;
}

.closing-cta .hero-actions {
  justify-content: center;
}

.article-page main {
  padding: 56px 0 80px;
}

.article-shell {
  max-width: 780px;
  margin: 0 auto;
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--rbs-ink-muted);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: var(--rbs-ink-muted);
}

.breadcrumb a:hover {
  color: var(--rbs-gold);
  text-decoration: none;
}

.article-header {
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rbs-divider);
}

.article-header h1 {
  font-size: 2.3rem;
  line-height: 1.22;
  margin-bottom: 14px;
}

.article-byline {
  font-size: 0.88rem;
  color: var(--rbs-ink-muted);
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.article-hero-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: var(--rbs-cream-soft);
  background-size: cover;
  background-position: center;
  border-radius: var(--rbs-radius-lg);
  margin-bottom: 36px;
}

.article-body p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--rbs-ink-soft);
  margin-bottom: 1.2em;
}

.article-body h2 {
  margin-top: 2em;
  font-size: 1.6rem;
  padding-top: 16px;
  border-top: 1px solid var(--rbs-divider);
}

.article-body h2:first-of-type {
  margin-top: 1.2em;
  border-top: none;
  padding-top: 0;
}

.article-body h3 {
  margin-top: 1.6em;
  font-size: 1.2rem;
}

.article-body ul,
.article-body ol {
  padding-left: 24px;
  margin: 0 0 1.2em;
}

.article-body li {
  margin-bottom: 8px;
  line-height: 1.8;
  color: var(--rbs-ink-soft);
}

.article-body blockquote {
  border-left: 3px solid var(--rbs-gold);
  background: var(--rbs-cream);
  padding: 16px 22px;
  margin: 1.4em 0;
  font-style: italic;
  color: var(--rbs-ink-soft);
}

.article-nav {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0;
  margin-top: 48px;
  border-top: 1px solid var(--rbs-divider);
  border-bottom: 1px solid var(--rbs-divider);
  flex-wrap: wrap;
}

.article-nav a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.92rem;
  color: var(--rbs-ink-soft);
  flex: 1 1 0;
  min-width: 200px;
}

.article-nav a:hover {
  color: var(--rbs-gold);
  text-decoration: none;
}

.article-nav .nav-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rbs-gold);
}

.article-nav .nav-next {
  text-align: right;
}

.list-shell {
  max-width: 1080px;
  margin: 0 auto;
}

.list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.about-page-content,
.legal-page-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-page-content h1 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.legal-page-content .last-updated {
  font-size: 0.88rem;
  color: var(--rbs-ink-muted);
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--rbs-divider);
}

.legal-page-content h2 {
  margin-top: 2.2em;
  font-size: 1.4rem;
}

.legal-page-content h2:first-of-type {
  margin-top: 1em;
}

.legal-page-content p,
.legal-page-content li {
  font-size: 1rem;
  line-height: 1.8;
}

.legal-page-content ul {
  padding-left: 22px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: start;
}

.contact-form {
  background: var(--rbs-card);
  border: 1px solid var(--rbs-border);
  border-radius: var(--rbs-radius-lg);
  padding: 32px;
  box-shadow: var(--rbs-shadow-card);
}

.contact-form h2 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.contact-form .intro {
  color: var(--rbs-ink-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--rbs-ink);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--rbs-border);
  border-radius: var(--rbs-radius);
  background: var(--rbs-bg);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--rbs-ink-soft);
  min-height: 44px;
  transition: border-color .18s ease, background .18s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--rbs-gold);
  background: var(--rbs-card);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: var(--rbs-ink-muted);
  line-height: 1.55;
}

.form-consent input {
  width: auto;
  margin-top: 3px;
  min-height: auto;
}

.form-status {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: var(--rbs-radius);
  background: var(--rbs-cream);
  border: 1px solid var(--rbs-gold);
  color: var(--rbs-ink);
  font-size: 0.92rem;
  display: none;
}

.form-status.visible {
  display: block;
}

.contact-side h2 {
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.contact-info-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--rbs-divider);
}

.contact-info-list li:last-child {
  border-bottom: none;
}

.contact-info-list i {
  color: var(--rbs-gold);
  font-size: 1.2rem;
  margin-top: 2px;
  min-width: 22px;
}

.contact-info-list strong {
  display: block;
  font-size: 0.82rem;
  color: var(--rbs-ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
  font-weight: 500;
}

.contact-info-list span,
.contact-info-list a {
  color: var(--rbs-ink-soft);
  font-size: 0.98rem;
  line-height: 1.5;
}

.contact-info-list a:hover {
  color: var(--rbs-gold);
}

.map-wrap {
  border-radius: var(--rbs-radius-lg);
  overflow: hidden;
  border: 1px solid var(--rbs-border);
  height: 360px;
  background: var(--rbs-cream-soft);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-external {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.88rem;
  color: var(--rbs-gold);
}

.site-footer {
  background: var(--rbs-cream);
  border-top: 1px solid var(--rbs-border);
  padding: 56px 0 28px;
  color: var(--rbs-ink-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 48px;
  margin-bottom: 36px;
}

.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rbs-ink-muted);
  margin-bottom: 16px;
  font-weight: 600;
  font-family: var(--rbs-font-sans);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 10px;
  font-size: 0.92rem;
}

.footer-col a {
  color: var(--rbs-ink-soft);
}

.footer-col a:hover {
  color: var(--rbs-gold);
  text-decoration: none;
}

.footer-contact-info {
  font-size: 0.92rem;
  line-height: 1.7;
}

.footer-contact-info .addr {
  margin-bottom: 12px;
  color: var(--rbs-ink-muted);
}

.footer-brand {
  font-family: var(--rbs-font-serif);
  font-size: 1.15rem;
  color: var(--rbs-ink);
  margin-bottom: 4px;
  display: block;
  font-weight: 600;
}

.footer-brand-sub {
  font-size: 0.85rem;
  color: var(--rbs-ink-muted);
  margin-bottom: 16px;
}

.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid var(--rbs-divider);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--rbs-ink-muted);
}

.cookie-link-inline {
  background: none;
  border: none;
  padding: 0;
  color: var(--rbs-ink-soft);
  cursor: pointer;
  font-size: 0.92rem;
  font-family: inherit;
  text-align: left;
}

.cookie-link-inline:hover {
  color: var(--rbs-gold);
  text-decoration: underline;
}

.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--rbs-ink);
  color: var(--rbs-cream);
  padding: 18px 24px;
  z-index: 1000;
  display: none;
  border-top: 2px solid var(--rbs-gold);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.18);
}

.cookie-bar.visible {
  display: block;
}

.cookie-bar-inner {
  max-width: var(--rbs-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-bar-text {
  flex: 1 1 380px;
  font-size: 0.9rem;
  line-height: 1.55;
}

.cookie-bar-text a {
  color: var(--rbs-gold-soft);
  text-decoration: underline;
}

.cookie-bar-text a:hover {
  color: var(--rbs-cream);
}

.cookie-bar-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 9px 16px;
  border-radius: var(--rbs-radius);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  border: 1px solid var(--rbs-cream);
  background: transparent;
  color: var(--rbs-cream);
  min-height: 40px;
  transition: background .18s, color .18s;
}

.cookie-btn:hover {
  background: var(--rbs-cream);
  color: var(--rbs-ink);
}

.cookie-btn-primary {
  background: var(--rbs-gold);
  border-color: var(--rbs-gold);
  color: var(--rbs-ink);
}

.cookie-btn-primary:hover {
  background: var(--rbs-cream);
  border-color: var(--rbs-cream);
}

.cookie-panel-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, 0.55);
  z-index: 1100;
  display: none;
  align-items: flex-end;
  justify-content: center;
}

.cookie-panel-overlay.visible {
  display: flex;
}

.cookie-panel {
  background: var(--rbs-bg);
  width: 100%;
  max-width: 880px;
  max-height: 88vh;
  overflow-y: auto;
  border-radius: var(--rbs-radius-lg) var(--rbs-radius-lg) 0 0;
  padding: 28px;
  border: 1px solid var(--rbs-border);
}

.cookie-panel h2 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.cookie-panel-intro {
  font-size: 0.92rem;
  color: var(--rbs-ink-muted);
  line-height: 1.6;
  margin-bottom: 22px;
}

.cookie-category {
  border: 1px solid var(--rbs-border);
  border-radius: var(--rbs-radius);
  margin-bottom: 14px;
  background: var(--rbs-card);
}

.cookie-cat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  gap: 16px;
}

.cookie-cat-title {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 2px;
}

.cookie-cat-title strong {
  font-size: 1rem;
  color: var(--rbs-ink);
}

.cookie-cat-title span {
  font-size: 0.82rem;
  color: var(--rbs-ink-muted);
}

.cookie-cat-controls {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cookie-cat-toggle {
  display: inline-flex;
  align-items: center;
  position: relative;
  width: 44px;
  height: 24px;
  background: var(--rbs-divider);
  border-radius: 12px;
  cursor: pointer;
  transition: background .18s ease;
  border: 0;
  padding: 0;
}

.cookie-cat-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: var(--rbs-cream);
  border-radius: 50%;
  transition: left .18s ease, background .18s ease;
}

.cookie-cat-toggle[aria-pressed='true'] {
  background: var(--rbs-gold);
}

.cookie-cat-toggle[aria-pressed='true']::after {
  left: 23px;
}

.cookie-cat-toggle[disabled] {
  background: var(--rbs-gold);
  cursor: not-allowed;
  opacity: 0.7;
}

.cookie-cat-toggle[disabled]::after {
  left: 23px;
}

.cookie-cat-expand {
  background: none;
  border: 1px solid var(--rbs-border);
  border-radius: var(--rbs-radius);
  width: 32px;
  height: 32px;
  cursor: pointer;
  color: var(--rbs-ink-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cookie-cat-expand:hover {
  border-color: var(--rbs-gold);
  color: var(--rbs-gold);
}

.cookie-cat-body {
  display: none;
  padding: 0 18px 18px;
  border-top: 1px solid var(--rbs-divider);
}

.cookie-cat-body.visible {
  display: block;
}

.cookie-cat-body dl {
  margin: 14px 0 0;
  font-size: 0.85rem;
  color: var(--rbs-ink-muted);
}

.cookie-cat-body dt {
  font-weight: 600;
  color: var(--rbs-ink-soft);
  margin-top: 8px;
}

.cookie-cat-body dd {
  margin: 2px 0 0 0;
  line-height: 1.55;
}

.cookie-panel-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.always-active-pill {
  display: inline-block;
  background: var(--rbs-cream);
  color: var(--rbs-gold);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
  border: 1px solid var(--rbs-gold);
}

@media (max-width: 1024px) {
  h1 { font-size: 2.1rem; }
  .hero-text h1 { font-size: 2.3rem; }
  .article-grid,
  .list-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mission-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-col:first-child {
    grid-column: span 2;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 64px var(--rbs-gutter);
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: inline-flex;
  }
  .nav-center,
  .nav-cta {
    display: none;
  }
  .nav-center.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--rbs-cream);
    flex-direction: column;
    gap: 0;
    padding: 14px var(--rbs-gutter);
    border-bottom: 1px solid var(--rbs-border);
    box-shadow: var(--rbs-shadow-card);
    align-items: stretch;
  }
  .nav-center.open a {
    padding: 12px 0;
    border-bottom: 1px solid var(--rbs-divider);
    border-radius: 0;
  }
  .nav-center.open a:last-child {
    border-bottom: none;
  }
  .nav-cta.open {
    display: inline-flex;
    margin: 8px var(--rbs-gutter) 16px;
  }
  .hero {
    min-height: 460px;
  }
  .hero-text h1 {
    font-size: 1.9rem;
  }
  .section,
  .closing-cta {
    padding: 56px 0;
  }
  .article-grid,
  .list-grid {
    grid-template-columns: 1fr;
  }
  .mission-grid {
    grid-template-columns: 1fr;
  }
  .advantages-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-col:first-child {
    grid-column: span 1;
  }
  .article-header h1 {
    font-size: 1.7rem;
  }
  .article-body h2 {
    font-size: 1.35rem;
  }
  .cookie-bar-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-bar-actions {
    justify-content: space-between;
  }
  .cookie-btn {
    flex: 1;
  }
  .map-wrap {
    height: 280px;
  }
}

@media (max-width: 480px) {
  :root {
    --rbs-gutter: 18px;
  }
  h1, .hero-text h1 {
    font-size: 1.65rem;
  }
  .hero {
    min-height: 380px;
  }
  .hero-inner {
    padding: 48px var(--rbs-gutter);
  }
  .section {
    padding: 44px 0;
  }
  .section-head h2,
  .closing-cta h2 {
    font-size: 1.55rem;
  }
  .article-header h1 {
    font-size: 1.5rem;
  }
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  .cookie-panel {
    padding: 20px;
  }
  .cookie-cat-head {
    flex-wrap: wrap;
  }
}
