/* pekelou.shop – dark editorial ice 2026 – fully unique from previous sites */
:root {
  --bg: #0f1215;
  --bg-elevated: #181c21;
  --bg-card: #1c2128;
  --bg-alt: #15191e;
  --ink: #e6e9ed;
  --muted: #8b939e;
  --accent: #6eb5c0;
  --accent-hover: #8ecad3;
  --line: #2a3038;
  --radius: 4px;
  --max: 680px;
  --wide: 1080px;
  --space: clamp(2.8rem, 6vw, 5.5rem);
  --font: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.75;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-hover); }

.site-header {
  background: rgba(15, 18, 21, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 1rem 0;
}
.header-inner {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.logo {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
}
.logo span { color: var(--accent); font-weight: 400; }
nav { display: flex; flex-wrap: wrap; gap: 0.15rem 1.2rem; }
nav a {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  border: none;
  letter-spacing: 0.02em;
}
nav a:hover, nav a.active { color: var(--ink); }

main { flex: 1; width: 100%; }
.container { max-width: var(--wide); margin: 0 auto; padding: 0 1.5rem; }
.narrow { max-width: var(--max); margin: 0 auto; }

.hero {
  padding: var(--space) 0 calc(var(--space) * 0.7);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent);
  opacity: 0.7;
}
.hero-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.4rem;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.035em;
  margin-bottom: 1.8rem;
  max-width: 12ch;
  color: #fff;
}
.hero-lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 38ch;
  line-height: 1.7;
}

.section { padding: var(--space) 0; }
.section-title {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 2.2rem;
}

.article-list { display: flex; flex-direction: column; gap: 1.2rem; }
.article-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.7rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
  transition: border-color 0.2s, background 0.2s;
}
.article-item:hover {
  border-color: var(--accent);
  background: var(--bg-elevated);
}
.article-item h2 {
  font-size: 1.25rem;
  line-height: 1.35;
  font-weight: 650;
  letter-spacing: -0.02em;
  margin: 0;
}
.article-item h2 a { color: var(--ink); border: none; }
.article-item h2 a:hover { color: var(--accent); }
.article-item p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
  max-width: 50ch;
}
.article-item .meta {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.03em;
  margin-top: 0.4rem;
}

.article-header {
  padding: var(--space) 0 2.4rem;
  border-bottom: 1px solid var(--line);
}
.article-header .label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.1rem;
}
.article-header h1 {
  font-size: clamp(1.9rem, 4.5vw, 2.7rem);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  max-width: 16ch;
  color: #fff;
}
.article-header .meta { font-size: 0.88rem; color: var(--muted); }

.article-body { padding: 3rem 0 var(--space); }
.article-body h2 {
  font-size: 1.35rem;
  font-weight: 650;
  margin: 2.6rem 0 1rem;
  letter-spacing: -0.02em;
  color: #fff;
}
.article-body h3 {
  font-size: 1.08rem;
  font-weight: 600;
  margin: 1.9rem 0 0.7rem;
}
.article-body p { margin-bottom: 1.3rem; }
.article-body ul, .article-body ol { margin: 1.3rem 0 1.5rem 1.3rem; }
.article-body li { margin-bottom: 0.5rem; }
.article-body blockquote {
  margin: 2.4rem 0;
  padding: 1.5rem 1.6rem;
  background: var(--bg-card);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1.12rem;
  line-height: 1.55;
}
.note {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
  margin: 2.1rem 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.author-block {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  padding: var(--space) 0;
  margin-top: auto;
}
.author-block .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
}
@media (min-width: 700px) {
  .author-block .container {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
  }
}
.author-block h2 {
  font-size: 1.55rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
  color: #fff;
}
.author-block p {
  color: var(--muted);
  margin-bottom: 1.4rem;
  max-width: 38ch;
}

.btn {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  cursor: pointer;
}
.btn:hover { border-color: var(--accent); color: var(--accent); }
.btn-accent {
  background: var(--accent);
  border-color: var(--accent);
  color: #0f1215;
}
.btn-accent:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #0f1215;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.8rem;
  padding: var(--space) 0;
}
@media (min-width: 800px) {
  .contact-wrap { grid-template-columns: 1fr 1.15fr; }
}
.contact-info h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #fff;
}
.contact-info p { color: var(--muted); margin-bottom: 1rem; }
.contact-details { margin-top: 1.8rem; }
.contact-details dt {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.contact-details dd { margin-bottom: 1.3rem; color: var(--ink); }
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
  color: var(--muted);
  text-transform: uppercase;
}
.form-group input, .form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  background: var(--bg);
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-group textarea { min-height: 140px; resize: vertical; }

.thankyou { text-align: center; padding: calc(var(--space) * 1.3) 0; }
.thankyou h1 { font-size: 2.4rem; font-weight: 700; margin-bottom: 1rem; color: #fff; }
.thankyou p { color: var(--muted); max-width: 34ch; margin: 0 auto 1.8rem; }

.policy-body { padding: 3rem 0 var(--space); }
.policy-body h1 { font-size: 2.1rem; font-weight: 700; margin-bottom: 1.3rem; color: #fff; }
.policy-body h2 { font-size: 1.25rem; font-weight: 650; margin: 2.2rem 0 0.85rem; color: #fff; }
.policy-body p, .policy-body li { margin-bottom: 0.95rem; }
.policy-body ul { margin-left: 1.25rem; margin-bottom: 1.3rem; }

.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  padding: 3rem 0 1.8rem;
  margin-top: auto;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: var(--wide);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
.footer-brand {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.footer-brand span { color: var(--accent); }
.footer-about { color: var(--muted); max-width: 28ch; line-height: 1.6; }
.footer-col h4 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.85rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.4rem; }
.footer-col a { color: var(--muted); font-size: 0.9rem; border: none; }
.footer-col a:hover { color: var(--ink); }
.footer-address { color: var(--muted); line-height: 1.6; font-size: 0.9rem; }
.footer-bottom {
  max-width: var(--wide);
  margin: 2rem auto 0;
  padding: 1.3rem 1.5rem 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--muted);
}
.footer-bottom a { color: var(--muted); margin-right: 0.9rem; border: none; }
.footer-bottom a:hover { color: var(--ink); }
.disclaimer { font-size: 0.78rem; color: var(--muted); max-width: 52ch; line-height: 1.5; }

@media (max-width: 600px) {
  html { font-size: 16px; }
  .hero::before { display: none; }
  nav { gap: 0.15rem 0.9rem; }
}
