:root{
  --bg: #454235;            /* dark background everywhere */
  --text: #f6f6f3;
  --accent: #db651a;
  --muted: rgba(246,246,243,0.82);
  --line: rgba(246,246,243,0.14);
  --content-max: 1100px;
  --pad: 28px;
}

*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  min-height:100vh;
  background:var(--bg);
  font-family:"Hanken Grotesk", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color:var(--text);
}

/* Full-width layout with centered content */
.shell{
  width:100%;
  padding: calc(var(--pad) + 8px) var(--pad);
}

.wrap{
  max-width: var(--content-max);
  margin: 0 auto;
}

/* Top nav */
.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding-bottom:18px;
  border-bottom:1px solid var(--line);
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:220px;
}

.logo svg{
  width:260px;
  height:auto;
  display:block;
}

nav ul{
  list-style:none;
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

nav a{
  color:var(--text);
  text-decoration:none;
  font-weight:500;
  font-size:14px;
  letter-spacing:0.01em;
  padding:8px 10px;
  border-radius:999px;
  transition:background 160ms ease;
  display:inline-block;
}
nav a:hover{ background:rgba(246,246,243,0.10); }
nav a[aria-current="page"]{ background:rgba(246,246,243,0.14); }
nav a:focus-visible{
  outline:2px solid var(--accent);
  outline-offset:2px;
}

/* Sections */
main{
  padding: 26px 0 10px;
}

.section{
  padding: 26px 0;
  border-bottom:1px solid var(--line);
}

.section-title{
  font-size:13px;
  font-weight:600;
  letter-spacing:0.11em;
  text-transform:uppercase;
  color:var(--text);
  margin-bottom:10px;
}

h1{
  font-size:34px;
  margin-bottom:10px;
  line-height:1.15;
}

.subtitle{
  font-size:16px;
  color:var(--muted);
  line-height:1.7;
  max-width:75ch;
}

.grid{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap:22px;
  align-items:start;
}

.cards{
  display:grid;
  gap:14px;
}

.card{
  background:rgba(246,246,243,0.06);
  border:1px solid rgba(246,246,243,0.10);
  border-radius:16px;
  padding:18px 18px;
}

.list{
  margin-top:10px;
  padding-left:18px;
  line-height:1.7;
  font-size:15px;
}
.list li{ margin:6px 0; }
.list li::marker{ color:var(--accent); }

.contact{
  font-size:15px;
  line-height:1.7;
}

a{ color:var(--accent); text-decoration:none; font-weight:500; }
a:hover{ text-decoration:underline; }

.footnote{
  color:var(--muted);
  font-size:13px;
  line-height:1.6;
  margin-top:10px;
}

/* Footer */
footer{
  padding:18px 0 40px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  font-size:12px;
  color:var(--muted);
}
footer a{ color:var(--text); opacity:0.9; }
footer a:hover{ opacity:1; }

/* Responsive */
@media (max-width: 820px){
  .grid{ grid-template-columns: 1fr; }
  .logo svg{ width:230px; }
  h1{ font-size:28px; }
}

@media (max-width: 480px){
  :root{ --pad: 18px; }
  nav ul{ gap:10px; }
  nav a{ padding:7px 9px; }
  h1{ font-size:24px; }
}

.section { scroll-margin-top: 110px; }

.topbar{
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 10;
  padding-top: 10px;
  margin-top: -10px;
}
