/* ======================================================================
   Alyssa & Kevin — 19.12.2026 — Guangzhou
   Shared editorial stylesheet
   ====================================================================== */

:root {
  /* Dark ruby red base — deeper than oxblood, still moody, with dimension */
  --bg: #2b070d;
  --bg-2: #380a12;
  --bg-3: #460c17;
  --ivory: #FFF6E8;
  --ivory-dim: rgba(255, 246, 232, 0.66);
  --ivory-mute: rgba(255, 246, 232, 0.42);
  --ivory-faint: rgba(255, 246, 232, 0.16);
  --rule: rgba(255, 220, 170, 0.10);
  --rule-strong: rgba(255, 220, 170, 0.24);
  --burgundy: #722F37;
  --burgundy-bright: #9c3c45;
  --burgundy-glow: rgba(180, 70, 78, 0.5);
  /* Gold replaces blush as the primary accent */
  --blush: #D8B26A;        /* kept name for back-compat; now gold */
  --blush-dim: #8a6c3a;
  --gold: #D8B26A;
  --gold-bright: #ECCE85;
  --gold-glow: rgba(232, 200, 130, 0.55);
  --blossom: #FFF5E9;      /* plum blossom petal white */

  --serif: 'Cormorant Garamond', 'Cormorant', 'Times New Roman', serif;
  --sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  --zh: 'Noto Serif SC', 'Cormorant Garamond', serif;

  --nav-h: 72px;
  --gutter: clamp(20px, 5vw, 64px);
  --maxw: 1240px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Film grain & neon haze overlay — applied to body::before */
body {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

html.nav-open,
html.nav-open body {
  overflow: hidden;
  scrollbar-width: none;
}

html.nav-open::-webkit-scrollbar,
html.nav-open body::-webkit-scrollbar {
  width: 0;
  height: 0;
}

body::before {
  /* Lantern-glow washes — push the ruby tone with brighter highlights so the
     page reads red, not just dark. */
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 45% at 8% 6%, rgba(232, 200, 130, 0.14), transparent 60%),
    radial-gradient(ellipse 55% 45% at 92% 8%, rgba(232, 200, 130, 0.10), transparent 60%),
    radial-gradient(ellipse 70% 55% at 50% 100%, rgba(168, 30, 44, 0.42), transparent 70%),
    radial-gradient(ellipse 80% 60% at 50% 35%, rgba(120, 18, 30, 0.28), transparent 75%),
    radial-gradient(ellipse 90% 70% at 50% 0%, rgba(30, 4, 10, 0.55), transparent 80%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  /* Film grain */
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 0.94  0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.08;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1000;
}

main, header, nav, section, footer { position: relative; z-index: 1; }

/* ----------------------- Typography ----------------------- */

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.05;
  color: var(--ivory);
}

.display {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(64px, 11vw, 184px);
  line-height: 0.92;
  letter-spacing: -0.025em;
}

.display .amp {
  font-style: italic;
  color: var(--blush);
  font-weight: 300;
  margin: 0 0.04em;
}

h1.page-title {
  font-size: clamp(48px, 8.5vw, 128px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  font-weight: 300;
}

h1.page-title em {
  font-style: italic;
  color: var(--blush);
}

h2.section-title {
  font-size: clamp(32px, 4.6vw, 64px);
  line-height: 1;
  letter-spacing: -0.015em;
  font-weight: 400;
}

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

h3 { font-size: clamp(22px, 2.4vw, 32px); font-weight: 400; }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--blush);
}

.eyebrow.muted { color: var(--ivory-mute); }

.lede {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.35;
  color: var(--ivory);
  max-width: 38ch;
}

p { margin: 0 0 1em; color: var(--ivory-dim); max-width: 64ch; }
p strong { color: var(--ivory); font-weight: 600; }

.zh {
  font-family: var(--zh);
  font-weight: 300;
  color: var(--blush);
  letter-spacing: 0.04em;
}

a {
  color: var(--ivory);
  text-decoration: none;
  border-bottom: 1px solid var(--ivory-faint);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
a:hover { color: var(--blush); border-color: var(--blush); }

.mono { font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; }

/* ----------------------- Navigation ----------------------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  width: 100vw;
  max-width: 100vw;
  box-sizing: border-box;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  z-index: 500;
  background: #23060c;
  border-bottom: 1px solid var(--rule);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.28);
  transition: background 0.4s var(--ease);
}

.nav-brand {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 0.02em;
  border: none;
  color: var(--ivory);
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.nav-brand .amp { font-style: italic; color: var(--blush); }
.nav-brand .date {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--ivory-mute);
  text-transform: uppercase;
  margin-left: 6px;
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ivory-dim);
  border: none;
  padding: 6px 0;
  position: relative;
}
.nav-links a:hover { color: var(--ivory); }
.nav-links a.active { color: var(--ivory); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--blush);
}

.nav-toggle {
  display: none;
  background: #3a0a14;
  border: 1px solid rgba(255, 247, 239, 0.22);
  border-radius: 999px;
  cursor: pointer;
  color: var(--ivory);
  width: 44px; height: 44px;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
  align-items: center;
  padding: 0;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
  position: relative;
  z-index: 510;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--ivory);
  transition: all 0.3s var(--ease);
}
.nav-toggle span:nth-child(2) { width: 14px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-3.5px) rotate(-45deg); width: 22px; }

@media (max-width: 880px) {
  .nav {
    background: #23060c;
  }

  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    width: 100vw;
    max-width: 100vw;
    box-sizing: border-box;
    z-index: 490;
    background: #28070e;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 48px var(--gutter);
    gap: 28px;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
    box-shadow: -18px 0 48px rgba(0, 0, 0, 0.36);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 18px; letter-spacing: 0.1em; }
  .nav-toggle { display: flex; }
  .nav-toggle.open { background: #4a0d19; }
  .nav-brand .date { display: none; }
}

/* ----------------------- Layout primitives ----------------------- */

main { padding-top: var(--nav-h); }

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

.container-wide {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section {
  padding: clamp(64px, 10vw, 140px) 0;
}

section + section { border-top: 1px solid var(--rule); }

.page-header {
  padding: clamp(80px, 12vw, 180px) 0 clamp(48px, 7vw, 90px);
  border-bottom: 1px solid var(--rule);
}

.page-header .eyebrow { margin-bottom: 24px; display: block; }
.page-header .lede { margin-top: 32px; }

.rule { height: 1px; background: var(--rule); border: none; margin: 48px 0; }

/* ----------------------- Buttons ----------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  padding: 16px 28px;
  border: 1px solid var(--ivory-faint);
  background: transparent;
  color: var(--ivory);
  cursor: pointer;
  transition: all 0.35s var(--ease);
  border-radius: 0;
  text-decoration: none;
}
.btn:hover {
  background: var(--ivory);
  color: var(--bg);
  border-color: var(--ivory);
}

.btn-burgundy {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: var(--ivory);
}
.btn-burgundy:hover {
  background: var(--burgundy-bright);
  border-color: var(--burgundy-bright);
  color: var(--ivory);
}

.btn .arrow { font-size: 14px; transition: transform 0.3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ----------------------- Image placeholders ----------------------- */

.plate {
  position: relative;
  background: var(--bg-2);
  overflow: hidden;
  border: 1px solid var(--rule);
}
.plate::before {
  /* diagonal stripe pattern */
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(135deg,
      rgba(232, 197, 193, 0.025) 0px,
      rgba(232, 197, 193, 0.025) 1px,
      transparent 1px,
      transparent 14px);
}
.plate::after {
  /* neon wash */
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 30% 70%, rgba(114, 47, 55, 0.5), transparent 60%),
    radial-gradient(ellipse 40% 50% at 80% 20%, rgba(232, 197, 193, 0.10), transparent 60%);
  mix-blend-mode: screen;
}
.plate .plate-label {
  position: absolute;
  bottom: 14px;
  left: 16px;
  right: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory-mute);
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.plate .plate-label::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--blush);
  align-self: center;
  margin-right: 12px;
  flex: 0 0 22px;
}
.plate .plate-tag {
  position: absolute;
  top: 14px;
  left: 16px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blush);
  z-index: 2;
}

/* When a photo is present, image fills the plate and the placeholder
   stripe/wash overlays are hidden. The small mono plate-tag is kept
   over a subtle gradient scrim for readability. */
.plate .plate-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  display: block;
}
.plate.has-photo { background: var(--bg-2); }
.plate.has-photo::before { display: none; }
.plate.has-photo::after {
  background: linear-gradient(to bottom,
    rgba(0,0,0,0.35) 0%,
    rgba(0,0,0,0) 28%,
    rgba(0,0,0,0) 100%);
  mix-blend-mode: normal;
  z-index: 1;
  pointer-events: none;
}
.plate.has-photo .plate-tag {
  color: #f6e9e3;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}

/* ----------------------- Fade-in on scroll ----------------------- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

/* ----------------------- Footer ----------------------- */

.footer {
  border-top: 1px solid var(--rule);
  padding: 56px var(--gutter) 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory-mute);
}
.footer .footer-mark {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--ivory);
}
.footer .footer-mark .amp { font-style: italic; color: var(--blush); }

/* ----------------------- Utility ----------------------- */

.flex { display: flex; }
.flex-col { display: flex; flex-direction: column; }
.gap-sm { gap: 12px; }
.gap-md { gap: 24px; }
.gap-lg { gap: 48px; }
.center { text-align: center; }

.divider-dot::before {
  content: '·';
  margin: 0 14px;
  color: var(--ivory-mute);
}

/* Selection */
::selection { background: var(--burgundy); color: var(--ivory); }

/* Scrollbar - subtle */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(216, 178, 106, 0.18); border-radius: 0; }
::-webkit-scrollbar-thumb:hover { background: rgba(216, 178, 106, 0.32); }

/* =====================================================================
   MOTIFS — Glowing lanterns + plum blossoms
   ===================================================================== */

/* Floating lanterns (positioned via JS or inline placement) */
.lantern {
  position: absolute;
  width: 56px;
  height: 84px;
  pointer-events: none;
  opacity: 0.85;
  z-index: 2;
  animation: lantern-sway 7s ease-in-out infinite;
  transform-origin: 50% 0%;
  filter: drop-shadow(0 0 18px rgba(232, 200, 130, 0.45));
}
.lantern.lantern-sm { width: 38px; height: 58px; opacity: 0.7; }
.lantern.lantern-lg { width: 76px; height: 114px; opacity: 0.9; }
.lantern-2 { animation-duration: 9s; animation-delay: -2s; }
.lantern-3 { animation-duration: 11s; animation-delay: -4.5s; }

@keyframes lantern-sway {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  50%      { transform: rotate(3deg) translateY(-4px); }
}

@keyframes lantern-glow {
  0%, 100% { filter: drop-shadow(0 0 16px rgba(232,200,130,0.40)); }
  50%      { filter: drop-shadow(0 0 28px rgba(232,200,130,0.65)); }
}

/* String above the lantern */
.lantern .string {
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 18%;
  background: linear-gradient(180deg, transparent, var(--gold) 50%, var(--gold));
  transform: translateX(-50%);
}

/* Lantern body */
.lantern .body {
  position: absolute;
  left: 8%;
  top: 18%;
  right: 8%;
  height: 60%;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(255, 200, 110, 0.85) 0%, rgba(220, 100, 70, 0.55) 55%, rgba(140, 30, 30, 0.6) 100%);
  border-radius: 50% / 45%;
  border: 1px solid rgba(232, 200, 130, 0.7);
  box-shadow:
    inset 0 0 18px rgba(255, 200, 110, 0.5),
    0 0 22px rgba(232, 150, 90, 0.35);
  animation: lantern-glow 4s ease-in-out infinite;
}
.lantern .body::before,
.lantern .body::after {
  content: '';
  position: absolute;
  left: 6%;
  right: 6%;
  height: 1px;
  background: rgba(232, 200, 130, 0.4);
}
.lantern .body::before { top: 30%; }
.lantern .body::after  { bottom: 30%; }

/* Caps */
.lantern .cap-top,
.lantern .cap-bot {
  position: absolute;
  left: 22%;
  right: 22%;
  height: 4%;
  background: var(--gold);
  border-radius: 2px;
}
.lantern .cap-top { top: 16%; }
.lantern .cap-bot { top: 78%; }

/* Tassel */
.lantern .tassel {
  position: absolute;
  left: 50%;
  top: 82%;
  width: 1px;
  height: 12%;
  background: var(--gold);
  transform: translateX(-50%);
}
.lantern .tassel::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -3px;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 6px var(--gold-glow);
}

/* Fixed decorative lantern positions, hidden on phones to keep screens clean */
.lantern-fixed {
  position: fixed;
  z-index: 3;
}
.lantern-corner-tl { top: calc(var(--nav-h) + 24px); left: 4vw; }
.lantern-corner-tr { top: calc(var(--nav-h) + 48px); right: 5vw; }

@media (max-width: 880px) {
  .lantern-fixed { display: none; }
}

/* ----- Plum blossoms ----- */

/* Inline blossom mark — works as a tiny ornament between text or as section break */
.blossom {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.12em;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle cx='12' cy='5.5' r='3.6' fill='%23FFF5E9'/><circle cx='18.1' cy='9.4' r='3.6' fill='%23FFF5E9'/><circle cx='15.7' cy='16.7' r='3.6' fill='%23FFF5E9'/><circle cx='8.3' cy='16.7' r='3.6' fill='%23FFF5E9'/><circle cx='5.9' cy='9.4' r='3.6' fill='%23FFF5E9'/><circle cx='12' cy='11' r='1.6' fill='%23D8B26A'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.95;
  filter: drop-shadow(0 0 6px rgba(255, 245, 233, 0.25));
}
.blossom.gold {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle cx='12' cy='5.5' r='3.6' fill='%23D8B26A'/><circle cx='18.1' cy='9.4' r='3.6' fill='%23D8B26A'/><circle cx='15.7' cy='16.7' r='3.6' fill='%23D8B26A'/><circle cx='8.3' cy='16.7' r='3.6' fill='%23D8B26A'/><circle cx='5.9' cy='9.4' r='3.6' fill='%23D8B26A'/><circle cx='12' cy='11' r='1.6' fill='%23ECCE85'/></svg>");
}
.blossom.lg { width: 1.6em; height: 1.6em; }
.blossom.xl { width: 2.4em; height: 2.4em; }

/* Blossom section divider: a single blossom centered with hairlines either side */
.blossom-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: clamp(40px, 6vw, 72px) 0;
}
.blossom-divider::before,
.blossom-divider::after {
  content: '';
  flex: 0 1 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rule-strong), transparent);
}
.blossom-divider .blossom { width: 22px; height: 22px; }

/* Drifting blossoms layer (fixed, decorative, very subtle) */
.blossom-drift {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}
.blossom-drift .b {
  position: absolute;
  width: 14px;
  height: 14px;
  opacity: 0.18;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle cx='12' cy='5.5' r='3.6' fill='%23FFF5E9'/><circle cx='18.1' cy='9.4' r='3.6' fill='%23FFF5E9'/><circle cx='15.7' cy='16.7' r='3.6' fill='%23FFF5E9'/><circle cx='8.3' cy='16.7' r='3.6' fill='%23FFF5E9'/><circle cx='5.9' cy='9.4' r='3.6' fill='%23FFF5E9'/><circle cx='12' cy='11' r='1.6' fill='%23D8B26A'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  animation: drift 22s linear infinite;
}
.blossom-drift .b:nth-child(1) { left: 8%;  top: -5%;  animation-delay:  0s;  animation-duration: 26s; }
.blossom-drift .b:nth-child(2) { left: 28%; top: -12%; animation-delay: -4s;  animation-duration: 30s; width: 18px; height: 18px; opacity: 0.22; }
.blossom-drift .b:nth-child(3) { left: 52%; top: -8%;  animation-delay: -9s;  animation-duration: 34s; width: 10px; height: 10px; opacity: 0.14; }
.blossom-drift .b:nth-child(4) { left: 74%; top: -15%; animation-delay: -14s; animation-duration: 28s; width: 16px; height: 16px; }
.blossom-drift .b:nth-child(5) { left: 88%; top: -4%;  animation-delay: -18s; animation-duration: 32s; }

@keyframes drift {
  0%   { transform: translate3d(0,   0,     0) rotate(0deg);   opacity: 0; }
  8%   { opacity: 0.22; }
  92%  { opacity: 0.18; }
  100% { transform: translate3d(40px, 110vh, 0) rotate(180deg); opacity: 0; }
}

/* Honor reduced motion */
@media (prefers-reduced-motion: reduce) {
  .lantern, .lantern .body { animation: none !important; }
  .blossom-drift .b { animation: none !important; opacity: 0.12 !important; }
}

/* Re-tint the eyebrow / accent text from blush-pink to gold (alias already
   handles most cases; explicit eyebrow class is gold for extra warmth) */
.eyebrow { color: var(--gold); }
.zh { color: var(--gold); }

/* Plate accents pick up gold/red wash */
.plate::after {
  background:
    radial-gradient(ellipse 50% 60% at 30% 70%, rgba(140, 24, 32, 0.55), transparent 60%),
    radial-gradient(ellipse 40% 50% at 80% 20%, rgba(216, 178, 106, 0.14), transparent 60%) !important;
}
