/* VIKROH — TCS-inspired light surfaces */
:root {
  /* Accent aligned to tcs.com primary blue (was forest green) */
  --rg-green: #2469bc;
  --rg-green-dark: #1a5496;
  --rg-green-soft: #f4f3f9;
  --rg-green-mid: #d7e3f2;
  --rg-ink: #212529;
  --rg-ink-soft: #343a40;
  --rg-muted: #6c757d;
  --rg-body: #495057;
  --rg-line: #dee2e6;
  --rg-surface: #f4f3f9;
  --rg-surface-alt: #f8f9fa;
  --rg-white: #ffffff;
  --rg-paper: #ffffff;
  --rg-topbar: #ffffff;
  --rg-hero-bg: #ffffff;
  --rg-dark: #1e2222;
  --rg-dark-mid: #333737;
  --rg-cta-from: #1e2222;
  --rg-cta-to: #333737;
  --rg-radius: 4px;
  --rg-radius-sm: 2px;
  --rg-radius-pill: 4px;
  --rg-shadow: 0 1px 0 rgba(33, 37, 41, 0.04);
  --rg-shadow-sm: none;
  /* TCS-inspired stack: Houschka → Nunito, Basis Grotesque → DM Sans */
  --rg-font: "DM Sans", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --rg-display: "Nunito", "DM Sans", "Segoe UI", sans-serif;
  --rg-serif: var(--rg-display);
  --rg-container: 1120px;
  --rg-header-h: 112px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--rg-font);
  color: var(--rg-body);
  background: var(--rg-white);
  line-height: 1.75;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  font-optical-sizing: auto;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  color: var(--rg-ink);
  font-family: var(--rg-display);
  font-weight: 500;
  font-style: normal;
  line-height: 1.15;
  letter-spacing: -0.015em;
}

p {
  margin: 0 0 1rem;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.rg-container {
  width: min(100% - 3rem, var(--rg-container));
  margin-inline: auto;
}

/* Top bar — light, quiet */
.rg-topbar {
  background: var(--rg-topbar);
  color: var(--rg-muted);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--rg-line);
}

.rg-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 38px;
  flex-wrap: wrap;
  padding: 0.4rem 0;
}

.rg-topbar__links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.rg-topbar a:hover {
  color: var(--rg-green);
}

.rg-topbar__note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.rg-topbar__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--rg-green);
  box-shadow: none;
}

/* Header */
.rg-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rg-line);
}

.rg-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--rg-header-h);
}

.rg-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.rg-logo img {
  height: 88px;
  width: auto;
  max-width: 380px;
  object-fit: contain;
}

.rg-nav {
  display: none;
  align-items: center;
  gap: 1.85rem;
}

.rg-nav a {
  color: var(--rg-ink-soft);
  font-family: var(--rg-font);
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-transform: none;
  position: relative;
}

.rg-nav a:hover,
.rg-nav a.is-active {
  color: var(--rg-green);
}

.rg-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 1px;
  background: var(--rg-green);
}

.rg-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.rg-menu-btn {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--rg-line);
  border-radius: var(--rg-radius);
  background: transparent;
  cursor: pointer;
  padding: 10px;
}

.rg-menu-btn span {
  display: block;
  height: 1px;
  background: var(--rg-ink);
}

/* Buttons — refined, not heavy pills */
.rg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.4rem;
  border-radius: var(--rg-radius);
  font-family: var(--rg-font);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  text-transform: none;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: none;
}

.rg-btn:hover {
  transform: none;
}

.rg-btn--primary {
  background: var(--rg-green);
  color: #fff;
}

.rg-btn--primary:hover {
  background: var(--rg-green-dark);
  color: #fff;
  box-shadow: none;
}

.rg-btn--ghost {
  background: transparent;
  border-color: var(--rg-line);
  color: var(--rg-ink);
}

.rg-btn--ghost:hover {
  border-color: var(--rg-green);
  color: var(--rg-green);
}

.rg-btn--dark {
  background: var(--rg-paper);
  color: var(--rg-ink);
}

.rg-btn--dark:hover {
  background: var(--rg-green-soft);
  color: var(--rg-green-dark);
}

.rg-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Labels */
.rg-eyebrow {
  display: inline-block;
  font-family: var(--rg-font);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rg-green);
  margin-bottom: 0.9rem;
}

.rg-badge {
  display: inline-block;
  padding: 0;
  background: transparent;
  color: var(--rg-muted);
  border-radius: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--rg-green-mid);
  padding-bottom: 0.45rem;
}

/* Full-page banner (rev-log style) */
.rg-home .rg-topbar {
  display: none;
}

.rg-header--overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: none;
}

.rg-header--overlay .rg-nav a {
  color: rgba(255, 255, 255, 0.9);
}

.rg-header--overlay .rg-nav a:hover,
.rg-header--overlay .rg-nav a.is-active {
  color: #fff;
}

.rg-header--overlay .rg-nav a.is-active::after {
  background: #fff;
}

.rg-header--overlay .rg-btn--primary {
  background: #fff;
  color: var(--rg-ink);
}

.rg-header--overlay .rg-btn--primary:hover {
  background: var(--rg-green-soft);
  color: var(--rg-green-dark);
}

.rg-header--overlay .rg-menu-btn {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.rg-header--overlay .rg-menu-btn span {
  background: #fff;
}

.rg-header--overlay.is-scrolled {
  position: fixed;
  background: rgba(30, 34, 34, 0.94);
  backdrop-filter: blur(10px);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.rg-banner {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  color: #fff;
}

.rg-banner__slides,
.rg-banner__slide {
  position: absolute;
  inset: 0;
}

.rg-banner__slide {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1s ease, transform 6s ease;
  z-index: 0;
}

.rg-banner__slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.rg-banner__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 14, 12, 0.72) 0%, rgba(10, 14, 12, 0.38) 48%, rgba(10, 14, 12, 0.2) 100%),
    linear-gradient(180deg, rgba(10, 14, 12, 0.35) 0%, transparent 35%, rgba(10, 14, 12, 0.45) 100%);
}

.rg-banner__content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 7.5rem 0 5rem;
}

.rg-banner__copy {
  position: relative;
  max-width: 680px;
  min-height: 280px;
}

.rg-banner__text {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  pointer-events: none;
}

.rg-banner__text.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  position: relative;
}

.rg-banner__text .rg-badge {
  color: rgba(255, 255, 255, 0.82);
  border-bottom-color: rgba(255, 255, 255, 0.35);
}

.rg-banner h1 {
  color: #fff;
  font-size: clamp(3.2rem, 7vw, 5.4rem);
  margin-bottom: 1.1rem;
  max-width: 12ch;
  font-weight: 500;
}

.rg-banner__text p {
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--rg-font);
  font-size: 1.2rem;
  font-weight: 300;
  max-width: 42ch;
  margin-bottom: 1.85rem;
  line-height: 1.7;
}

.rg-btn--light {
  background: #fff;
  color: var(--rg-ink);
}

.rg-btn--light:hover {
  background: var(--rg-green-soft);
  color: var(--rg-green-dark);
}

.rg-btn--ghost-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.rg-btn--ghost-light:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.rg-banner__controls {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.rg-banner__arrow {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.rg-banner__arrow:hover {
  background: rgba(255, 255, 255, 0.18);
}

.rg-banner__dots {
  display: flex;
  gap: 0.5rem;
}

.rg-banner__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.rg-banner__dot.is-active {
  background: #fff;
  width: 22px;
  border-radius: 999px;
}

/* Sections */
.rg-section {
  padding: 2.25rem 0;
}

.rg-page-hero + .rg-section {
  padding-top: 1.5rem;
}

.rg-section--soft {
  background: var(--rg-surface);
}

.rg-section--ink {
  background: var(--rg-dark);
  color: rgba(255, 255, 255, 0.72);
}

.rg-section--ink h2,
.rg-section--ink h3 {
  color: #fff;
}

.rg-section--green {
  background: var(--rg-dark);
  color: rgba(255, 255, 255, 0.88);
  padding: 2.25rem 0;
}

.rg-section--green h2 {
  color: #fff;
}

.rg-section__head {
  max-width: 620px;
  margin-bottom: 1.75rem;
}

.rg-section__head--center {
  text-align: center;
  margin-inline: auto;
}

.rg-section h2 {
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  margin-bottom: 0.95rem;
  font-weight: 500;
}

.rg-section__intro {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--rg-body);
  text-align: justify;
}

.rg-section__head--center .rg-section__intro {
  text-align: center;
}

.rg-section--ink .rg-section__intro,
.rg-section--green .rg-section__intro {
  color: rgba(255, 255, 255, 0.72);
}

/* Split */
.rg-split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 1.5rem 1.75rem;
  align-items: start;
}

.rg-split--reverse {
  grid-template-columns: 1.15fr 1fr;
}

.rg-split__media {
  border-radius: var(--rg-radius);
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  border: 1px solid var(--rg-line);
}

.rg-split__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.9);
}

.rg-split__copy h2 {
  margin-bottom: 0.85rem;
}

.rg-split__copy p {
  text-align: justify;
}

.rg-split__panel {
  padding: 1.35rem 0 0;
  background: transparent;
  border-top: 0;
}

.rg-split__panel h4 {
  margin-bottom: 0.35rem;
  font-size: 1.45rem;
  font-weight: 500;
}

.rg-split__copy p strong {
  color: var(--rg-ink);
  font-weight: 560;
}

/* Cards — light borders, no heavy chrome */
.rg-grid {
  display: grid;
  gap: 1px;
  background: var(--rg-line);
  border: 1px solid var(--rg-line);
}

.rg-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.rg-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.rg-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.rg-card {
  background: var(--rg-paper);
  border: 0;
  border-radius: 0;
  padding: 1.75rem 1.5rem;
  box-shadow: none;
  transition: background 0.2s ease;
  height: 100%;
}

.rg-card:hover {
  transform: none;
  box-shadow: none;
  border-color: transparent;
  background: var(--rg-green-soft);
}

.rg-section--soft .rg-card {
  background: var(--rg-paper);
}

.rg-section--ink .rg-grid {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.1);
}

.rg-card__icon {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: var(--rg-green);
  display: inline-block;
  margin-bottom: 0.85rem;
  font-family: var(--rg-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.rg-card h3 {
  font-size: 1.45rem;
  margin-bottom: 0.65rem;
  font-weight: 500;
}

.rg-card p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  text-align: justify;
}

.rg-card a.rg-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.15rem;
  color: var(--rg-green);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Checklist */
.rg-check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1.25rem;
}

.rg-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-weight: 500;
  color: var(--rg-ink-soft);
}

.rg-check-list li::before {
  content: "—";
  flex-shrink: 0;
  color: var(--rg-green);
  font-weight: 500;
  margin-top: 0;
}

/* CTA */
.rg-cta {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
}

.rg-cta h2 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.rg-cta p {
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.65;
  text-align: center;
}

.rg-cta .rg-btn-row {
  justify-content: center;
}

/* Page hero */
.rg-page-hero {
  padding: 1.15rem 0 0.85rem;
  background: var(--rg-white);
  border-bottom: 1px solid var(--rg-line);
}

.rg-page-hero h1 {
  font-size: clamp(1.85rem, 3.4vw, 2.45rem);
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.rg-crumbs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  color: var(--rg-muted);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.rg-crumbs a:hover {
  color: var(--rg-green);
}

/* Forms */
.rg-form {
  background: var(--rg-paper);
  border: 1px solid var(--rg-line);
  border-radius: var(--rg-radius);
  padding: 1.85rem;
  box-shadow: none;
}

.rg-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.rg-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.rg-field--full {
  grid-column: 1 / -1;
}

.rg-field label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rg-ink);
}

.rg-field input,
.rg-field textarea,
.rg-field select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--rg-line);
  border-radius: 0;
  padding: 0.85rem 0;
  font: inherit;
  color: var(--rg-ink);
  background: transparent;
  transition: border-color 0.2s ease;
}

.rg-field input:focus,
.rg-field textarea:focus,
.rg-field select:focus {
  outline: none;
  border-color: var(--rg-green);
  box-shadow: none;
}

.rg-alert {
  padding: 0.9rem 0;
  border-radius: 0;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--rg-line);
}

.rg-alert--success {
  background: transparent;
  color: var(--rg-green-dark);
  border-color: var(--rg-green-mid);
}

.rg-alert--error {
  background: transparent;
  color: #9f1239;
  border-color: #fecdd3;
}

.rg-contact-meta {
  display: grid;
  gap: 1.35rem;
}

.rg-contact-meta strong {
  display: block;
  font-family: var(--rg-font);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rg-muted);
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.rg-contact-meta a:hover {
  color: var(--rg-green);
}

.rg-map {
  margin-top: 2.5rem;
  border-radius: var(--rg-radius);
  overflow: hidden;
  border: 1px solid var(--rg-line);
}

.rg-map iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
  filter: grayscale(0.25) contrast(1.02);
}

/* Service detail */
.rg-sidebar {
  background: transparent;
  border: 1px solid var(--rg-line);
  border-radius: var(--rg-radius);
  padding: 1.25rem;
}

.rg-sidebar h4 {
  margin-bottom: 0.85rem;
  font-size: 1.25rem;
  font-weight: 500;
}

.rg-sidebar a {
  display: block;
  padding: 0.7rem 0;
  border-radius: 0;
  margin-bottom: 0;
  border-bottom: 1px solid var(--rg-line);
  color: var(--rg-ink-soft);
  font-weight: 500;
  font-size: 0.92rem;
}

.rg-sidebar a:hover,
.rg-sidebar a.is-active {
  background: transparent;
  color: var(--rg-green);
}

.rg-points {
  display: grid;
  gap: 0.7rem;
  margin: 1.25rem 0 1.75rem;
}

.rg-points li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}

.rg-points li::before {
  content: "";
  width: 14px;
  height: 1px;
  background: var(--rg-green);
  margin-top: 0.75rem;
  flex-shrink: 0;
}

/* Team */
.rg-team-card {
  text-align: left;
  background: var(--rg-paper);
  padding: 1rem;
}

.rg-team-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--rg-radius);
  margin-bottom: 1rem;
  background: var(--rg-surface);
  filter: saturate(0.88);
}

.rg-team-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.rg-team-card span {
  color: var(--rg-muted);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Footer */
.rg-footer {
  background: var(--rg-dark);
  color: rgba(255, 255, 255, 0.62);
  padding-top: 4.5rem;
}

.rg-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.rg-footer h4 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 1.1rem;
  font-weight: 500;
}

.rg-footer p {
  max-width: 34ch;
  font-size: 0.94rem;
}

.rg-footer a:hover {
  color: #fff;
}

.rg-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #fff;
  margin-bottom: 1rem;
}

.rg-footer__brand img {
  height: 84px;
  width: auto;
  max-width: 360px;
  object-fit: contain;
}

.rg-footer ul {
  display: grid;
  gap: 0.55rem;
  font-size: 0.92rem;
}

.rg-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
}

.rg-footer__bottom a {
  color: rgba(255, 255, 255, 0.55);
}

/* Mobile nav */
.rg-mobile {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.rg-mobile.is-open {
  pointer-events: auto;
  opacity: 1;
}

.rg-mobile__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30, 34, 34, 0.35);
}

.rg-mobile__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(86vw, 340px);
  height: 100%;
  background: var(--rg-paper);
  padding: 1.25rem;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: none;
  border-left: 1px solid var(--rg-line);
}

.rg-mobile.is-open .rg-mobile__panel {
  transform: translateX(0);
}

.rg-mobile__panel nav {
  display: grid;
  gap: 0.2rem;
}

.rg-mobile__panel nav a {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--rg-line);
  font-family: var(--rg-font);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  font-size: 0.84rem;
  color: var(--rg-ink);
}

.rg-mobile__panel nav a:hover,
.rg-mobile__panel nav a.is-active {
  background: transparent;
  color: var(--rg-green);
}

.rg-mobile__close {
  align-self: flex-end;
  border: 1px solid var(--rg-line);
  background: transparent;
  border-radius: var(--rg-radius);
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 1.25rem;
}

/* Reveal */
.rg-reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.rg-reveal.is-visible {
  opacity: 1;
  transform: none;
}

.rg-mt-0 { margin-top: 0; }
.rg-mb-0 { margin-bottom: 0; }
.rg-hide-desktop { display: inline-flex; }
.rg-hide-mobile { display: none; }

@media (min-width: 992px) {
  .rg-nav { display: flex; }
  .rg-hide-desktop { display: none; }
  .rg-hide-mobile { display: inline-flex; }
}

@media (max-width: 991px) {
  .rg-split,
  .rg-split--reverse,
  .rg-footer__grid {
    grid-template-columns: 1fr;
  }

  .rg-grid--2,
  .rg-grid--3,
  .rg-grid--4,
  .rg-check-list,
  .rg-form-grid {
    grid-template-columns: 1fr;
  }

  .rg-banner__content {
    padding: 6.5rem 0 5.5rem;
    align-items: flex-end;
  }

  .rg-banner h1 {
    max-width: none;
  }

  .rg-banner__copy {
    min-height: 240px;
  }

  .rg-section {
    padding: 1.75rem 0;
  }

  .rg-page-hero + .rg-section {
    padding-top: 1.15rem;
  }

  .rg-section--green {
    padding: 1.75rem 0;
  }

  .rg-split {
    gap: 1.25rem;
  }

  .rg-topbar__note {
    width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .rg-grid--2,
  .rg-grid--3,
  .rg-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Inline overrides used in views for dark cards */
.rg-section--ink .rg-card {
  background: var(--rg-dark-mid) !important;
  border-color: transparent !important;
  color: rgba(255, 255, 255, 0.7) !important;
}

.rg-section--ink .rg-card:hover {
  background: #3c4141 !important;
}

/* Stats strip */
.rg-stats-section { padding: 2.75rem 0; }
.rg-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}
.rg-stats__item strong {
  display: block;
  font-family: var(--rg-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  color: var(--rg-ink);
  margin-bottom: 0.3rem;
}
.rg-stats__item span {
  color: var(--rg-muted);
  font-size: 0.88rem;
}

/* Media cards */
.rg-card--media {
  display: flex;
  flex-direction: column;
}
.rg-card__img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--rg-radius);
  margin-bottom: 1.1rem;
  background: var(--rg-surface);
}
.rg-section--ink .rg-card__img {
  opacity: 0.95;
}

/* Cookie consent — Cookiebot-style centered modal */
.rg-cookie[hidden] { display: none !important; }
.rg-cookie {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.rg-cookie__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
}
.rg-cookie__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
  background: #fff;
  color: #111827;
  border-radius: 10px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  font-family: var(--rg-font);
}
.rg-cookie__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.25rem 0;
  border-bottom: 1px solid #e5e7eb;
}
.rg-cookie__tabs {
  display: flex;
  gap: 1.25rem;
}
.rg-cookie__tab {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0.7rem 0;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  color: #9ca3af;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.rg-cookie__tab.is-active {
  color: #111827;
  border-bottom-color: #9ca3af;
}
.rg-cookie__brand {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6b7280;
}
.rg-cookie__panels {
  padding: 1.35rem 1.35rem 0.5rem;
}
.rg-cookie__panel[hidden] { display: none !important; }
.rg-cookie__panel h3 {
  font-family: var(--rg-display);
  font-size: 1.55rem;
  font-weight: 500;
  margin: 0 0 0.75rem;
  color: #111827;
  letter-spacing: -0.01em;
}
.rg-cookie__panel p,
.rg-cookie__list {
  margin: 0 0 1.1rem;
  color: #374151;
  font-size: 0.95rem;
  line-height: 1.6;
}
.rg-cookie__panel a {
  color: #2563eb;
  text-decoration: underline;
}
.rg-cookie__list {
  padding-left: 1.1rem;
  display: grid;
  gap: 0.65rem;
}
.rg-cookie__list li { list-style: disc; }
.rg-cookie__toggles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 1.25rem 0 0.5rem;
}
.rg-cookie__toggle {
  display: grid;
  justify-items: start;
  gap: 0.55rem;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  color: #111827;
}
.rg-cookie__toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.rg-cookie__toggle i {
  width: 44px;
  height: 24px;
  border-radius: 999px;
  background: #d1d5db;
  position: relative;
  display: block;
  transition: background 0.2s ease;
}
.rg-cookie__toggle i::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s ease;
  box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.rg-cookie__toggle input:checked + i {
  background: #111827;
}
.rg-cookie__toggle input:checked + i::after {
  transform: translateX(20px);
}
.rg-cookie__toggle input:disabled + i {
  background: #9ca3af;
  opacity: 0.85;
}
.rg-cookie__toggle:has(input:disabled) {
  cursor: default;
  color: #111827;
}
.rg-cookie__actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  padding: 1rem 1.25rem 1.25rem;
}
.rg-cookie__btn {
  appearance: none;
  border: 0;
  border-radius: 6px;
  padding: 0.85rem 0.75rem;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
}
.rg-cookie__btn--deny,
.rg-cookie__btn--select {
  background: #2563eb;
}
.rg-cookie__btn--deny:hover,
.rg-cookie__btn--select:hover {
  background: #1d4ed8;
}
.rg-cookie__btn--allow {
  background: #16a34a;
}
.rg-cookie__btn--allow:hover {
  background: #15803d;
}
body.rg-cookie-open {
  overflow: hidden;
}

/* Enquiry popup */
.rg-popup[hidden] { display: none !important; }
.rg-popup {
  position: fixed;
  inset: 0;
  z-index: 280;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.rg-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30, 34, 34, 0.55);
}
.rg-popup__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 820px);
  background: var(--rg-paper);
  border: 1px solid var(--rg-line);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
}
.rg-popup__close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 36px;
  height: 36px;
  border: 1px solid var(--rg-line);
  background: #fff;
  cursor: pointer;
  font-size: 1.25rem;
  z-index: 2;
}
.rg-popup__media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}
.rg-popup__body {
  padding: 2rem 1.75rem;
}
.rg-popup__body h3 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.rg-popup__body p {
  margin-bottom: 1.35rem;
}

@media (max-width: 991px) {
  .rg-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rg-cookie__toggles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rg-popup__dialog { grid-template-columns: 1fr; }
  .rg-popup__media img { min-height: 180px; max-height: 200px; }
}
@media (max-width: 575px) {
  .rg-stats { grid-template-columns: 1fr; }
  .rg-cookie__toggles,
  .rg-cookie__actions {
    grid-template-columns: 1fr;
  }
  .rg-cookie__top {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Larger article writing */
.rg-split__copy p {
  font-size: 1.08rem;
  line-height: 1.75;
  text-align: justify;
}
.rg-article {
  max-width: 820px;
  margin: 0 auto;
}
.rg-article__title {
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  margin: 0.4rem 0 1rem;
  font-weight: 500;
}
.rg-article__lead {
  font-size: 1.25rem;
  line-height: 1.75;
  color: var(--rg-ink-soft);
  margin-bottom: 1.75rem;
}
.rg-article__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--rg-radius);
  margin-bottom: 2rem;
  border: 1px solid var(--rg-line);
}
.rg-article__body p {
  font-family: var(--rg-font);
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.8;
  margin: 0 0 1.35rem;
  color: var(--rg-ink-soft);
  text-align: justify;
}
.rg-article__title {
  font-family: var(--rg-display);
  font-weight: 500;
}
.rg-article-card .rg-article-excerpt,
.rg-article-excerpt {
  font-size: 1.08rem;
  line-height: 1.75;
  text-align: justify;
}
.rg-page-hero .rg-section__intro {
  font-size: 1.12rem;
  max-width: 60ch;
}
