:root {
  --ink: #1f2933;
  --muted: #5e6c7b;
  --paper: #fbf7f0;
  --panel: #ffffff;
  --accent: #7a3f22;
  --accent-dark: #4b2615;
  --accent-soft: #efe0d5;
  --line: #dfd4c8;
  --shadow: 0 20px 60px rgba(31, 41, 51, 0.12);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}

a { color: var(--accent); text-decoration-thickness: 0.08em; text-underline-offset: 0.18em; }
a:hover { color: var(--accent-dark); }

.hero {
  min-height: 76vh;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(40, 23, 17, 0.96), rgba(82, 42, 24, 0.88)),
    radial-gradient(circle at 20% 20%, rgba(245, 202, 153, 0.35), transparent 35%),
    linear-gradient(135deg, #301a12, #7a3f22);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "Α Β Γ · A B C · Λόγος";
  position: absolute;
  right: -2rem;
  bottom: -2.8rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4rem, 13vw, 13rem);
  color: rgba(255, 255, 255, 0.08);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.topbar {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.3rem 0;
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.topbar a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
}

.topbar a:hover { color: #fff; }

.hero-inner {
  width: min(1040px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 5rem 0 7rem;
  position: relative;
  z-index: 1;
}

.eyebrow, .label, .section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 700;
}

.eyebrow {
  color: #f4d7c4;
  margin: 0 0 1rem;
}

h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.08;
}

h1 {
  max-width: 960px;
  font-size: clamp(3rem, 8vw, 6.4rem);
  margin: 0;
  letter-spacing: -0.045em;
}

.subtitle {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.7rem, 4vw, 3rem);
  margin: 1.2rem 0 0.2rem;
  color: #ffe8d8;
}

.dek {
  max-width: 760px;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.84);
  margin: 0 0 2rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.82rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}
.button.primary { background: #fff; color: var(--accent-dark); }
.button.secondary { border: 1px solid rgba(255,255,255,0.45); color: #fff; }
.button:hover { transform: translateY(-1px); }

.notice-card {
  width: min(1120px, calc(100% - 2rem));
  margin: -3.2rem auto 4.5rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.notice-card > div {
  padding: 1rem;
  border-left: 3px solid var(--accent-soft);
}

.label { display: block; color: var(--muted); margin-bottom: 0.25rem; }

main { padding-bottom: 4rem; }
.content-grid {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
}

.content-grid.tinted,
.bibliography-section {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
}

.section-kicker {
  color: var(--accent);
  position: sticky;
  top: 1rem;
}

.prose {
  font-size: 1.03rem;
  max-width: 850px;
}

.prose h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 1.2rem;
  letter-spacing: -0.02em;
}

.prose h3 {
  font-size: 1.7rem;
  margin: 2rem 0 0.9rem;
}

.prose h4 {
  font-size: 1.35rem;
  margin: 0 0 0.35rem;
}

.question-box {
  background: var(--accent-soft);
  border-left: 5px solid var(--accent);
  border-radius: 18px;
  padding: 1.3rem 1.5rem;
  margin: 2rem 0;
}
.question-box h3 { margin-top: 0; }
.question-box ul { margin-bottom: 0; }

.topic-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.topic-list li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem 1.1rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.2rem 0 2rem;
}
.timeline-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.1rem;
}
.timeline-item span {
  display: block;
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.editors {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.editors article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.1rem;
}
.editors p { margin: 0; }

summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--accent-dark);
  margin-bottom: 1rem;
}
.bibliography {
  padding-left: 1.25rem;
  margin: 1rem 0 0;
}
.bibliography li { margin-bottom: 0.7rem; }

footer {
  background: #281711;
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
  padding: 2.5rem 1rem;
}
footer p { margin: 0.25rem 0; }

@media (max-width: 820px) {
  .topbar { justify-content: flex-start; }
  .hero-inner { padding-top: 3.2rem; }
  .notice-card, .content-grid, .content-grid.tinted, .bibliography-section {
    grid-template-columns: 1fr;
  }
  .notice-card { margin-top: -2rem; }
  .timeline, .editors { grid-template-columns: 1fr; }
  .section-kicker { position: static; }
}

@media print {
  .topbar, .hero-actions { display: none; }
  .hero { min-height: auto; color: #000; background: #fff; }
  .hero::after { display: none; }
  .notice-card, .content-grid.tinted, .bibliography-section, .topic-list li, .timeline-item, .editors article {
    box-shadow: none;
    background: #fff;
  }
}
