:root{--bg:#0b0e12;--fg:#e9ecef;--muted:#9aa4ad;--accent:#e3b341;}
*{box-sizing:border-box}body{margin:0;font-family:system-ui,-apple-system,"Segoe UI",Roboto,Ubuntu,Arial,sans-serif;background:var(--bg);color:var(--fg);line-height:1.6}
a{color:var(--accent);text-decoration:none}a:hover{text-decoration:underline}
.container{max-width:1100px;margin:0 auto;padding:24px}
.hero{padding:56px 0;text-align:center}
h1{font-size:2.2rem;margin:0 0 12px}h2{margin:16px 0 8px}
.sub{color:var(--muted);margin:0 0 24px}
.cta a{display:inline-block;margin:6px 8px;padding:10px 16px;border-radius:8px;border:1px solid var(--accent)}
.btn.primary{background:var(--accent);color:#111;border-color:var(--accent)}
.trust{margin-top:12px;color:var(--muted)}
.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:16px;margin:28px 0}
.card{background:#121720;border:1px solid #1c2330;border-radius:12px;padding:16px;height:100%}
.card h3{margin:0 0 8px}
.section{margin:40px 0}
.footer{margin-top:40px;padding:24px 0;border-top:1px solid #1c2330;color:var(--muted);font-size:.95rem}
.nav{display:flex;gap:18px;flex-wrap:wrap;align-items:center;justify-content:center;margin:10px 0 24px}
.nav a{color:var(--muted)}
.badge{display:inline-block;background:#162031;border:1px solid #22324a;color:#cbd5e1;padding:2px 8px;border-radius:999px;font-size:.85rem;margin:2px}
.small{color:var(--muted);font-size:.95rem}
header .nav{margin-bottom:0}
/* --- RedBeard Viking polish --- */
.brand{display:flex;align-items:center;justify-content:center;gap:12px;margin:0 0 16px}
.logo{height:48px;inline-size:auto;vertical-align:middle;filter:drop-shadow(0 2px 6px rgba(0,0,0,.4))}
.hero.hero-viking{
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(227,179,65,.15), rgba(0,0,0,0)),
    url('/assets/img/hero.jpg') center/cover no-repeat;
  min-height:60vh;border-bottom:1px solid #1c2330
}
.knot{border:1px solid #22324a;border-radius:999px;padding:2px 10px}

/* === Fonts: Inter (body) + Montserrat (UI) + Cinzel (hero) === */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700;800;900&family=Inter:wght@400;500;600&family=Montserrat:wght@600;700&display=swap');

body{font-family:Inter,system-ui,-apple-system,"Segoe UI",Roboto,Ubuntu,Arial,sans-serif}
.nav, .btn, .badge, .small, header strong{font-family:Montserrat,Inter,system-ui,sans-serif;letter-spacing:.2px}

h1,h2,h3{letter-spacing:.3px}
h1{font-weight:800}
h2{font-weight:700}

/* Hero heading: bigger, brighter, with subtle outline for readability */
.hero.hero-viking h1{
  font-family:Cinzel,Montserrat,serif;
  font-size:clamp(2rem, 3.8vw + 0.5rem, 3.8rem);
  font-weight:900;
  line-height:1.1;
  text-shadow:
    0 2px 0 rgba(0,0,0,.35),
    0 6px 18px rgba(0,0,0,.45),
    0 0 1px rgba(255,255,255,.08);
}

/* Hero overlay to increase contrast on busy images */
.hero.hero-viking{
  position:relative;
  isolation:isolate;
}
.hero.hero-viking::before{
  content:"";
  position:absolute; inset:0; z-index:-1;
  background: radial-gradient(60% 50% at 50% 30%, rgba(0,0,0,.05), rgba(0,0,0,.35)),
              linear-gradient(to bottom, rgba(0,0,0,.15), rgba(0,0,0,.35) 60%, rgba(0,0,0,.45));
  mix-blend-mode:multiply;
}

/* Buttons a touch bolder for the new font */
.btn{font-weight:600}

/* --- Contrast polish for small text & subheadline --- */
:root{
  --fg-strong:#f2f5f7;
  --fg-med:#cfd6de;
}
.sub,.trust,.small,.nav a{color:var(--fg-med)}
.card p{color:var(--fg-med)}
/* Hero subheadline on busy image */
.hero.hero-viking .sub{
  color:var(--fg-strong);
  text-shadow:
    0 1px 0 rgba(0,0,0,.45),
    0 6px 14px rgba(0,0,0,.40);
  opacity:.95;
}
/* Improve link readability on dark bg */
.nav a:hover{color:var(--fg-strong);text-decoration:underline}
