/* ═══════════════════════════════════════════════════════════════
   PANTHEONIC CLOUD — main.css
   Sovereign Intelligence Infrastructure
   Aesthetic: Deep cosmos · Living geometry · Liquid gold
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=DM+Mono:wght@300;400&family=Instrument+Serif:ital@0;1&display=swap');

/* ── TOKENS ──────────────────────────────────────────────────── */
:root {
  --navy:        #07090f;
  --navy-mid:    #0b0e18;
  --navy-light:  #111422;
  --cream:       #f0ead8;
  --cream-dim:   #c8bfa8;
  --gold:        #c9a84c;
  --gold-bright: #e2c46a;
  --gold-dim:    #7a6330;
  --gold-ghost:  rgba(201,168,76,0.06);
  --mid-text:    #8a8070;
  --rule:        rgba(201,168,76,0.12);
  --rule-dim:    rgba(201,168,76,0.06);
  --rule-bright: rgba(201,168,76,0.25);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-mono:  'DM Mono', 'Courier New', monospace;
  --font-body:  'Instrument Serif', Georgia, serif;

  --ease-silk: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-gold: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET & BASE ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--navy);
  color: var(--cream-dim);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Living background — deep field noise */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 80% at 20% 10%, rgba(201,168,76,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 80% 90%, rgba(11,14,24,0.8) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 60% 40%, rgba(201,168,76,0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* Grain texture overlay */
body::after {
  content: '';
  position: fixed;
  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='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

* { position: relative; z-index: 1; }

/* ── TYPOGRAPHY ──────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: -0.01em;
  line-height: 1.05;
}

p { line-height: 1.75; }

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.25s var(--ease-gold), opacity 0.25s;
}
a:hover { color: var(--gold-bright); }

strong { font-weight: 500; }

/* ── NAVIGATION ──────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 72px;
  background: rgba(7,9,15,0.85);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--rule-dim);
  transition: border-color 0.4s var(--ease-gold);
}

.nav-wordmark {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-wordmark:hover { color: var(--gold-bright); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mid-text);
  text-decoration: none;
  transition: color 0.25s;
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-silk);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* ── SECTIONS ────────────────────────────────────────────────── */
section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 60px;
  border-bottom: 1px solid var(--rule-dim);
}

section:last-of-type { border-bottom: none; }

/* ── SECTION LABELS ──────────────────────────────────────────── */
.section-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.5em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 24px;
}

/* ── SECTION TITLES ──────────────────────────────────────────── */
.section-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 72px);
  color: var(--cream);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

/* ── SECTION BODY ────────────────────────────────────────────── */
.section-body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--mid-text);
  line-height: 1.8;
  max-width: 640px;
}

.section-body p { margin-bottom: 20px; }
.section-body p:last-child { margin-bottom: 0; }

/* ── STATEMENT ───────────────────────────────────────────────── */
.statement {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 3vw, 34px);
  color: var(--cream);
  line-height: 1.5;
  border-left: 2px solid var(--gold-dim);
  padding-left: 36px;
  margin: 40px 0;
}

/* ── MATH BLOCK ──────────────────────────────────────────────── */
.math-block {
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 2;
  color: var(--gold-dim);
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--rule);
  padding: 36px 40px;
  position: relative;
  overflow: hidden;
}

.math-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--gold-dim), transparent);
}

/* ── TWO-COL / THREE-COL ─────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule-dim);
  border: 1px solid var(--rule-dim);
  margin-top: 48px;
}

/* ── CARDS ───────────────────────────────────────────────────── */
.card {
  background: var(--navy-mid);
  padding: 48px 40px;
  border: none;
  transition: background 0.4s var(--ease-gold);
  cursor: pointer;
}

.card:hover { background: rgba(201,168,76,0.04); }

.card-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.card-title {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.2;
  transition: color 0.25s;
}

.card:hover .card-title { color: var(--gold-bright); }

.card-body {
  font-size: 14px;
  color: var(--mid-text);
  line-height: 1.7;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 14px 28px;
  text-decoration: none;
  transition: all 0.3s var(--ease-gold);
  background: transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(201,168,76,0.07);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-silk);
}

.btn:hover {
  color: var(--gold-bright);
  border-color: var(--gold);
}

.btn:hover::before { transform: scaleX(1); }

.btn-full { width: 100%; justify-content: center; }

/* ── FORMS ───────────────────────────────────────────────────── */
.form-group { margin-bottom: 24px; }

.form-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.35em;
  color: var(--mid-text);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--rule);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold-dim);
  background: rgba(201,168,76,0.03);
}

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

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a6330' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  cursor: pointer;
}

/* ── SCROLL REVEAL ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-silk), transform 0.8s var(--ease-silk);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── FOOTER ──────────────────────────────────────────────────── */
footer {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 60px 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  border-top: 1px solid var(--rule-dim);
}

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13px;
  color: var(--mid-text);
  text-decoration: none;
  transition: color 0.25s;
}

.footer-links a:hover { color: var(--cream); }

.footer-copy {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 60px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--rule-dim);
}

.footer-copy-text {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--gold-dim);
  text-transform: uppercase;
}

/* ── ANIMATIONS — LIVING GEOMETRY ────────────────────────────── */

/* Pulse for active node dots */
@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(201,168,76,0.4), 0 0 8px rgba(201,168,76,0.3);
    opacity: 1;
  }
  50% {
    box-shadow: 0 0 0 8px rgba(201,168,76,0), 0 0 16px rgba(201,168,76,0.1);
    opacity: 0.8;
  }
}

/* Fade in */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Fade up */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Liquid drift — for background elements */
@keyframes liquidDrift {
  0%   { transform: translate(0, 0) rotate(0deg) scale(1); }
  25%  { transform: translate(2%, 1%) rotate(0.5deg) scale(1.01); }
  50%  { transform: translate(-1%, 2%) rotate(-0.3deg) scale(0.99); }
  75%  { transform: translate(1%, -1%) rotate(0.2deg) scale(1.005); }
  100% { transform: translate(0, 0) rotate(0deg) scale(1); }
}

/* Spectral shimmer — for gold accents */
@keyframes spectralShimmer {
  0%, 100% { opacity: 0.06; }
  33%       { opacity: 0.10; }
  66%       { opacity: 0.04; }
}

/* Ring expansion — for geometric rings */
@keyframes ringExpand {
  from { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
  to   { opacity: 0.08; transform: translate(-50%, -50%) scale(1.06); }
}

/* Scroll line drop */
@keyframes scrollDrop {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* Float — gentle levitation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* Trace line — horizontal scan */
@keyframes traceLine {
  0%   { left: -100%; }
  100% { left: 200%; }
}

/* ── GEOMETRIC CANVAS (for pages with animated geometry) ─────── */
.geo-canvas {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.geo-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.15), transparent);
  height: 1px;
  width: 40%;
  animation: traceLine 8s linear infinite;
}

.geo-line:nth-child(2) { animation-delay: 3s; top: 30%; width: 25%; }
.geo-line:nth-child(3) { animation-delay: 5.5s; top: 60%; width: 35%; }
.geo-line:nth-child(4) { animation-delay: 1.5s; top: 80%; width: 20%; }

/* Menger-inspired grid overlay */
.geo-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  animation: spectralShimmer 12s ease-in-out infinite;
}

/* Orbiting particle */
.geo-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(201,168,76,0.4), rgba(201,168,76,0.05) 60%, transparent);
  animation: liquidDrift 20s ease-in-out infinite;
  pointer-events: none;
}

/* ── HERO / LANDING SPECIFIC ─────────────────────────────────── */
.landing-sequence {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 60px 80px;
  position: relative;
  overflow: hidden;
}

/* Animated concentric rings */
.geo-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
}

.ring-1 {
  width: 500px; height: 500px;
  border: 1px solid rgba(201,168,76,0.08);
  animation: ringExpand 8s ease-in-out infinite alternate;
}

.ring-2 {
  width: 800px; height: 800px;
  border: 1px solid rgba(201,168,76,0.05);
  animation: ringExpand 11s ease-in-out 2s infinite alternate;
}

.ring-3 {
  width: 1200px; height: 1200px;
  border: 1px solid rgba(201,168,76,0.03);
  animation: ringExpand 14s ease-in-out 4s infinite alternate;
}

/* Crosshair */
.geo-cross {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 280px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.14), transparent);
  pointer-events: none;
}

.geo-cross::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  width: 1px;
  height: 280px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.14), transparent);
}

/* Landing text animations */
.seq-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.5em;
  color: var(--gold);
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 1.2s ease 0.6s forwards;
  position: relative; z-index: 2;
}

.seq-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(60px, 9vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin: 28px 0 20px;
  opacity: 0;
  animation: fadeUp 1.4s ease 1s forwards;
  position: relative; z-index: 2;
}

.seq-title .gold {
  color: var(--gold);
  font-style: italic;
}

.seq-divider {
  width: 48px;
  height: 1px;
  background: var(--gold-dim);
  margin: 36px auto;
  opacity: 0;
  animation: fadeIn 1s ease 1.8s forwards;
  position: relative; z-index: 2;
}

.seq-sub {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 20px;
  color: var(--mid-text);
  max-width: 520px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 1s ease 2s forwards;
  position: relative; z-index: 2;
}

.seq-statement {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: rgba(201,168,76,0.45);
  margin-top: 52px;
  opacity: 0;
  animation: fadeIn 1.2s ease 2.6s forwards;
  position: relative; z-index: 2;
}

.scroll-cue {
  position: absolute;
  bottom: 48px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeIn 1s ease 3.2s forwards;
}

.scroll-cue span {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.4em;
  color: var(--mid-text);
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  animation: scrollDrop 2s ease-in-out 3.5s infinite;
}

/* ── PILLAR GRID ─────────────────────────────────────────────── */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule-dim);
  border: 1px solid var(--rule-dim);
  margin-top: 60px;
}

.pillar {
  padding: 48px 36px;
  background: var(--navy-mid);
  transition: background 0.4s var(--ease-gold);
  position: relative;
  overflow: hidden;
}

.pillar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  transition: width 0.6s var(--ease-silk);
}

.pillar:hover { background: rgba(201,168,76,0.025); }
.pillar:hover::after { width: 100%; }

.pillar-number {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 56px;
  color: rgba(201,168,76,0.1);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.4s;
}

.pillar:hover .pillar-number { color: rgba(201,168,76,0.2); }

.pillar-title {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--cream);
  margin-bottom: 14px;
  transition: color 0.25s;
}

.pillar:hover .pillar-title { color: var(--gold-bright); }

.pillar-body {
  font-size: 14px;
  color: var(--mid-text);
  line-height: 1.7;
}

/* ── PRINCIPLE BLOCK ─────────────────────────────────────────── */
.principle-block {
  background: rgba(201,168,76,0.03);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--gold);
  padding: 56px 64px;
  position: relative;
  overflow: hidden;
}

.principle-block::before {
  content: 'THE VICTORIA PRINCIPLE';
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.4em;
  color: var(--gold);
  position: absolute;
  top: -1px; left: 64px;
  background: var(--navy);
  padding: 0 14px;
  transform: translateY(-50%);
}

.principle-block::after {
  content: '∂W = W';
  position: absolute;
  bottom: 32px; right: 60px;
  font-family: var(--font-serif);
  font-size: 80px;
  color: rgba(201,168,76,0.04);
  line-height: 1;
  font-style: italic;
  pointer-events: none;
}

.principle-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 26px;
  color: var(--cream);
  line-height: 1.6;
  position: relative; z-index: 2;
}

/* ── RESEARCH LINK ───────────────────────────────────────────── */
.research-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-decoration: none;
  text-transform: uppercase;
  margin-top: 8px;
  transition: opacity 0.2s, gap 0.2s;
}

.research-link:hover { opacity: 0.7; gap: 12px; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  nav { padding: 0 40px; }
  section { padding: 80px 40px; }
  footer { padding: 60px 40px 40px; }
  .footer-copy { padding: 20px 40px; }
}

@media (max-width: 900px) {
  nav {
    padding: 0 24px;
    height: 60px;
  }

  .nav-links { gap: 24px; }
  .nav-links a { font-size: 9px; letter-spacing: 0.2em; }

  section { padding: 60px 24px; }

  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .three-col { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }

  .landing-sequence { padding: 100px 24px 60px; }
  .seq-title { font-size: clamp(42px, 12vw, 80px); }

  footer {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 24px 40px;
  }
  .footer-copy {
    flex-direction: column;
    gap: 8px;
    padding: 16px 24px;
  }

  .principle-block { padding: 40px 28px; }
  .principle-block::before { left: 28px; }
}

/* ── SCROLLBAR ───────────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb {
  background: var(--gold-dim);
  border-radius: 2px;
}
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ── SELECTION ───────────────────────────────────────────────── */
::selection {
  background: rgba(201,168,76,0.25);
  color: var(--cream);
}
