
:root{
  --bg:#050d10;
  --panel:#081317;
  --panel2:#0f171a;
  --ink:#f0e7d4;
  --muted:#bead91;
  --gold:#b98243;
  --gold2:#e4bd78;
  --line:rgba(228,189,120,.26);
}

*{box-sizing:border-box}
html,body{margin:0; overflow-x:hidden}
body{
  background:
    radial-gradient(circle at top, rgba(35,55,62,.32), transparent 520px),
    #050d10;
  color:var(--ink);
  font-family:Georgia,'Times New Roman',serif;
}
.site-shell{width:100%; background:linear-gradient(#050d10,#061115)}

.topbar{
  height:72px;
  padding:0 28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:rgba(3,8,10,.97);
  border-bottom:1px solid var(--line);
  position:sticky;
  top:0;
  z-index:20;
}
.brand{
  display:flex;
  align-items:center;
  gap:13px;
  text-decoration:none;
  color:var(--ink);
}
.brand img{
  width:52px;
  height:52px;
  border-radius:50%;
  object-fit:cover;
  box-shadow:0 0 18px rgba(120,170,200,.18);
}
.brand h1{
  margin:0;
  color:var(--gold2);
  font-weight:400;
  letter-spacing:7px;
  font-size:32px;
  line-height:.9;
}
.brand p{
  margin:5px 0 0;
  color:var(--gold2);
  font-size:10px;
  text-transform:uppercase;
  letter-spacing:.8px;
}
nav{display:flex; align-items:center; gap:22px}
nav a{
  color:var(--ink);
  text-decoration:none;
  text-transform:uppercase;
  font-size:12px;
  letter-spacing:.9px;
}
nav .active{color:var(--gold2); border-bottom:1px solid var(--gold); padding-bottom:8px}
nav .cta{
  color:var(--gold2);
  border:1px solid var(--gold);
  padding:11px 15px;
}

.hero{
  height:690px;
  position:relative;
  background-image:
    linear-gradient(90deg, rgba(3,8,10,.98) 0%, rgba(3,8,10,.86) 20%, rgba(3,8,10,.42) 44%, rgba(3,8,10,.08) 100%),
    linear-gradient(to bottom, transparent 62%, #050d10 98%),
    url('assets/lokdubh_day.jpg');
  background-size:cover;
  background-position:center;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 80% 28%, rgba(255,204,130,.23), transparent 320px),
    radial-gradient(circle at 52% 18%, rgba(95,145,170,.22), transparent 260px);
  pointer-events:none;
}
.hero-copy{
  position:relative;
  z-index:1;
  width:390px;
  padding:105px 0 0 42px;
}
.kicker{
  margin:0 0 14px;
  color:var(--gold2);
  text-transform:uppercase;
  letter-spacing:3px;
  font-size:12px;
}
.hero h2{
  margin:0;
  text-transform:uppercase;
  font-weight:400;
  font-size:46px;
  line-height:1.12;
  letter-spacing:1.3px;
}
.rule{
  width:175px;
  height:1px;
  background:linear-gradient(90deg,var(--gold),transparent);
  margin:24px 0;
}
.hero p{
  color:var(--ink);
  font-size:18px;
  line-height:1.45;
  margin:10px 0;
}
.hero .gold{color:var(--gold2)}
.button{
  display:inline-block;
  margin-top:22px;
  padding:13px 23px;
  border:1px solid var(--gold);
  background:rgba(5,9,11,.78);
  color:var(--gold2);
  text-transform:uppercase;
  text-decoration:none;
  letter-spacing:1px;
  font-size:13px;
}

.story-strip{
  display:grid;
  grid-template-columns: .95fr 1.25fr .95fr 1.25fr 1.25fr .95fr 1.25fr;
  min-height:166px;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:#061115;
}
.story-strip article{
  border-right:1px solid var(--line);
  min-width:0;
}
.visual img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  filter:brightness(.65) contrast(1.08) saturate(.9);
}
.mini-card{
  padding:22px 20px;
  background:
    linear-gradient(180deg, rgba(18,29,34,.98), rgba(7,17,21,.98));
}
.mini-card span{
  color:var(--gold2);
  display:block;
  font-size:22px;
  margin-bottom:8px;
}
.mini-card h3{
  margin:0 0 9px;
  text-transform:uppercase;
  color:var(--ink);
  font-size:16px;
  line-height:1.25;
  letter-spacing:1px;
  font-weight:400;
}
.mini-card p{
  margin:0 0 12px;
  color:var(--muted);
  font-size:13px;
  line-height:1.5;
}
.mini-card a{
  color:var(--gold2);
  font-size:12px;
  text-transform:uppercase;
}
.emblem-bg{
  background:
    radial-gradient(circle at center, rgba(185,130,67,.16), transparent 55%),
    linear-gradient(180deg, rgba(18,29,34,.98), rgba(7,17,21,.98));
}

.novel-panel{
  display:grid;
  grid-template-columns: 240px 1.1fr 285px 1.05fr;
  background:
    linear-gradient(90deg, rgba(14,20,22,.98), rgba(24,25,24,.97));
  border-bottom:1px solid var(--line);
}
.novel-panel > *{
  min-height:365px;
  border-right:1px solid var(--line);
}
.book-cover{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:28px;
  background:
    radial-gradient(circle at center, rgba(228,189,120,.12), transparent 60%),
    #0a1215;
}
.book-cover img{
  width:180px;
  box-shadow:0 24px 50px rgba(0,0,0,.55);
}
.novel-copy{
  padding:42px 36px;
}
.novel-copy h2{
  margin:0 0 16px;
  color:var(--ink);
  font-weight:400;
  text-transform:uppercase;
  font-size:30px;
  line-height:1.22;
}
.novel-copy h2 span{color:var(--gold2)}
.novel-copy p{
  color:var(--muted);
  line-height:1.7;
  font-size:16px;
}
.badges{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:8px;
  margin:24px 0 4px;
}
.badges span{
  color:var(--muted);
  font-size:10px;
  text-transform:uppercase;
  text-align:center;
  border-top:1px solid var(--line);
  padding-top:10px;
}
blockquote{
  margin:0;
  display:flex;
  flex-direction:column;
  justify-content:center;
  text-align:center;
  background:
    linear-gradient(rgba(218,204,178,.10),rgba(218,204,178,.04)),
    #171b1c;
  color:var(--ink);
  font-style:italic;
  font-size:23px;
  line-height:1.85;
}
blockquote span{
  color:var(--gold2);
  font-size:56px;
  line-height:.7;
}
.archive{
  padding:34px 32px;
  background:
    radial-gradient(circle at 80% 25%, rgba(228,189,120,.12), transparent 190px),
    #081418;
}
.archive img{
  width:74px;
  height:74px;
  border-radius:50%;
  object-fit:cover;
  margin-bottom:16px;
  opacity:.68;
}
.archive h2{
  margin:0 0 12px;
  color:var(--gold2);
  text-transform:uppercase;
  font-weight:400;
  font-size:24px;
}
.archive p{
  color:var(--muted);
  line-height:1.55;
  font-size:14px;
}
.form{display:grid; margin-top:22px}
.form input{
  padding:13px;
  background:#050b0d;
  border:1px solid var(--line);
  color:var(--ink);
  font-family:inherit;
}
.form button{
  padding:13px;
  background:var(--gold);
  border:0;
  color:#1b1208;
  font-family:inherit;
  text-transform:uppercase;
}

.world{
  padding:46px 28px 48px;
}
.world h2{
  text-align:center;
  margin:0 0 34px;
  text-transform:uppercase;
  letter-spacing:2px;
  font-weight:400;
  font-size:26px;
}
.world-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:17px;
}
.world-grid article{
  border:1px solid var(--line);
  background:linear-gradient(180deg,#101b20,#071115);
  min-height:320px;
  box-shadow:0 18px 30px rgba(0,0,0,.25);
}
.world-grid img{
  width:100%;
  height:138px;
  object-fit:cover;
  display:block;
  filter:brightness(.66) contrast(1.08);
}
.world-grid h3{
  color:var(--gold2);
  text-align:center;
  text-transform:uppercase;
  font-weight:400;
  font-size:16px;
  margin:17px 12px 8px;
}
.world-grid p{
  color:var(--muted);
  text-align:center;
  font-size:13px;
  line-height:1.52;
  margin:0 14px 14px;
}
.world-grid a{
  display:block;
  color:var(--gold2);
  text-align:center;
  text-transform:uppercase;
  font-size:12px;
}

.fragments{
  display:grid;
  grid-template-columns:1fr 1fr 1.55fr;
  gap:17px;
  padding:0 28px 44px;
}
.fragments > div{
  border:1px solid var(--line);
  min-height:265px;
  overflow:hidden;
  background:#091317;
}
.fragment-copy{
  padding:30px;
}
.fragment-copy h2{
  margin:0 0 18px;
  text-transform:uppercase;
  font-weight:400;
  letter-spacing:1px;
}
.fragment-copy p{
  color:var(--muted);
  line-height:1.62;
}
.fragment-copy a{
  color:var(--gold2);
  text-transform:uppercase;
  font-size:13px;
}
.portrait img,.night img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter:brightness(.74) contrast(1.05);
}

footer{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:34px 48px;
  border-top:1px solid var(--line);
  color:var(--muted);
}
.footer-brand{
  display:flex;
  align-items:center;
  gap:17px;
}
.footer-brand img{
  width:72px;
  height:72px;
  border-radius:50%;
  object-fit:cover;
  opacity:.86;
}
.footer-brand h2{
  color:var(--gold2);
  margin:0;
  font-weight:400;
  letter-spacing:6px;
}
.footer-brand p, footer p{
  margin:6px 0 0;
  font-size:12px;
  text-transform:uppercase;
}

@media(max-width:1150px){
  .topbar{height:auto; flex-direction:column; padding:14px; gap:12px}
  nav{flex-wrap:wrap; justify-content:center}
  .story-strip{grid-template-columns:repeat(2,1fr)}
  .novel-panel{grid-template-columns:1fr 1fr}
  .world-grid{grid-template-columns:repeat(3,1fr)}
  .fragments{grid-template-columns:1fr}
}
@media(max-width:700px){
  .brand h1{font-size:24px}
  .brand p{font-size:9px}
  .hero{height:590px}
  .hero-copy{width:auto; padding:70px 24px 0}
  .hero h2{font-size:34px}
  .story-strip,.novel-panel,.world-grid{grid-template-columns:1fr}
  .badges{grid-template-columns:repeat(2,1fr)}
  footer{flex-direction:column; text-align:center; gap:18px}
}
