* { box-sizing: border-box; }
      html { scroll-behavior: smooth; }
      html, body { margin: 0; min-height: 100%; }
      body { letter-spacing: 0; }:root {
  --rg-blue: #1f4e79;
  --rg-blue-deep: #163a5b;
  --rg-orange: #e8821e;
  --rg-orange-deep: #c96a10;
  --rg-green: #3a7d44;
  --rg-green-deep: #2c5e34;
  --rg-cream: #f7f2e8;
  --rg-cream-2: #efe6d3;
  --rg-paper: #fffdf8;
  --rg-ink: #20242c;
  --rg-muted: #5b6470;
  --rg-rule: #e2d8c4;
  --rg-barn: #5b3a26;
  --rg-dark: #10151d;
  --rg-dark-2: #19202b;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
  --page-max: 1200px;
  --reading-max: 720px;
}

.rg-site {
  font-family: var(--font-body);
  color: var(--rg-ink);
  background: var(--rg-cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.rg-site img { max-width: 100%; display: block; }
.rg-site a { color: inherit; }

/* ---------- Header ---------- */
.rg-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.85rem clamp(1rem, 4vw, 2.5rem);
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: saturate(1.2) blur(8px);
  border-bottom: 1px solid var(--rg-rule);
}
.rg-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  flex-shrink: 0;
}
.rg-brand img { width: 52px; height: auto; }
.rg-wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 0.95;
  letter-spacing: -0.01em;
}
.rg-wordmark .r1 { color: var(--rg-blue); display: block; }
.rg-wordmark .r2 { color: var(--rg-orange); display: block; }
.rg-nav {
  display: flex;
  gap: 1.4rem;
  margin-left: auto;
  font-size: 0.93rem;
  font-weight: 500;
}
.rg-nav a { text-decoration: none; color: var(--rg-ink); opacity: 0.82; transition: opacity 0.15s; }
.rg-nav a:hover { opacity: 1; color: var(--rg-blue); }
.rg-nav-cta {
  background: var(--rg-orange);
  color: #fff;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: background 0.15s;
}
.rg-nav-cta:hover { background: var(--rg-orange-deep); }

/* ---------- Buttons ---------- */
.rg-btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.97rem;
  transition: transform 0.12s, background 0.15s, box-shadow 0.15s;
}
.rg-btn:hover { transform: translateY(-1px); }
.rg-btn-primary { background: var(--rg-orange); color: #fff; box-shadow: 0 8px 22px rgba(232, 130, 30, 0.28); }
.rg-btn-primary:hover { background: var(--rg-orange-deep); }
.rg-btn-blue { background: var(--rg-blue); color: #fff; box-shadow: 0 8px 22px rgba(31, 78, 121, 0.26); }
.rg-btn-blue:hover { background: var(--rg-blue-deep); }
.rg-btn-outline { border: 1.5px solid currentColor; color: var(--rg-blue); }
.rg-btn-ghost-light { border: 1.5px solid rgba(255,255,255,0.6); color: #fff; }

/* ---------- Hero ---------- */
.rg-hero {
  position: relative;
  min-height: clamp(440px, 62vh, 640px);
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.rg-hero-bg { position: absolute; inset: 0; z-index: 0; }
.rg-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.rg-hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(12,20,32,0.82) 0%, rgba(16,30,48,0.55) 45%, rgba(16,30,48,0.12) 100%);
}
.rg-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.2rem, 4vw, 2.5rem);
}
.rg-hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rg-orange);
  margin-bottom: 1rem;
}
.rg-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.1rem, 5.2vw, 3.6rem);
  line-height: 1.04;
  margin: 0 0 1.1rem;
  max-width: 16ch;
  text-shadow: 0 2px 18px rgba(0,0,0,0.35);
}
.rg-hero p {
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  max-width: 46ch;
  margin: 0 0 1.8rem;
  color: rgba(255,255,255,0.92);
}
.rg-hero-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.rg-hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.4rem;
}
.rg-hero-proof span {
  border: 1px solid rgba(255,255,255,0.32);
  background: rgba(255,255,255,0.1);
  border-radius: 999px;
  padding: 0.38rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
}
.rg-hero-url {
  margin-top: 1.6rem;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.75);
}

/* ---------- Section scaffolding ---------- */
.rg-section { max-width: var(--page-max); margin: 0 auto; padding: clamp(3rem, 7vw, 5.5rem) clamp(1.2rem, 4vw, 2.5rem); }
.rg-section-head { max-width: var(--reading-max); margin-bottom: 2.5rem; }
.rg-section-head .kicker {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--rg-orange); display: block; margin-bottom: 0.7rem;
}
.rg-section-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  line-height: 1.1;
  margin: 0 0 0.8rem;
  color: var(--rg-blue);
}
.rg-section-head p { font-size: 1.05rem; color: var(--rg-muted); margin: 0; }

/* ---------- Mission / Discover Our Buzz ---------- */
.rg-mission { background: var(--rg-cream-2); }
.rg-mission-inner {
  max-width: var(--page-max); margin: 0 auto;
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1.2rem, 4vw, 2.5rem);
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center;
}
.rg-mission h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 2.9rem); line-height: 1.05; margin: 0 0 1rem; color: var(--rg-blue);
}
.rg-mission h2 em { font-style: italic; color: var(--rg-orange); }
.rg-mission p { font-size: 1.06rem; color: var(--rg-ink); margin: 0 0 1rem; max-width: 48ch; }
.rg-buzz-cloud { background: var(--rg-paper); border: 1px solid var(--rg-rule); border-radius: 16px; padding: 1.4rem; box-shadow: 0 18px 40px rgba(40,30,10,0.06); }
.rg-buzz-cloud img { width: 100%; }
.rg-buzz-caption { font-size: 0.82rem; color: var(--rg-muted); text-align: center; margin-top: 0.7rem; }

/* ---------- HOCl ---------- */
.rg-hocl { background: var(--rg-dark); color: #fff; }
.rg-hocl-inner { max-width: var(--page-max); margin: 0 auto; padding: clamp(3rem, 7vw, 5.5rem) clamp(1.2rem, 4vw, 2.5rem); }
.rg-hocl .kicker { color: #6fcf97; }
.rg-hocl h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin: 0.6rem 0 0.8rem; }
.rg-hocl-lede { font-size: 1.1rem; color: rgba(255,255,255,0.82); max-width: 60ch; margin: 0 0 2.5rem; }
.rg-hocl-lede strong { color: #fff; }
.rg-hocl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.rg-hocl-card { background: var(--rg-dark-2); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 1.6rem; }
.rg-hocl-card h3 { font-size: 1.05rem; margin: 0 0 0.6rem; color: #6fcf97; font-weight: 700; }
.rg-hocl-card p { font-size: 0.95rem; color: rgba(255,255,255,0.78); margin: 0; }
.rg-hocl-proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  margin-top: 1.5rem;
}
.rg-hocl-proof-strip span {
  border: 1px solid rgba(111,207,151,0.26);
  background: rgba(111,207,151,0.08);
  border-radius: 12px;
  padding: 0.85rem 0.9rem;
  text-align: center;
  color: rgba(255,255,255,0.9);
  font-size: 0.86rem;
  font-weight: 700;
}

/* ---------- Applications ---------- */
.rg-applications { background: var(--rg-paper); }
.rg-application-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.rg-application-card {
  background: var(--rg-cream);
  border: 1px solid var(--rg-rule);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(40,30,10,0.05);
}
.rg-application-card img { width: 100%; height: 180px; object-fit: cover; }
.rg-application-body { padding: 1.35rem 1.4rem 1.5rem; }
.rg-application-body span {
  display: block;
  color: var(--rg-orange);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}
.rg-application-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--rg-blue);
  font-size: 1.25rem;
  line-height: 1.15;
  margin: 0 0 0.55rem;
}
.rg-application-body p { color: var(--rg-muted); font-size: 0.94rem; margin: 0 0 1rem; }
.rg-application-body ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.4rem; }
.rg-application-body li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.9rem;
  color: var(--rg-ink);
}
.rg-application-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.63em;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--rg-green);
}

/* ---------- Channels ---------- */
.rg-channels { background: var(--rg-blue); color: #fff; }
.rg-channels-inner { max-width: var(--page-max); margin: 0 auto; padding: clamp(3rem, 7vw, 5rem) clamp(1.2rem, 4vw, 2.5rem); }
.rg-channels .kicker { color: var(--rg-orange); }
.rg-channels h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin: 0.5rem 0 0.6rem; color: #fff; }
.rg-channels-lede { color: rgba(255,255,255,0.8); max-width: 56ch; margin: 0 0 2.4rem; }
.rg-channel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.rg-channel-col {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  padding: 1.6rem 1.4rem;
  text-align: center;
}
.rg-channel-col h3 {
  font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  font-size: 1rem; color: var(--rg-orange); margin: 0 0 1rem;
}
.rg-channel-col ul { list-style: none; margin: 0; padding: 0; }
.rg-channel-col li { padding: 0.45rem 0; font-size: 0.98rem; color: rgba(255,255,255,0.92); border-top: 1px solid rgba(255,255,255,0.1); }
.rg-channel-col li:first-child { border-top: none; }
.rg-format-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.3rem;
}
.rg-format-card {
  background: rgba(255,255,255,0.92);
  color: var(--rg-ink);
  border-radius: 14px;
  padding: 1.2rem;
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}
.rg-format-card h3 {
  font-size: 0.96rem;
  line-height: 1.2;
  color: var(--rg-blue);
  margin: 0 0 0.55rem;
}
.rg-format-card p { font-size: 0.88rem; color: var(--rg-muted); margin: 0; }

/* ---------- Brand portfolio ---------- */
.rg-brands { background: var(--rg-cream); }
.rg-brand-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.rg-brand-card {
  background: var(--rg-paper);
  border: 1px solid var(--rg-rule);
  border-radius: 18px;
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 16px 40px rgba(40,30,10,0.05);
  transition: transform 0.15s, box-shadow 0.15s;
}
.rg-brand-card:hover { transform: translateY(-4px); box-shadow: 0 22px 50px rgba(40,30,10,0.1); }
.rg-brand-media { height: 180px; display: flex; align-items: center; justify-content: center; padding: 1.4rem; position: relative; }
.rg-brand-media.garzen { background: linear-gradient(135deg, #eaf5e6, #d9efcf); }
.rg-brand-media.equi { background: linear-gradient(135deg, #e8eef5, #d6e3f0); }
.rg-brand-media.howzat { background: linear-gradient(135deg, #fdeede, #fbe0c4); }
.rg-brand-media img { max-height: 100%; width: auto; object-fit: contain; }
.rg-brand-body { padding: 1.4rem 1.5rem 1.6rem; flex: 1; display: flex; flex-direction: column; }
.rg-brand-body h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; margin: 0 0 0.2rem; color: var(--rg-blue); }
.rg-brand-body .domain { font-size: 0.82rem; color: var(--rg-orange); font-weight: 600; margin-bottom: 0.7rem; }
.rg-brand-body p { font-size: 0.95rem; color: var(--rg-muted); margin: 0 0 1.1rem; flex: 1; }
.rg-brand-link { font-weight: 600; font-size: 0.92rem; color: var(--rg-blue); text-decoration: none; }
.rg-brand-link:hover { color: var(--rg-orange); }
.rg-product-showcase {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  margin-top: 2rem;
  background: var(--rg-paper);
  border: 1px solid var(--rg-rule);
  border-radius: 22px;
  padding: clamp(1.4rem, 4vw, 2.3rem);
  box-shadow: 0 18px 45px rgba(40,30,10,0.06);
}
.rg-product-showcase .kicker {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--rg-orange);
}
.rg-product-showcase h3 {
  font-family: var(--font-display);
  color: var(--rg-blue);
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  line-height: 1.1;
  margin: 0.5rem 0 0.8rem;
}
.rg-product-showcase p { color: var(--rg-muted); margin: 0 0 1rem; }
.rg-product-showcase ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.rg-product-showcase li {
  border: 1px solid var(--rg-rule);
  border-radius: 999px;
  padding: 0.38rem 0.72rem;
  background: var(--rg-cream);
  color: var(--rg-blue);
  font-size: 0.83rem;
  font-weight: 700;
}
.rg-product-art {
  min-height: 270px;
  border-radius: 18px;
  background: linear-gradient(135deg, #eef8e9, #fff7e8);
  display: grid;
  grid-template-columns: 1.1fr 0.8fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.8rem;
  align-items: center;
  justify-items: center;
  padding: 1rem;
  overflow: hidden;
}
.rg-product-art img:first-child { grid-row: 1 / span 2; max-height: 260px; }
.rg-product-art img:nth-child(2) { max-height: 128px; }
.rg-product-art img:nth-child(3) { max-height: 120px; transform: rotate(-4deg); }

/* ---------- Founders ---------- */
.rg-founders { background: var(--rg-cream-2); }
.rg-founder-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.rg-founder-card {
  position: relative; border-radius: 18px; overflow: hidden; min-height: 320px;
  display: flex; align-items: flex-end; color: #fff;
  box-shadow: 0 16px 40px rgba(40,30,10,0.1);
}
.rg-founder-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.rg-founder-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,14,22,0.92) 8%, rgba(8,14,22,0.35) 55%, rgba(8,14,22,0.08) 100%); z-index: 1; }
.rg-founder-body { position: relative; z-index: 2; padding: 1.8rem; }
.rg-founder-body h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.7rem; margin: 0 0 0.4rem; }
.rg-founder-body p { font-size: 0.96rem; color: rgba(255,255,255,0.85); margin: 0 0 0.9rem; max-width: 34ch; }
.rg-founder-tag { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--rg-orange); margin-bottom: 0.6rem; }

/* ---------- Network / CMA attribution ---------- */
.rg-network { background: var(--rg-barn); color: #fff; }
.rg-network-inner {
  max-width: var(--page-max); margin: 0 auto;
  padding: clamp(3rem, 7vw, 5rem) clamp(1.2rem, 4vw, 2.5rem);
  display: grid; grid-template-columns: 1fr 0.9fr; gap: clamp(1.5rem, 5vw, 3.5rem); align-items: center;
}
.rg-network .kicker { color: var(--rg-orange); font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; font-size: 0.8rem; }
.rg-network h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin: 0.6rem 0 1rem; }
.rg-network p { color: rgba(255,255,255,0.86); margin: 0 0 1rem; max-width: 52ch; }
.rg-network p a { color: #f4c98a; text-decoration: underline; text-underline-offset: 2px; }
.rg-network-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.rg-network-links li a {
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16);
  border-radius: 12px; padding: 0.85rem 1.1rem; text-decoration: none; color: #fff;
  font-weight: 600; font-size: 0.96rem; transition: background 0.15s;
}
.rg-network-links li a:hover { background: rgba(255,255,255,0.16); }
.rg-network-links li a span { font-size: 0.82rem; font-weight: 400; color: rgba(255,255,255,0.7); }

/* ---------- Final CTA ---------- */
.rg-final { background: var(--rg-blue-deep); color: #fff; text-align: center; }
.rg-final-inner { max-width: 760px; margin: 0 auto; padding: clamp(3rem, 7vw, 5rem) clamp(1.2rem, 4vw, 2.5rem); }
.rg-final h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.06; margin: 0 0 1rem; }
.rg-final p { font-size: 1.08rem; color: rgba(255,255,255,0.85); margin: 0 0 1.8rem; }
.rg-final-actions { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.rg-footer { background: var(--rg-dark); color: rgba(255,255,255,0.82); }
.rg-footer-inner {
  max-width: var(--page-max); margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1.2rem, 4vw, 2.5rem);
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem;
}
.rg-footer-brand { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1rem; }
.rg-footer-brand img { width: 46px; }
.rg-footer-brand .rg-wordmark { font-size: 1.2rem; }
.rg-footer-brand .r1 { color: #8fb3d6; }
.rg-footer-brand .r2 { color: var(--rg-orange); }
.rg-footer p { font-size: 0.9rem; margin: 0.3rem 0; color: rgba(255,255,255,0.65); max-width: 36ch; }
.rg-footer h4 { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin: 0 0 0.9rem; }
.rg-footer ul { list-style: none; margin: 0; padding: 0; }
.rg-footer li { margin-bottom: 0.5rem; }
.rg-footer a { color: rgba(255,255,255,0.82); text-decoration: none; font-size: 0.92rem; }
.rg-footer a:hover { color: #fff; }
.rg-footer-legal {
  max-width: var(--page-max); margin: 0 auto; padding: 1.3rem clamp(1.2rem, 4vw, 2.5rem);
  border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.8rem; color: rgba(255,255,255,0.5);
}

/* ---------- Inner pages ---------- */
.rg-page { max-width: var(--page-max); margin: 0 auto; padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.2rem, 4vw, 2.5rem); }
.rg-page-head { max-width: var(--reading-max); margin-bottom: 2.5rem; }
.rg-page-head .kicker { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: var(--rg-orange); }
.rg-page-head h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 4.5vw, 3.2rem); line-height: 1.05; margin: 0.6rem 0 1rem; color: var(--rg-blue); }
.rg-page-head p { font-size: 1.12rem; color: var(--rg-muted); margin: 0; }
.rg-prose { max-width: var(--reading-max); }
.rg-prose h2 { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--rg-blue); margin: 2.2rem 0 0.7rem; }
.rg-prose p { font-size: 1.05rem; color: var(--rg-ink); margin: 0 0 1.1rem; }
.rg-prose ul { padding-left: 1.2rem; margin: 0 0 1.2rem; }
.rg-prose li { margin-bottom: 0.5rem; }
.rg-prose a { color: var(--rg-orange); font-weight: 600; }
.rg-callout { background: var(--rg-cream-2); border-left: 4px solid var(--rg-orange); border-radius: 8px; padding: 1.2rem 1.4rem; margin: 1.6rem 0; }
.rg-callout p { margin: 0; font-size: 1rem; color: var(--rg-ink); }

/* ---------- Contact ---------- */
.rg-contact-layout { display: grid; grid-template-columns: 1.3fr 0.8fr; gap: 2.5rem; }
.rg-form { display: grid; gap: 1rem; }
.rg-form label { display: grid; gap: 0.35rem; font-size: 0.9rem; font-weight: 600; color: var(--rg-ink); }
.rg-form input, .rg-form select, .rg-form textarea {
  font: inherit; font-size: 0.95rem; padding: 0.7rem 0.85rem;
  border: 1px solid var(--rg-rule); border-radius: 10px; background: var(--rg-paper); color: var(--rg-ink);
}
.rg-form input:focus, .rg-form select:focus, .rg-form textarea:focus { outline: 2px solid var(--rg-blue); border-color: var(--rg-blue); }
.rg-form-note { font-size: 0.82rem; color: var(--rg-muted); margin: 0.3rem 0 0; font-weight: 400; }
.rg-contact-aside > div { margin-bottom: 1.6rem; }
.rg-contact-aside span { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--rg-orange); display: block; margin-bottom: 0.4rem; }
.rg-contact-aside a { color: var(--rg-blue); font-weight: 600; text-decoration: none; }
.rg-contact-aside ul { list-style: none; margin: 0.3rem 0 0; padding: 0; }
.rg-contact-aside li { margin-bottom: 0.4rem; font-size: 0.92rem; }

/* ---------- Journal ---------- */
.rg-article { max-width: var(--reading-max); margin: 0 auto; padding: clamp(2.5rem, 6vw, 4rem) clamp(1.2rem, 4vw, 2.5rem); }
.rg-article-meta { font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--rg-orange); font-weight: 700; }
.rg-article h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.9rem, 4.2vw, 2.9rem); line-height: 1.08; color: var(--rg-blue); margin: 0.7rem 0 1rem; }
.rg-article-standfirst { font-size: 1.2rem; color: var(--rg-muted); margin: 0 0 2rem; line-height: 1.5; }
.rg-article p { font-size: 1.06rem; margin: 0 0 1.2rem; }
.rg-article h2 { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--rg-blue); margin: 2.2rem 0 0.7rem; }
.rg-article a { color: var(--rg-orange); font-weight: 600; }
.rg-article-colophon { margin-top: 2.5rem; padding-top: 1.4rem; border-top: 1px solid var(--rg-rule); font-size: 0.88rem; color: var(--rg-muted); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .rg-nav { display: none; }
  .rg-mission-inner, .rg-network-inner, .rg-contact-layout { grid-template-columns: 1fr; }
  .rg-hocl-grid, .rg-channel-grid, .rg-brand-grid, .rg-application-grid, .rg-format-grid, .rg-product-showcase { grid-template-columns: 1fr; }
  .rg-hocl-proof-strip { grid-template-columns: repeat(2, 1fr); }
  .rg-founder-grid { grid-template-columns: 1fr; }
  .rg-footer-inner { grid-template-columns: 1fr; gap: 1.6rem; }
  .rg-product-art { min-height: 220px; }
}
@media (min-width: 901px) and (max-width: 1100px) {
  .rg-brand-grid { grid-template-columns: repeat(3, 1fr); }
}
