/* Dark Lantern Theatre Company — shared stylesheet */

:root{
  --ink:#0D0B0A;
  --surface:#16130F;
  --surface-2:#1F1A14;
  --text:#EDE6DA;
  --text-soft:#A79C8E;
  --text-faint:#7A7166;
  --rule:#2B241C;
  --beam:#E3A94F;
  --beam-dim:#8A6A2E;
  --blood:#B03A30;
  --measure:38rem;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}
@media (prefers-reduced-motion: reduce){html{scroll-behavior:auto}}

body{
  margin:0;
  accent-color:var(--beam);
  background:var(--ink);
  color:var(--text);
  font-family:"Spectral",Georgia,"Times New Roman",serif;
  font-size:17px;
  line-height:1.65;
}

img{max-width:100%;height:auto}

a{color:var(--beam);text-decoration-thickness:1px;text-underline-offset:3px}
a:hover{color:#F0C070}
a:focus-visible,button:focus-visible,input:focus-visible,textarea:focus-visible,select:focus-visible{
  outline:2px solid var(--beam);outline-offset:3px;border-radius:2px;
}

h1,h2,h3{font-family:"Bodoni Moda",Didot,Georgia,serif;font-weight:700;text-wrap:balance;margin:0}
h1{font-size:clamp(2.6rem,7vw,4.4rem);line-height:1.04;letter-spacing:-.005em}
h2{font-size:clamp(1.7rem,4vw,2.4rem);line-height:1.12;margin-bottom:1rem}
h3{font-size:1.2rem;line-height:1.3;margin-bottom:.4rem}
p{margin:0 0 1.15rem}
p:last-child{margin-bottom:0}

.wrap{max-width:62rem;margin:0 auto;padding:0 1.5rem}
.col{max-width:var(--measure)}
.wrap.col{max-width:62rem}
.wrap.col > *{max-width:var(--measure)}

.label{
  font-size:.72rem;letter-spacing:.18em;text-transform:uppercase;
  color:var(--text-faint);margin:0 0 .9rem;
}
.label.lit{color:var(--beam-dim)}

/* ---------- nav ---------- */
.nav{
  position:relative;z-index:3;
  display:flex;align-items:center;justify-content:space-between;
  gap:1.5rem;flex-wrap:wrap;
  padding:1.5rem 0;border-bottom:1px solid var(--rule);
}
.brand{
  display:flex;align-items:center;gap:.7rem;
  font-family:"Bodoni Moda",Didot,Georgia,serif;font-weight:600;
  font-size:1rem;letter-spacing:.18em;text-transform:uppercase;
  color:var(--text);text-decoration:none;
}
.brand:hover{color:var(--beam)}
.brand svg{flex:0 0 auto}
.nav ul{display:flex;gap:1.6rem;list-style:none;margin:0;padding:0}
.nav ul a{
  font-size:.78rem;letter-spacing:.13em;text-transform:uppercase;
  color:var(--text-soft);text-decoration:none;
}
.nav ul a:hover,.nav ul a[aria-current="page"]{color:var(--beam)}

/* ---------- hero with the beam ---------- */
.hero{
  position:relative;overflow:hidden;
  padding:5rem 0 4rem;
  border-bottom:1px solid var(--rule);
}
.hero::before{
  content:"";position:absolute;inset:-40% -20% auto -20%;height:150%;
  background:
    radial-gradient(46% 58% at 26% -6%, rgba(227,169,79,.30), rgba(227,169,79,.10) 38%, transparent 70%),
    radial-gradient(90% 70% at 50% -20%, rgba(227,169,79,.07), transparent 65%);
  pointer-events:none;
}
.hero > *{position:relative;z-index:1}
.hero .lantern{display:block;margin:0 0 2rem}
.hero h1{margin-bottom:1.2rem}
.hero .sub{
  font-size:1.18rem;color:var(--text-soft);max-width:34rem;margin:0;
}
.hero.compact{padding:3.5rem 0 3rem}

/* ---------- sections ---------- */
section{padding:4rem 0;border-bottom:1px solid var(--rule)}
section:last-of-type{border-bottom:none}
.lede{font-size:1.12rem}

/* ---------- status strip ---------- */
.status{
  display:flex;flex-wrap:wrap;gap:.5rem .75rem;align-items:center;
  margin:0 0 2rem;padding:0;list-style:none;
  font-size:.75rem;letter-spacing:.14em;text-transform:uppercase;
}
.status li{color:var(--text-faint)}
.status li + li::before{content:"·";margin-right:.75rem;color:var(--rule)}
.status li.now{color:var(--ink);background:var(--beam);padding:.25rem .6rem;font-weight:600}
.status li.now + li::before{content:none}

/* ---------- feature block: current production ---------- */
.feature{
  background:var(--surface);
  border:1px solid var(--rule);
  border-left:3px solid var(--beam);
  padding:2rem 2rem 2.1rem;
  max-width:44rem;
}
.feature h3{font-size:1.9rem;font-family:"Bodoni Moda",Didot,Georgia,serif;font-weight:700;margin-bottom:.6rem}
.feature p{color:var(--text-soft)}
.feature .more{
  display:inline-block;margin-top:.6rem;
  font-size:.8rem;letter-spacing:.13em;text-transform:uppercase;text-decoration:none;
  border-bottom:1px solid var(--beam-dim);padding-bottom:.2rem;
}

/* ---------- roles ---------- */
.roles{display:grid;gap:1px;background:var(--rule);border:1px solid var(--rule);margin:0}
.role{background:var(--surface);padding:1.3rem 1.5rem;margin:0}
.role dt{
  font-family:"Bodoni Moda",Didot,Georgia,serif;font-weight:600;font-size:1.25rem;
  margin-bottom:.3rem;color:var(--text);
}
.role dd{margin:0;color:var(--text-soft);font-size:.96rem}
.role .who{display:block;color:var(--text-faint);font-size:.78rem;letter-spacing:.12em;text-transform:uppercase;margin-bottom:.5rem}

/* ---------- plain definition list (fact sheet) ---------- */
.facts{margin:0;display:grid;grid-template-columns:auto 1fr;gap:.65rem 2rem;font-size:.96rem}
.facts dt{color:var(--text-faint);font-size:.75rem;letter-spacing:.13em;text-transform:uppercase;padding-top:.25rem}
.facts dd{margin:0}

/* ---------- forms ---------- */
.form{max-width:34rem}
.field{display:flex;flex-direction:column;gap:.4rem;margin-bottom:1.1rem}
.field label{font-size:.75rem;letter-spacing:.13em;text-transform:uppercase;color:var(--text-soft)}
.field .hint{font-size:.85rem;color:var(--text-faint);letter-spacing:0;text-transform:none}
input[type="text"],input[type="email"],input[type="tel"],input[type="url"],textarea,select{
  background:var(--surface-2);
  border:1px solid var(--rule);
  color:var(--text);
  font-family:inherit;font-size:1rem;
  padding:.7rem .85rem;
  border-radius:0;
}
input::placeholder,textarea::placeholder{color:#5F584F}
textarea{min-height:7rem;resize:vertical}
.checks{display:flex;flex-wrap:wrap;gap:.6rem 1.4rem}
.checks label{
  display:flex;align-items:center;gap:.5rem;
  font-size:.95rem;letter-spacing:0;text-transform:none;color:var(--text);
}
.btn{
  display:inline-block;
  background:var(--beam);color:#120E08;
  border:none;border-radius:0;
  font-family:"Spectral",Georgia,serif;font-size:.82rem;font-weight:600;
  letter-spacing:.14em;text-transform:uppercase;
  padding:.85rem 1.6rem;cursor:pointer;text-decoration:none;
}
.btn:hover{background:#F0C070;color:#120E08}
.hp{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}

/* ---------- inline mailing list ---------- */
.signup{display:flex;gap:.6rem;flex-wrap:wrap;max-width:30rem}
.signup input{flex:1 1 15rem}

/* ---------- callout ---------- */
.plain{
  border-left:2px solid var(--blood);
  padding:.2rem 0 .2rem 1.2rem;
  color:var(--text-soft);
  max-width:var(--measure);
}

/* ---------- footer ---------- */
footer{
  border-top:1px solid var(--rule);
  padding:2.5rem 0 3.5rem;
  color:var(--text-faint);font-size:.88rem;
}
footer .rows{display:flex;flex-wrap:wrap;gap:1rem 3rem;justify-content:space-between}
footer a{color:var(--text-soft)}
