/* =========================================================
   RPG HERO — LEGENDARY WEBSITE STYLESHEET (Full Rewrite)
   - Uses your existing HTML structure, text, and asset paths.
   - No layout/content changes required.
   ========================================================= */

@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;800&family=Inter:wght@400;500;600;700;800&display=swap");

:root{
  --bg0:#05060a;
  --bg1:#07080b;
  --bg2:#0a0b10;

  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.70);
  --muted2: rgba(255,255,255,0.56);

  --goldA:#fff6cc;
  --goldB:#f4dd92;
  --goldC:#d7b96a;
  --goldD:#8b6a2b;

  --blueA:#7cc7ff;
  --blueB:#2f7ddd;

  --panel: rgba(12,14,22,0.72);
  --panel2: rgba(10,12,18,0.82);

  --strokeW: rgba(255,255,255,0.10);
  --strokeG: rgba(215,185,106,0.18);

  --shadow1: 0 18px 60px rgba(0,0,0,0.62);
  --shadow2: 0 10px 30px rgba(0,0,0,0.55);

  --r1: 18px;
  --r2: 24px;

  --container: 1180px;
}

*{ box-sizing:border-box; }
html, body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1100px 700px at 18% -10%, rgba(124,199,255,0.12), transparent 60%),
    radial-gradient(1200px 800px at 82% -12%, rgba(215,185,106,0.12), transparent 58%),
    linear-gradient(180deg, var(--bg1), var(--bg2) 60%, var(--bg0));
  letter-spacing: 0.01em;
  overflow-x:hidden;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:none; }

/* a11y */
.skip-link{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left:16px; top:16px; width:auto; height:auto;
  padding:10px 12px;
  background: rgba(12,14,22,0.92);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  z-index: 9999;
}

/* Layout helpers */
.container{
  width: min(var(--container), calc(100% - 44px));
  margin: 0 auto;
}
.center{ text-align:center; }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header{
  position: fixed;
  top:0; left:0; right:0;
  z-index: 1000;
  padding: 12px 0;
  background: linear-gradient(180deg, rgba(6,7,10,0.76), rgba(6,7,10,0.30));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.site-header.is-elevated{
  background: linear-gradient(180deg, rgba(6,7,10,0.86), rgba(6,7,10,0.55));
  border-bottom-color: rgba(255,255,255,0.10);
  box-shadow: var(--shadow2);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
}

.brand{ display:flex; align-items:center; gap: 12px; }

/* IMPORTANT: remove "tiny logo" constraint; give it real presence */
.brand-mark{
  height: 64px;
  width: auto;
  max-width: min(560px, 46vw);
  filter: drop-shadow(0 12px 34px rgba(0,0,0,0.72))
          drop-shadow(0 0 18px rgba(215,185,106,0.18));
}
@media (max-width: 720px){
  .brand-mark{ height: 54px; max-width: min(440px, 62vw); }
  .site-header{ padding: 10px 0; }
}

.nav{ position:relative; }
.nav-menu{
  display:flex;
  align-items:center;
  gap: 12px;
}

.nav-menu a{
  font-weight: 700;
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  padding: 10px 10px;
  border-radius: 12px;
  transition: transform 140ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.nav-menu a:hover{
  color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.06);
  transform: translateY(-1px);
}
.nav-menu a.active{
  color: rgba(255,255,255,0.96);
  background: linear-gradient(180deg, rgba(215,185,106,0.14), rgba(139,106,43,0.10));
  box-shadow: inset 0 0 0 1px rgba(215,185,106,0.22), 0 12px 30px rgba(0,0,0,0.35);
}

.nav-cta{
  padding: 10px 14px !important;
  border-radius: 999px !important;
  background: linear-gradient(180deg, rgba(255,246,204,0.18), rgba(215,185,106,0.14));
  border: 1px solid rgba(255,246,204,0.16);
  box-shadow: 0 14px 34px rgba(0,0,0,0.45);
  color: rgba(255,255,255,0.92) !important;
}
.nav-cta:hover{
  background: linear-gradient(180deg, rgba(255,246,204,0.22), rgba(215,185,106,0.16));
}

/* Mobile nav */
.nav-toggle{
  display:none;
  border:0;
  background: transparent;
  padding: 10px;
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.10);
}
.nav-toggle:hover{ background: rgba(255,255,255,0.06); }
.nav-toggle-lines{
  width: 22px; height: 14px;
  display:block;
  position:relative;
}
.nav-toggle-lines::before,
.nav-toggle-lines::after{
  content:"";
  position:absolute; left:0; right:0;
  height:2px;
  background: rgba(255,255,255,0.86);
  border-radius: 2px;
}
.nav-toggle-lines::before{ top:2px; }
.nav-toggle-lines::after{ bottom:2px; }

.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;
}

@media (max-width: 920px){
  .nav-toggle{ display:inline-flex; align-items:center; justify-content:center; }
  .nav-menu{
    position:absolute;
    right:0;
    top: calc(100% + 10px);
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap: 8px;
    min-width: 240px;
    padding: 12px;
    border-radius: 18px;
    background: rgba(10,11,15,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow2);
    border: 1px solid rgba(255,255,255,0.10);
  }
  .nav.is-open .nav-menu{ display:flex; }
  .nav-menu a{ padding: 12px 12px; }
}

/* =========================================================
   SECTIONS
   ========================================================= */
.section{ padding: 70px 0; }
.section-dark{
  background:
    radial-gradient(900px 600px at 25% 0%, rgba(124,199,255,0.10), transparent 55%),
    radial-gradient(1000px 700px at 80% 0%, rgba(215,185,106,0.10), transparent 60%),
    linear-gradient(180deg, rgba(10,11,15,0.78), rgba(6,7,10,0.92));
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.section-head{ margin-bottom: 22px; }

/* Ceremonial titles (PDF vibe) */
.title{
  margin:0;
  font-family: Cinzel, ui-serif, Georgia, serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: clamp(26px, 3.2vw, 44px);

  /* Fallback */
  color: var(--goldB);
  text-shadow:
    0 1px 0 rgba(255,255,255,0.16),
    0 2px 0 rgba(0,0,0,0.28),
    0 14px 34px rgba(0,0,0,0.60);
}

@supports (-webkit-background-clip: text) or (background-clip: text){
  .title{
    background: linear-gradient(180deg,
      var(--goldA) 0%,
      var(--goldB) 20%,
      var(--goldC) 55%,
      var(--goldD) 100%);
    -webkit-background-clip:text;
    background-clip:text;
    color: transparent;
    -webkit-text-stroke: 1px rgba(20, 12, 4, 0.40);
  }
}
.subtitle{
  margin: 10px 0 0 0;
  color: var(--muted);
  max-width: 68ch;
}

/* Grids */
.grid-2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
@media (max-width: 980px){ .grid-2{ grid-template-columns: 1fr; } }

.cards-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 980px){ .cards-3{ grid-template-columns: 1fr; } }

/* =========================================================
   HERO (Home)
   ========================================================= */
.hero{
  position:relative;
  min-height: 92vh;
  display:flex;
  align-items:flex-end;
  padding-top: 84px; /* header offset */
  overflow:hidden;
}
.hero-bg{
  position:absolute; inset:0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.hero-home .hero-bg{
  background-image: url('../img/bg/home-hero.jpg');
}
.hero-overlay{
  position:absolute; inset:0;
  background:
    radial-gradient(900px 700px at 25% 18%, rgba(0,0,0,0.18), transparent 58%),
    radial-gradient(900px 520px at 75% 20%, rgba(110,160,255,0.10), transparent 60%),
    radial-gradient(1200px 760px at 50% 85%, rgba(0,0,0,0.72), transparent 62%),
    linear-gradient(180deg, rgba(0,0,0,0.30), rgba(0,0,0,0.84) 66%, rgba(7,8,12,0.99));
}
.hero-content{ position:relative; padding: 58px 0 74px 0; }

.hero-kicker{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  align-items:center;
  margin-bottom: 14px;
}
.pill{
  display:inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.90);
  background: linear-gradient(180deg, rgba(12,14,22,0.74), rgba(10,12,18,0.40));
  border: 1px solid rgba(215,185,106,0.14);
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
}
.dot{ color: rgba(255,255,255,0.30); }
.muted{ color: var(--muted); }
.small{ font-size: 13px; color: var(--muted2); }

.hero-title{
  margin: 0 0 12px 0;
  font-size: clamp(38px, 5.2vw, 74px);
  line-height: 1.03;
  font-weight: 800;
  font-family: Cinzel, ui-serif, Georgia, serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;

  /* Fallback */
  color: var(--goldB);
  text-shadow:
    0 1px 0 rgba(255,255,255,0.20),
    0 2px 0 rgba(0,0,0,0.25),
    0 18px 52px rgba(0,0,0,0.70);
}

@supports (-webkit-background-clip: text) or (background-clip: text){
  .hero-title{
    background: linear-gradient(180deg,
      var(--goldA) 0%,
      var(--goldB) 18%,
      var(--goldC) 55%,
      var(--goldD) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-stroke: 1px rgba(20, 12, 4, 0.45);
  }
}

/* Metallic gold accent (matches your PDF vibe) */
.accent{
  display:inline-block;
  font-family: Cinzel, ui-serif, Georgia, serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.86em;
  background: linear-gradient(180deg, var(--goldA), var(--goldB) 20%, var(--goldC) 55%, var(--goldD) 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
  -webkit-text-stroke: 1px rgba(20, 12, 4, 0.38);
  text-shadow:
    0 1px 0 rgba(255,255,255,0.16),
    0 2px 0 rgba(0,0,0,0.28),
    0 14px 34px rgba(0,0,0,0.60);
}

.hero-sub{
  max-width: 70ch;
  margin: 0 0 18px 0;
  color: rgba(245,245,255,0.90);
  font-size: 16px;
  line-height: 1.65;
  text-shadow: 0 10px 28px rgba(0,0,0,0.65);
}

.hero-actions{ display:flex; flex-wrap:wrap; gap: 10px; margin-top: 8px; }

.hero-fade{
  position:absolute; left:0; right:0; bottom:0;
  height: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  background: linear-gradient(90deg, transparent, rgba(255,246,204,0.18), rgba(215,185,106,0.34), rgba(255,246,204,0.18), transparent);
  pointer-events:none;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.92);
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0px); }

.btn-primary{
  background:
    linear-gradient(180deg, rgba(255,246,204,0.22), rgba(215,185,106,0.14)),
    radial-gradient(120px 52px at 50% 0%, rgba(255,255,255,0.16), transparent 70%);
  border: 1px solid rgba(255,246,204,0.20);
  box-shadow: 0 18px 48px rgba(0,0,0,0.55);
}
.btn-primary:hover{
  background:
    linear-gradient(180deg, rgba(255,246,204,0.28), rgba(215,185,106,0.16)),
    radial-gradient(140px 60px at 50% 0%, rgba(255,255,255,0.18), transparent 70%);
}

.btn-outline{
  background: rgba(0,0,0,0.18);
  border-color: rgba(215,185,106,0.34);
}
.btn-outline:hover{ background: rgba(215,185,106,0.08); }
.btn-ghost{ background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.10); }
.btn-ghost:hover{ background: rgba(255,255,255,0.08); }

/* =========================================================
   PANELS / CARDS / BANNERS
   ========================================================= */
.panel, .card, .cta, .banner{
  background:
    radial-gradient(900px 360px at 50% 0%, rgba(215,185,106,0.10), transparent 60%),
    linear-gradient(180deg, rgba(14,16,26,0.76), rgba(10,12,18,0.66));
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r2);
  box-shadow: var(--shadow1);
  position: relative;
  overflow:hidden;
}
.panel::before,
.card::before,
.cta::before,
.banner::before{
  content:"";
  position:absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events:none;
  background:
    linear-gradient(180deg, rgba(255,246,204,0.10), transparent 40%),
    linear-gradient(90deg, rgba(215,185,106,0.10), transparent 35%, rgba(215,185,106,0.08));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  padding: 1px;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.85;
}

.panel{ padding: 20px 20px; }
.card{ padding: 18px 18px; }

.panel-glow{
  background:
    radial-gradient(900px 520px at 28% 0%, rgba(124,199,255,0.14), transparent 58%),
    radial-gradient(900px 520px at 74% 0%, rgba(215,185,106,0.14), transparent 60%),
    linear-gradient(180deg, rgba(14,16,26,0.78), rgba(10,12,18,0.70));
  border-color: rgba(215,185,106,0.16);
}

.panel p, .card p{
  margin: 10px 0;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
}
.lead{ font-size: 18px; }

.bullets{
  padding-left: 18px;
  margin: 10px 0 0 0;
  color: rgba(255,255,255,0.78);
}
.bullets li{ margin: 8px 0; }

.hr{
  height: 1px;
  background: rgba(255,255,255,0.10);
  margin: 14px 0;
}

.banner{
  padding: 16px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}
.banner-text strong{
  font-family: Cinzel, ui-serif, Georgia, serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: linear-gradient(180deg, var(--goldA), var(--goldB) 20%, var(--goldC) 55%, var(--goldD));
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
  -webkit-text-stroke: 1px rgba(20, 12, 4, 0.32);
}
.banner-actions{ display:flex; gap: 10px; flex-wrap:wrap; }
@media (max-width: 800px){
  .banner{ flex-direction:column; align-items:flex-start; }
}

/* =========================================================
   GALLERY STRIP + MASONRY
   ========================================================= */
.gallery-strip{
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.gallery-item{
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 14px 40px rgba(0,0,0,0.55);
  transform: translateZ(0);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.gallery-item:hover{
  transform: translateY(-2px);
  border-color: rgba(215,185,106,0.20);
  box-shadow: 0 20px 54px rgba(0,0,0,0.62);
}
.gallery-item img{
  width:100%;
  height: 140px;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.04);
}
@media (max-width: 980px){ .gallery-strip{ grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px){
  .gallery-strip{ grid-template-columns: repeat(2, 1fr); }
  .gallery-item img{ height: 130px; }
}

.masonry{ column-count: 3; column-gap: 14px; }
.shot{
  break-inside: avoid;
  margin: 0 0 14px 0;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 52px rgba(0,0,0,0.58);
  background: rgba(0,0,0,0.22);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.shot:hover{
  transform: translateY(-2px);
  border-color: rgba(215,185,106,0.18);
  box-shadow: 0 24px 70px rgba(0,0,0,0.62);
}
.shot img{ width:100%; height:auto; display:block; filter: saturate(1.06) contrast(1.04); }
@media (max-width: 980px){ .masonry{ column-count: 2; } }
@media (max-width: 620px){ .masonry{ column-count: 1; } }

/* =========================================================
   PAGE HERO (inner pages use inline background-image)
   ========================================================= */
.page-hero{
  position:relative;
  padding-top: 84px;
  min-height: 46vh;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
}
.page-hero-bg{
  position:absolute; inset:0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.page-hero-overlay{
  position:absolute; inset:0;
  background:
    radial-gradient(900px 650px at 30% 18%, rgba(0,0,0,0.18), transparent 58%),
    radial-gradient(900px 520px at 75% 24%, rgba(110,160,255,0.09), transparent 62%),
    linear-gradient(180deg, rgba(0,0,0,0.26), rgba(0,0,0,0.90) 74%, rgba(7,8,12,0.99));
}
.page-hero-content{
  position:relative;
  padding: 44px 0 34px 0;
}
.page-hero-content h1{
  margin:0 0 6px 0;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.06;
  font-family: Cinzel, ui-serif, Georgia, serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  background: linear-gradient(180deg, var(--goldA), var(--goldB) 20%, var(--goldC) 55%, var(--goldD));
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
  -webkit-text-stroke: 1px rgba(20, 12, 4, 0.35);
  text-shadow: 0 18px 60px rgba(0,0,0,0.75);
}
.page-hero-content p{
  margin:0;
  color: rgba(255,255,255,0.74);
  max-width: 70ch;
}

/* =========================================================
   CTA
   ========================================================= */
.cta{
  padding: 24px 22px;
  text-align:center;
  background:
    radial-gradient(900px 520px at 50% 0%, rgba(215,185,106,0.14), transparent 55%),
    radial-gradient(900px 520px at 50% 0%, rgba(124,199,255,0.10), transparent 60%),
    rgba(10,11,15,0.72);
}
.cta h2{
  margin:0 0 10px 0;
  font-family: Cinzel, ui-serif, Georgia, serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: clamp(26px, 3.1vw, 44px);
  font-weight: 700;

  /* Fallback */
  color: var(--goldB);
  text-shadow:
    0 1px 0 rgba(255,255,255,0.16),
    0 2px 0 rgba(0,0,0,0.28),
    0 16px 40px rgba(0,0,0,0.65);
}

@supports (-webkit-background-clip: text) or (background-clip: text){
  .cta h2{
    background: linear-gradient(180deg,
      var(--goldA) 0%,
      var(--goldB) 20%,
      var(--goldC) 55%,
      var(--goldD) 100%);
    -webkit-background-clip:text;
    background-clip:text;
    color: transparent;
    -webkit-text-stroke: 1px rgba(20, 12, 4, 0.38);
  }
}
.cta p{ color: rgba(255,255,255,0.78); margin: 0 0 14px 0; }
.cta-actions{ display:flex; gap: 10px; justify-content:center; flex-wrap:wrap; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{
  padding: 26px 0 40px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(6,7,10,0.92);
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}
.footer-right{ display:flex; gap: 14px; flex-wrap:wrap; }
.footer-right a{ color: rgba(255,255,255,0.72); }
.footer-right a:hover{ color: rgba(255,255,255,0.92); }
@media (max-width: 720px){
  .footer-inner{ flex-direction:column; align-items:flex-start; }
}

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */
.reveal{
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .60s ease, transform .60s ease;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* Anchor jumps with fixed header */
:target{ scroll-margin-top: 100px; }

/* Legendary gold treatment for hero headline */
.hero-title {
  font-family: Cinzel, ui-serif, Georgia, serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;

  background: linear-gradient(180deg, var(--goldA), var(--goldB) 20%, var(--goldC) 55%, var(--goldD) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  -webkit-text-stroke: 1px rgba(20, 12, 4, 0.35);
  text-shadow:
    0 1px 0 rgba(255,255,255,0.14),
    0 2px 0 rgba(0,0,0,0.28),
    0 18px 60px rgba(0,0,0,0.70);
}
/* Make hero gold read more “premium” over busy imagery */
.hero-title{
  filter: saturate(1.12) contrast(1.06);
  text-shadow:
    0 1px 0 rgba(255,255,255,0.20),
    0 3px 0 rgba(0,0,0,0.36),
    0 22px 70px rgba(0,0,0,0.78);
}

.hero-content::before{
  content:"";
  position:absolute;
  left:-18px;
  top: 34px;
  width: min(760px, 92vw);
  height: 340px;
  background: radial-gradient(closest-side, rgba(0,0,0,0.62), rgba(0,0,0,0.0));
  filter: blur(2px);
  pointer-events:none;
}


/* =========================================================
   RPG HERO — LEGENDARY GOLD HEADINGS
   Drop-in styles to make key headings cinematic gold.
   Append this to the END of your existing main.css
   (do NOT replace your whole stylesheet with this file).
   ========================================================= */

:root{
  --goldHi: #fff6d6;
  --goldA:  #ffe08a;
  --goldB:  #f6c24f;
  --goldC:  #d29a23;
  --goldD:  #8a5a10;
}

.hero-title,
h2.title,
.cta h2{
  font-family: Cinzel, ui-serif, Georgia, serif;
  text-transform: uppercase;
  letter-spacing: .08em;

  background: linear-gradient(
    180deg,
    var(--goldHi) 0%,
    var(--goldA) 14%,
    var(--goldB) 32%,
    var(--goldC) 62%,
    var(--goldD) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  -webkit-text-stroke: 1px rgba(20, 12, 4, 0.55);

  text-shadow:
    0 1px 0 rgba(255,255,255,0.35),
    0 2px 0 rgba(0,0,0,0.35),
    0 18px 60px rgba(0,0,0,0.70);

  filter: saturate(1.18) contrast(1.10);
}

.hero-content{ position: relative; }

.hero-content::before{
  content:"";
  position:absolute;
  left:-24px;
  top:10px;
  width:min(900px, 95vw);
  height:320px;
  background: radial-gradient(closest-side, rgba(0,0,0,0.60), rgba(0,0,0,0));
  pointer-events:none;
}

/* Reusable: match the page hero H1 gold look (World & Lore) */
.gold-hero{
  margin:0 0 6px 0;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.06;
  font-family: Cinzel, ui-serif, Georgia, serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;

  background: linear-gradient(180deg, var(--goldA), var(--goldB) 20%, var(--goldC) 55%, var(--goldD));
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;

  -webkit-text-stroke: 1px rgba(20, 12, 4, 0.35);
  text-shadow: 0 18px 60px rgba(0,0,0,0.75);
}

h2 .accent,
h1 .accent {
  font-size: inherit;
}
/* H2/H3: force hero-level gold punch without changing font sizes */
.title.gold-hero-paint,
h2.gold-hero-paint,
h3.gold-hero-paint{
  background: linear-gradient(180deg, var(--goldA), var(--goldB) 20%, var(--goldC) 55%, var(--goldD) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  -webkit-text-stroke: 1px rgba(20, 12, 4, 0.35);

  /* Hero “pop” */
  filter: saturate(1.12) contrast(1.06);
  text-shadow:
    0 1px 0 rgba(255,255,255,0.20),
    0 3px 0 rgba(0,0,0,0.36),
    0 22px 70px rgba(0,0,0,0.78);
}


.hero-title.section-size{
  font-size: clamp(22px, 2.2vw, 34px);
}

.heading-lg { font-size: clamp(34px, 4.4vw, 58px); }
.heading-md { font-size: clamp(22px, 2.2vw, 34px); }
.heading-sm { font-size: clamp(18px, 1.8vw, 26px); }





.gold-hero{
  /* your gradient paint stays here */
  background: linear-gradient(180deg,
    var(--goldHi) 0%,
    var(--goldA) 18%,
    var(--goldB) 40%,
    var(--goldC) 70%,
    var(--goldD) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Clean + bright (no gritty texture) */
.gold-hero,
.hero-title{
  filter: saturate(1.08) contrast(1.04) !important;
  -webkit-text-stroke: 0.25px rgba(20,12,4,0.22) !important;
  text-shadow:
    0 1px 0 rgba(255,255,255,0.18),
    0 16px 60px rgba(0,0,0,0.72) !important;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

/* --- LOGO SIZE OVERRIDE --- */
.brand-mark{
  height: 100px !important;
  width: auto !important;
  max-width: none !important;
}

/* your header is fixed, so make room for the taller logo */
.site-header{
  padding: 10px 0 !important;
}

/* push hero content down so it doesn't hide behind the taller fixed header */
.hero{ padding-top: 210px !important; }
.page-hero{ padding-top: 210px !important; }








/* RPG HERO Accordion (theme-matched) */
.rh-accordion{
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.rh-item{
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  box-shadow: 0 10px 26px rgba(0,0,0,0.45);
  overflow: hidden;
}

/* Hide default marker */
.rh-item > summary{
  list-style: none;
}
.rh-item > summary::-webkit-details-marker{
  display: none;
}

.rh-summary{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  cursor: pointer;
  user-select: none;
}

.rh-title{
  font-weight: 800;
  letter-spacing: 0.2px;
}

.rh-icon{
  width: 14px;
  height: 14px;
  position: relative;
  flex: 0 0 14px;
  opacity: 0.9;
}
.rh-icon::before,
.rh-icon::after{
  content:"";
  position:absolute;
  inset: 0;
  margin:auto;
  background: rgba(255, 215, 140, 0.95);
  border-radius: 2px;
  box-shadow: 0 0 18px rgba(255, 215, 140, 0.15);
}
.rh-icon::before{ width: 14px; height: 2px; }
.rh-icon::after{ width: 2px; height: 14px; }

.rh-item[open] .rh-icon::after{
  height: 0; /* turns plus into minus when open */
}

.rh-body{
  padding: 0 18px 16px 18px;
  color: rgba(255,255,255,0.86);
}

.rh-body p{
  margin-top: 10px;
}

/* Hover / focus polish */
.rh-item:hover{
  border-color: rgba(255, 215, 140, 0.22);
}
.rh-summary:focus{
  outline: none;
}
.rh-summary:focus-visible{
  outline: 2px solid rgba(255, 215, 140, 0.28);
  outline-offset: 3px;
}

/* Responsive spacing */
@media (max-width: 640px){
  .rh-summary{ padding: 14px 14px; }
  .rh-body{ padding: 0 14px 14px 14px; }
}




/* --- Instagram Embed: hard containment --- */
.ig-embed-wrap{
  display: flex;
  justify-content: center;
}

.ig-embed-wrap .instagram-media{
  /* Instagram sets width inline; override it */
  width: 100% !important;
  max-width: 420px !important; /* adjust: 380-520 is usually best */
  min-width: 0 !important;

  /* keep it from overflowing */
  overflow: hidden !important;

  /* optional: match your premium panel vibe */
  border-radius: 16px !important;
  margin: 0 auto !important;
}

/* Instagram sometimes injects an iframe */
.ig-embed-wrap iframe{
  width: 100% !important;
  max-width: 420px !important;
}

/* On larger screens you can allow it a bit wider */
@media (min-width: 900px){
  .ig-embed-wrap .instagram-media,
  .ig-embed-wrap iframe{
    max-width: 520px !important;
  }
}





.grad-line-inline{
  display:inline-block;
  background: var(--gold-gradient);
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}

@media (max-width: 720px){
  .mobile-break{ display:block; }
}



.grad-line { display: block; }



.bullets-spaced li { margin-bottom: 12px; }
.bullets-spaced li:last-child { margin-bottom: 0; }



.rh-collapse-bottom {
  text-align: center;
  margin-top: 32px;
}

.rh-close-btn {
  background: none;
  border: none;
  color: #d8b26e;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
}

.rh-close-btn:hover {
  text-decoration: underline;
}

.rh-collapse-bottom {
  text-align: center;
  margin-top: 32px;
}

.rh-collapse-divider {
  height: 1px;
  width: min(520px, 92%);
  margin: 0 auto 14px auto;
  background: linear-gradient(
    90deg,
    rgba(216, 178, 110, 0),
    rgba(216, 178, 110, 0.28),
    rgba(216, 178, 110, 0)
  );
  opacity: 0.9;
}

.rh-close-btn {
  background: none;
  border: none;
  color: #d8b26e;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
}

.rh-close-btn:hover {
  text-decoration: underline;
}

details.rh-item > summary { scroll-margin-top: 110px; }


.status-check{
  width: 24px;
  height: 24px;
  vertical-align: -4px; /* tweak to align with your text baseline */
  margin-right: 10px;
}

/* =========================================================
   STATUS PAGE — CHECKMARK + ROW ALIGNMENT FIX (MOBILE SAFE)
   - Uses CSS Grid to prevent icon/text stacking on mobile.
   - Isolated; does NOT affect accordion collapse behavior.
   ========================================================= */

/* One row = 24px icon column + flexible text column */
.status-list .status-item{
  display: grid;
  grid-template-columns: 24px 1fr;
  column-gap: 10px;
  align-items: start;
}

/* Remove default paragraph spacing inside status rows */
.status-list .status-item p{
  margin: 0;
}

/* Lock icon size + override global img{max-width:100%} */
.status-list .status-item .status-check{
  width: 24px;
  height: 24px;
  display: block;
  max-width: none;
}

/* Micro-tweak for mobile font metrics */
@media (max-width: 720px){
  .status-list .status-item .status-check{
    margin-top: 2px;
  }
}

