/* Fantasy Scene Commission page (matches Policies vibe) */

.fantasy-body .page-shell{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.fantasy-body .parchment-wrapper{
  position: relative;
  flex: 1 0 auto;
  height: auto !important;
  min-height: 0 !important;
  padding-bottom: 120px;
}

.fantasy-body .parchment{
  position: absolute;
  inset: 0;
  height: 100%;
}

.fantasy-body .page-content.fantasy-page{
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  padding: 2.4rem 2rem 3.2rem;
}

@media (max-width: 640px){
  .fantasy-body .page-content.fantasy-page{
    padding: 2rem 1.4rem 2.6rem;
  }
}

.fantasy-body .fantasy-shell{
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

/* Menu alignment */
.fantasy-body .magic-menu{
  display: flex !important;
  justify-content: center !important;
  width: 100% !important;
  max-width: none !important;
  overflow: visible !important;
}

/* Bottom scroll cap */
.fantasy-body .scroll-cap--bottom{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -26px;
}

/* ===== CHAPTER HEADING ===== */
.fantasy-body .chapter-heading{
  text-align: center;
  margin-bottom: 1.2rem;
}

.fantasy-body .chapter-label{
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #7b5532;
  margin-bottom: 0.35rem;
}

.fantasy-body .chapter-title{
  font-family: 'Cinzel', serif;
  font-size: 1.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #4b2c16;
  text-shadow:
    0 0 6px rgba(255,248,205,0.9),
    0 0 18px rgba(223,188,115,0.85);
  margin: 0;
}

.fantasy-body .chapter-subtitle{
  margin-top: 0.5rem;
  font-size: 0.98rem;
  color: #5c3921;
  font-style: italic;
}

.fantasy-body .chapter-divider{
  margin: 1.1rem auto 1.4rem;
  width: 60%;
  height: 1px;
  background: linear-gradient(to right,
    rgba(73,47,20,0),
    rgba(214,171,89,0.9),
    rgba(73,47,20,0));
}

/* ===== CONTENT CARDS ===== */
.fantasy-body .card{
  background: rgba(255,252,240,0.96);
  border-radius: 14px;
  border: 1px solid rgba(190,150,90,0.9);
  box-shadow:
    0 6px 16px rgba(0,0,0,0.22),
    0 0 18px rgba(223,188,115,0.45);
  padding: 1.2rem 1.4rem;
  color: #4b2c16;
  line-height: 1.7;
  font-size: 1.02rem;
  position: relative;
  overflow: hidden;
}

.fantasy-body .card::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 0% 0%, rgba(255,255,255,0.35) 0, transparent 55%),
    radial-gradient(circle at 100% 0%, rgba(255,240,210,0.30) 0, transparent 60%);
  pointer-events:none;
  opacity:0.75;
}
.fantasy-body .card > *{ position: relative; z-index: 1; }

.fantasy-body .muted{
  color:#6b4b34;
  font-style: italic;
  font-size: 0.98rem;
  margin-top: 0.35rem;
}

.fantasy-body .section-title{
  font-family: 'Cinzel', serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 1.05rem;
  color: #4b2c16;
  margin: 0 0 0.6rem;
}

/* Quick checklist list style */
.fantasy-body .checklist{
  list-style: none;
  padding-left: 0;
  margin: 0.6rem 0 0;
  display: grid;
  gap: 0.5rem;
}

.fantasy-body .checklist li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(190,150,90,0.55);
  background: rgba(255,255,255,0.55);
}

.fantasy-body .check{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(190,150,90,0.75);
  background: rgba(255,248,220,0.9);
  flex: 0 0 auto;
  box-shadow: inset 0 0 8px rgba(0,0,0,0.10);
}

/* Examples grid */
.fantasy-body .examples-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 10px;
}
@media (max-width: 920px){
  .fantasy-body .examples-grid{ grid-template-columns: 1fr; }
}

.fantasy-body .example-box{
  border-radius: 14px;
  border: 1px solid rgba(190,150,90,0.65);
  background: rgba(255,255,255,0.55);
  padding: 12px 14px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.10);
}

.fantasy-body .example-box h3{
  margin: 0 0 8px;
  font-family: 'Cinzel', serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.92rem;
  color: #4b2c16;
}

.fantasy-body .example-box ul{
  margin: 0;
  padding-left: 1.1rem;
}
.fantasy-body .example-box li{ margin-bottom: 0.4rem; }

/* Not accepted list */
.fantasy-body .warn{
  border-left: 4px solid rgba(122, 44, 191, 0.55);
  padding-left: 12px;
  margin-top: 10px;
}

/* ===== FORM STYLES ===== */
.fantasy-body .form-card{
  margin-top: 10px;
}

.fantasy-body .field{
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(190,150,90,0.45);
}
.fantasy-body .field:first-child{
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.fantasy-body .field legend{
  font-family: 'Cinzel', serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: #4b2c16;
  margin-bottom: 10px;
}

.fantasy-body .checks{
  display: grid;
  gap: 8px;
  margin-top: 8px;
}

.fantasy-body .checks label{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(190,150,90,0.55);
  background: rgba(255,255,255,0.55);
  cursor: pointer;
}

.fantasy-body .checks input{
  margin-top: 3px;
  accent-color: #6a1b9a;
  flex: 0 0 auto;
}

.fantasy-body .textbox{
  margin-top: 10px;
}

.fantasy-body textarea{
  width: 100%;
  min-height: 140px;
  resize: vertical;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(170,120,60,0.7);
  background: rgba(255,252,244,0.96);
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.08);
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.55;
  color: #4b2c16;
  outline: none;
}
.fantasy-body textarea:focus{
  outline: 3px solid rgba(106,61,154,0.20);
  outline-offset: 2px;
}

.fantasy-body .note-pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(190,150,90,0.75);
  background: rgba(255,255,255,0.50);
  box-shadow: 0 8px 16px rgba(0,0,0,0.12);
  color: #4b2c16;
  margin: 10px 0 0;
  font-size: 0.95rem;
}
.fantasy-body .note-pill strong{
  font-family: 'Cinzel', serif;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.fantasy-body .cta-row{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 14px;
}

.fantasy-body .cta-row a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  border: 1px solid rgba(233,195,120,0.95);
  background: linear-gradient(to bottom, #fbe4b3, #d8b36b);
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #3c2210;
  text-decoration: none;
  box-shadow:
    0 8px 18px rgba(0,0,0,0.35),
    0 0 10px rgba(224,188,115,0.85);
  transition: transform 120ms ease, box-shadow 120ms ease, background 160ms ease;
  white-space: nowrap;
}

.fantasy-body .cta-row a:hover{
  transform: translateY(-1px);
  background: linear-gradient(to bottom, #ffeaba, #deb873);
  box-shadow:
    0 12px 24px rgba(0,0,0,0.45),
    0 0 16px rgba(255,228,145,0.95);
}

/* Optional: print-friendly */
@media print{
  .magic-menu, .scroll-shadow, .page-aura, .page-shadow, .scroll-cap, .wax-seal{ display:none !important; }
  body{ background: #fff !important; }
  .card{ box-shadow:none !important; }
}
