/* ===== Title Lockup Header ===== */
.theme-cryptids--feral .scene-header.title-lockup{
  --header-bg: #0B3630;     /* requested background */
  --header-ink: #767D58;    /* requested font color */
  background: var(--header-bg);
  color: var(--header-ink);
  border-bottom: 2px solid var(--edge);
  padding: clamp(18px, 3vw, 28px) 0 clamp(8px, 1.6vw, 14px);
}

/* Centered stack */
.theme-cryptids--feral .header-inner{
  text-align:center;
}

/* Copperplate + graceful fallbacks */
@font-face{
  font-family: "Copperplate Local";
  src: local("Copperplate"), local("Copperplate Gothic Bold"), local("Copperplate Gothic");
  font-display: swap;
}
.theme-cryptids--feral .title,
.theme-cryptids--feral .ttg-present{
  font-family: "Copperplate Local", "Cinzel", "Trajan Pro", Georgia, serif;
  text-transform: uppercase;
  letter-spacing: .06em;
}

h1, h2, h3
{
  color: var(--header-ink);
    font-family: "Copperplate Local", "Cinzel", "Trajan Pro", Georgia, serif;
}
.seal-24
{
  display: inline;
}
/* Line 1: small */
.theme-cryptids--feral .ttg-present{
  display:inline-block;
  font-weight: 700;
  font-size: clamp(12px, 1.4vw, 18px);
  opacity:.95;
}

/* Line 2: THE AMATEUR’S GUIDE (big) */
.theme-cryptids--feral .title-a{
  margin: .2rem 0 0;
  font-weight: 900;
  font-size: clamp(26px, 5.6vw, 72px);
  line-height: 1.02;
}

/* Line 3: “TO” small next to a larger CRYPTID HUNTING */
.theme-cryptids--feral .title-row{
  display:flex; align-items: baseline; justify-content:center;
  gap: clamp(10px, 1.4vw, 18px);
  margin-top: clamp(2px, .6vw, 8px);
}
.theme-cryptids--feral .title-to{
  font-weight: 800;
  font-size: clamp(14px, 1.8vw, 22px);  /* intentionally smaller */
  letter-spacing: .1em;
}
.theme-cryptids--feral .title-b{
  margin: 0;
  font-weight: 900;
  font-size: clamp(30px, 6.2vw, 84px);  /* slightly larger than line 2 */
  line-height: 1.02;
}

/* Tighten word spacing a touch for Copperplate feel */
.theme-cryptids--feral .title span{ word-spacing: .06em }

/* Keep nav readable over dark bg */
.theme-cryptids--feral .scene-header.title-lockup .topnav a{
  color: var(--header-ink);
}
.theme-cryptids--feral .scene-header.title-lockup .topnav a:hover{
  color: #fffef6;
  background: color-mix(in lab, var(--header-ink) 18%, transparent);
}

/* Make the brand/dept chips match the palette on the dark header */
.theme-cryptids--feral .scene-header.title-lockup .wordmark .org{ color:#fffef0 }
.theme-cryptids--feral .scene-header.title-lockup .wordmark .dept{
  color: var(--header-ink);
  border-color: currentColor;
  background: color-mix(in lab, var(--header-ink) 18%, var(--header-bg));
}

/* Layout: nav row under the title stack on small screens */
@media (max-width:960px){
  .theme-cryptids--feral .scene-header.title-lockup .header-bar{
    margin-top: .6rem;
  }
}

/* Subtle bottom fade back to the page paper */
.theme-cryptids--feral .scene-header.title-lockup::after{
  content:""; position:absolute; left:0; right:0; bottom:0; height:72px; pointer-events:none;
  background: linear-gradient(to bottom, rgba(11,54,48,0) 0%, var(--paper) 100%);
}