/* ========== Havn site styles (shared) ========== */
:root{
  --bg:#1b1a20;                 /* page background */
  --card:#25232c;               /* card surface */
  --stroke:rgba(159,164,208,.22);
  --text:#e8e9ee;               /* main text */
  --muted:#C6CBD8;              /* muted on dark */
  --accent:#9FA4D0;             /* Soft Violet Blue */
  --lav:#D8D3E3;                /* Misty Lavender */
  --link:#B9D7EA;               /* Sky Blue Mist */
  --radius:16px;
  --radius-lg:20px;
  --shadow:0 10px 40px rgba(0,0,0,.35);
}

*{ box-sizing:border-box }
html,body{ height:100% }
body{
  margin:0;
  font:16px/1.55 -apple-system,BlinkMacSystemFont,"SF Pro Text",Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  color:var(--text);
  background:var(--bg);
}
a{ color:var(--link); text-decoration:none }
a:hover{ text-decoration:underline }

.wrap{ max-width:960px; margin:0 auto; padding:24px }

/* Header / nav */
header{
  position:sticky; top:0; z-index:10;
  backdrop-filter:saturate(180%) blur(10px);
  background:color-mix(in srgb, var(--bg) 84%, transparent);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.nav{ display:flex; align-items:center; gap:16px; min-height:60px }
.brand{ display:flex; align-items:center; gap:10px; margin-right:auto }
.logo{
  width:28px; height:28px; border-radius:8px;
  background:#2B2933;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.08);
  /* optional image if you want it in the small brand dot */
  /* background-image:url("./Havn.jpg"); background-size:cover; background-position:center; */
}
.brand h1{ font-size:18px; margin:0; font-weight:700; letter-spacing:.3px }
.nav a.btn{
  border:1px solid var(--stroke);
  background:var(--card);
  padding:8px 12px;
  border-radius:10px;
}

/* Header logo tile (top-right) */
.header-logo{
  width:48px; height:48px; border-radius:12px;
  background:#2B2933 url("./Havn.jpg") center/cover no-repeat;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.10);
}
@media (max-width: 420px){
  .header-logo{ width:40px; height:40px; border-radius:10px }
}

/* Hero (index) */
.hero{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:28px; align-items:center;
  padding:48px 0;
}
.hero h2{ font-size:40px; line-height:1.15; margin:.2em 0 .4em 0; color:var(--lav) }
.hero p{ color:var(--muted); margin:0 0 18px 0 }

.cta-row{ display:flex; gap:12px; flex-wrap:wrap }
.cta{
  display:inline-flex; align-items:center; gap:10px;
  background:var(--accent); color:#0b0b0f;
  border:none; border-radius:12px;
  padding:14px 16px; font-weight:700;
  box-shadow:var(--shadow);
}
.ghost{ background:transparent; color:var(--lav); border:1px solid var(--stroke) }

.card{
  background:var(--card);
  border:1px solid var(--stroke);
  border-radius:var(--radius-lg);
  padding:22px;
}

.grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px }
.grid .card h3{ margin:0 0 8px 0 }

.muted{ color:var(--muted) }
section{ padding:28px 0 }
section h2{ color:var(--lav) }

footer{
  margin-top:40px; padding:28px 0;
  color:var(--muted);
  border-top:1px solid rgba(255,255,255,.06);
}

/* Responsive adjustments */
@media (max-width: 860px){
  .hero{ grid-template-columns:1fr; gap:20px }
  .grid{ grid-template-columns:1fr }
}