/* ═══════════════════════════════════════════════════════════════════════════
   RED WARDEN STUDIOS — CSS
   v2: Cinematic / Game-Studio Aesthetic
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── VARIABLES ─────────────────────────────────────────────────────────── */
:root {
  --rws-crimson:      #C0392B;
  --rws-crimson-glow: rgba(192, 57, 43, 0.15);
  --rws-crimson-dim:  rgba(192, 57, 43, 0.08);
  --rws-void:         #050506;
  --rws-black:        #080809;
  --rws-dark:         #0D0D0F;
  --rws-dark-mid:     #111114;
  --rws-border:       rgba(255, 255, 255, 0.06);
  --rws-border-red:   rgba(192, 57, 43, 0.25);
  --rws-white:        #FFFFFF;
  --rws-white-80:     rgba(255, 255, 255, 0.80);
  --rws-white-50:     rgba(255, 255, 255, 0.50);
  --rws-white-30:     rgba(255, 255, 255, 0.30);
  --rws-white-10:     rgba(255, 255, 255, 0.10);

  --font-heading: 'Cinzel', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --nav-h: 72px;
  --container-max: 1200px;
  --container-px: clamp(1.5rem, 5vw, 4rem);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── RESET ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: var(--rws-black);
  color: var(--rws-white-80);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; background: none; border: none; font: inherit; }

/* ─── GOOGLE FONTS ──────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Inter:wght@300;400;500;600&display=swap');

/* ─── UTILITIES ─────────────────────────────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}
.eyebrow {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rws-crimson);
  margin-bottom: 1.25rem;
}

/* ─── BUTTONS ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border: 1px solid transparent;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--rws-crimson);
  color: var(--rws-white);
  border-color: var(--rws-crimson);
}
.btn-primary:hover {
  background: #a8301f;
  border-color: #a8301f;
}
.btn-outline {
  background: transparent;
  color: var(--rws-white);
  border-color: rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--rws-crimson);
  color: var(--rws-crimson);
}
.btn-outline-red {
  background: transparent;
  color: var(--rws-crimson);
  border-color: var(--rws-border-red);
}
.btn-outline-red:hover {
  background: var(--rws-crimson);
  color: var(--rws-white);
}

/* ─── NAVIGATION ────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.35s, border-bottom 0.35s;
}
.nav.scrolled {
  background: rgba(8, 8, 9, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rws-border);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.nav-logo-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-red {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--rws-white);
}
.nav-logo-sub {
  font-family: var(--font-heading);
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--rws-white-30);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rws-white-50);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--rws-crimson);
  transition: width 0.25s var(--ease-out);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--rws-white);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--rws-white);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(8,8,9,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--rws-border);
  padding: 2rem var(--container-px);
  flex-direction: column;
  gap: 1.75rem;
  z-index: 99;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rws-white-80);
}

/* ─── HERO ──────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--rws-black);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}
/* Ambient crimson glow right side */
.hero::before {
  content: '';
  position: absolute;
  right: 0; top: 0;
  width: 55%;
  height: 100%;
  background: radial-gradient(ellipse at 65% 45%,
    rgba(192,57,43,0.12) 0%,
    rgba(192,57,43,0.04) 40%,
    transparent 65%);
  pointer-events: none;
}
/* Subtle noise grain overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.6;
}
.hero-left {
  padding: 4rem var(--container-px);
  padding-left: var(--container-px);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rws-white-30);
}
.hero-tagline-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero-tagline-stack .line {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6.5vw, 5.75rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.0;
  color: var(--rws-white);
}
.hero-tagline-stack .line-red {
  color: var(--rws-crimson);
}
.hero-rule {
  width: 52px;
  height: 1px;
  background: var(--rws-crimson);
  flex-shrink: 0;
}
.hero-desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--rws-white-50);
  line-height: 1.8;
  max-width: 400px;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: calc(100vh - var(--nav-h));
  position: relative;
  z-index: 1;
}
.hero-warden-img {
  width: 85%;
  max-width: 520px;
  filter: drop-shadow(0 0 80px rgba(192,57,43,0.18))
          drop-shadow(0 40px 40px rgba(0,0,0,0.4));
}

/* ─── BUILD LIST SECTION ────────────────────────────────────────────────── */
.section-build {
  background: var(--rws-dark);
  padding-block: clamp(5rem, 9vw, 8rem);
}
.section-build .section-label {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--rws-white);
  margin-bottom: 3.5rem;
}
.build-list { border-top: 1px solid var(--rws-border); }
.build-list-item {
  display: grid;
  grid-template-columns: 3rem 1fr auto;
  gap: 2rem;
  align-items: center;
  padding-block: 2.25rem;
  border-bottom: 1px solid var(--rws-border);
  transition: border-color 0.25s;
}
.build-list-item:hover { border-color: rgba(192,57,43,0.2); }
.build-num {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: var(--rws-crimson);
  font-weight: 400;
}
.build-title {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  font-weight: 700;
  color: var(--rws-white);
  letter-spacing: 0.08em;
}
.build-desc {
  font-size: 0.85rem;
  color: var(--rws-white-30);
  max-width: 280px;
  text-align: right;
  line-height: 1.6;
}

/* ─── DIVISIONS SPLIT ───────────────────────────────────────────────────── */
.divisions-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.division-panel {
  background: var(--rws-black);
  border-right: 1px solid var(--rws-border);
  display: flex;
  align-items: flex-end;
  min-height: 60vh;
  padding: clamp(2.5rem, 5vw, 4.5rem);
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}
.division-panel:last-child { border-right: none; }
.division-panel-alt { background: var(--rws-dark); }
/* Top red reveal line */
.division-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--rws-crimson);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
.division-panel:hover::before { transform: scaleX(1); }
/* Ambient glow on hover */
.division-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 80%, var(--rws-crimson-glow), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.division-panel:hover::after { opacity: 1; }
.division-panel-inner {
  position: relative;
  z-index: 1;
}
.division-tag {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rws-crimson);
  margin-bottom: 1.25rem;
}
.division-panel h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--rws-white);
  line-height: 1.0;
  margin-bottom: 1.25rem;
}
.division-panel p {
  font-size: 0.9rem;
  color: var(--rws-white-50);
  max-width: 380px;
  margin-bottom: 2rem;
  line-height: 1.75;
}
.division-link {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rws-white);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}
.division-link::after {
  content: '→';
  transition: transform 0.25s;
}
.division-link:hover { color: var(--rws-crimson); }
.division-link:hover::after { transform: translateX(4px); }

/* ─── LLYPSES FEATURE SECTION ───────────────────────────────────────────── */
.section-llypses {
  background: linear-gradient(145deg, #0F0202 0%, #0A0101 50%, #0D0D0F 100%);
  border-top: 1px solid var(--rws-border-red);
  border-bottom: 1px solid var(--rws-border-red);
  padding-block: clamp(5rem, 9vw, 8rem);
  position: relative;
  overflow: hidden;
}
.section-llypses::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 50%;
  height: 80%;
  background: radial-gradient(ellipse at 20% 50%, rgba(192,57,43,0.1), transparent 60%);
  pointer-events: none;
}
.llypses-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}
.llypses-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.llypses-glyph {
  font-family: Georgia, serif;
  font-size: clamp(5rem, 12vw, 10rem);
  color: var(--rws-crimson);
  line-height: 1;
  opacity: 0.85;
  text-shadow: 0 0 60px rgba(192,57,43,0.4);
  letter-spacing: -0.05em;
}
.llypses-text .badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--rws-border-red);
  color: var(--rws-crimson);
  margin-bottom: 1.5rem;
}
.llypses-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--rws-white);
  line-height: 1.0;
  margin-bottom: 0.75rem;
}
.llypses-pronunciation {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--rws-white-30);
  font-style: italic;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}
.llypses-text p {
  font-size: 0.95rem;
  color: var(--rws-white-50);
  line-height: 1.8;
  max-width: 420px;
  margin-bottom: 2.25rem;
}

/* ─── CTA STRIP ─────────────────────────────────────────────────────────── */
.section-cta {
  background: var(--rws-void);
  padding-block: clamp(4rem, 7vw, 6rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(192,57,43,0.06), transparent 60%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--rws-white);
  margin-bottom: 1rem;
}
.cta-inner p {
  font-size: 0.9rem;
  color: var(--rws-white-50);
  max-width: 480px;
  margin: 0 auto 2rem;
}

/* ─── PAGE HERO (inner pages) ───────────────────────────────────────────── */
.page-hero {
  background: var(--rws-black);
  padding-top: calc(var(--nav-h) + clamp(4rem, 8vw, 7rem));
  padding-bottom: clamp(4rem, 7vw, 6rem);
  padding-inline: var(--container-px);
  max-width: var(--container-max);
  margin-inline: auto;
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at 80% 30%, rgba(192,57,43,0.06), transparent 60%);
  pointer-events: none;
}
.page-hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rws-crimson);
  margin-bottom: 1.25rem;
  display: block;
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--rws-white);
  line-height: 1.0;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.page-hero-rule {
  width: 52px;
  height: 1px;
  background: var(--rws-crimson);
  margin-bottom: 1.75rem;
}
.page-hero p {
  font-size: 1rem;
  color: var(--rws-white-50);
  max-width: 540px;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

/* ─── SECTION BASE ──────────────────────────────────────────────────────── */
.section {
  padding-block: clamp(5rem, 9vw, 8rem);
}
.section-dark { background: var(--rws-dark); }
.section-black { background: var(--rws-black); }
.section-void  { background: var(--rws-void); }

/* ─── ABOUT PAGE ────────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.about-sidebar {
  border-top: 1px solid var(--rws-border);
}
.fact-item {
  padding-block: 1.5rem;
  border-bottom: 1px solid var(--rws-border);
}
.fact-label {
  font-family: var(--font-heading);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rws-crimson);
  margin-bottom: 0.35rem;
}
.fact-value {
  font-size: 0.92rem;
  color: var(--rws-white-80);
  font-weight: 500;
}
.about-body h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--rws-white);
  margin-bottom: 1.25rem;
}
.about-body p {
  font-size: 0.97rem;
  color: var(--rws-white-50);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}
.values-list {
  border-top: 1px solid var(--rws-border);
}
.value-item {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 2rem;
  padding-block: 2.25rem;
  border-bottom: 1px solid var(--rws-border);
}
.value-num {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: var(--rws-crimson);
}
.value-content h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--rws-white);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}
.value-content p {
  font-size: 0.9rem;
  color: var(--rws-white-50);
  line-height: 1.75;
}
.vision-block {
  max-width: 680px;
}
.vision-block blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--rws-white);
  line-height: 1.4;
  border-left: 2px solid var(--rws-crimson);
  padding-left: 1.75rem;
  margin-bottom: 1.75rem;
}
.vision-block p {
  font-size: 0.95rem;
  color: var(--rws-white-50);
  line-height: 1.85;
}

/* ─── DIVISIONS PAGE ────────────────────────────────────────────────────── */
.division-detail {
  padding-block: clamp(5rem, 9vw, 8rem);
  border-bottom: 1px solid var(--rws-border);
}
.division-detail-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  margin-bottom: 3rem;
  gap: 2rem;
}
.division-detail-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--rws-white);
  line-height: 1.0;
}
.division-detail-desc {
  font-size: 0.97rem;
  color: var(--rws-white-50);
  max-width: 620px;
  line-height: 1.85;
  margin-bottom: 3rem;
}
.product-list {
  border-top: 1px solid var(--rws-border);
}
.product-list-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  padding-block: 1.75rem;
  border-bottom: 1px solid var(--rws-border);
  transition: border-color 0.2s;
}
.product-list-item:hover { border-color: rgba(192,57,43,0.2); }
.product-list-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--rws-white);
}
.product-list-sub {
  font-size: 0.85rem;
  color: var(--rws-white-30);
  margin-top: 0.25rem;
}
.status-badge {
  font-family: var(--font-heading);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border: 1px solid;
  white-space: nowrap;
}
.status-live { border-color: rgba(192,57,43,0.4); color: var(--rws-crimson); }
.status-beta { border-color: rgba(192,57,43,0.3); color: rgba(192,57,43,0.8); }
.status-dev  { border-color: rgba(255,255,255,0.15); color: var(--rws-white-30); }
.status-soon { border-color: rgba(255,255,255,0.08); color: rgba(255,255,255,0.2); }

/* ─── PRODUCTS PAGE ─────────────────────────────────────────────────────── */
.product-featured-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
  padding-block: clamp(5rem, 9vw, 8rem);
}
.product-featured-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #0F0202, #0A0101);
  border: 1px solid var(--rws-border-red);
  min-height: 360px;
}
.product-featured-glyph {
  font-family: Georgia, serif;
  font-size: clamp(4rem, 10vw, 8rem);
  color: var(--rws-crimson);
  text-shadow: 0 0 50px rgba(192,57,43,0.4);
  line-height: 1;
}
.product-featured-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--rws-white);
  line-height: 1.0;
  margin-bottom: 0.6rem;
}
.product-featured-text .pronunciation {
  font-size: 0.8rem;
  color: var(--rws-white-30);
  font-style: italic;
  margin-bottom: 1.5rem;
}
.product-featured-text p {
  font-size: 0.95rem;
  color: var(--rws-white-50);
  line-height: 1.8;
  max-width: 420px;
  margin-bottom: 2rem;
}

/* ─── CONTACT PAGE ──────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--rws-white);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.contact-info p {
  font-size: 0.92rem;
  color: var(--rws-white-50);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.contact-info-items { border-top: 1px solid var(--rws-border); }
.contact-info-item {
  padding-block: 1.25rem;
  border-bottom: 1px solid var(--rws-border);
}
.contact-info-label {
  font-family: var(--font-heading);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rws-crimson);
  margin-bottom: 0.3rem;
}
.contact-info-value {
  font-size: 0.9rem;
  color: var(--rws-white-80);
}
/* Contact form */
.contact-form-wrap { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label {
  font-family: var(--font-heading);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rws-white-30);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--rws-dark);
  border: 1px solid var(--rws-border);
  color: var(--rws-white-80);
  font-family: var(--font-body);
  font-size: 0.92rem;
  padding: 0.9rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-group select { background-image: none; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(192,57,43,0.4);
}
.form-group textarea { min-height: 130px; }
.form-status {
  font-size: 0.85rem;
  padding: 0.9rem 1rem;
  border: 1px solid;
  display: none;
}
.form-status.success { border-color: rgba(192,57,43,0.4); color: var(--rws-crimson); }
.form-status.error   { border-color: rgba(255,80,80,0.4); color: rgba(255,100,100,0.9); }

/* ─── HERO LOCKUP (SVG banner image + CTAs) ────────────────────────────── */
.hero-lockup {
  background: var(--rws-black);
  padding-top: var(--nav-h);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-lockup-img {
  width: 100%;
  max-width: 100%;
  display: block;
}
.hero-lockup-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  padding: 2.5rem var(--container-px) 3.5rem;
}
/* Pronunciation inline */
.pronunciation-inline {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--rws-white-30);
  margin-left: 1.25rem;
  vertical-align: middle;
  font-style: normal;
}

/* ─── DIVISION BANDS (home page — expandable) ──────────────────────────── */
.divisions-bands {
  background: var(--rws-black);
  border-top: 1px solid var(--rws-border);
  border-bottom: 1px solid var(--rws-border);
}
.division-band {
  display: grid;
  grid-template-columns: 3rem 1fr auto;
  gap: 2.5rem;
  align-items: center;
  padding: 1.85rem var(--container-px);
  border-bottom: 1px solid var(--rws-border);
  text-decoration: none;
  position: relative;
  transition: background 0.25s;
  max-width: 100%;
}
.division-band:last-child { border-bottom: none; }
.division-band::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--rws-crimson);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s var(--ease-out);
}
.division-band:hover { background: rgba(255,255,255,0.015); }
.division-band:hover::before { transform: scaleY(1); }
.band-num {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--rws-crimson);
}
.band-body { display: flex; flex-direction: column; gap: 0.2rem; }
.band-name {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.8vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--rws-white);
}
.band-type {
  font-family: var(--font-heading);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  color: var(--rws-white-30);
  text-transform: uppercase;
}
.band-arrow {
  font-size: 1rem;
  color: var(--rws-white-30);
  transition: color 0.2s, transform 0.25s;
}
.division-band:hover .band-arrow {
  color: var(--rws-crimson);
  transform: translateX(5px);
}
@media (max-width: 640px) {
  .division-band { grid-template-columns: 2.5rem 1fr; gap: 1.25rem; }
  .band-arrow { display: none; }
}

/* ─── FOOTER ────────────────────────────────────────────────────────────── */
.footer {
  background: var(--rws-void);
  border-top: 1px solid var(--rws-border);
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
  padding-bottom: 2.5rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid 