:root {
  --bg: #050505;
  --surface: #101010;
  --surface-2: #171717;
  --text: #f2f2f2;
  --muted: #a8a8a8;
  --accent: #c5a786;
  --border: rgba(197, 167, 134, 0.18);
  --shadow: rgba(0, 0, 0, 0.45);
  --heading: "Avenir Next", "Segoe UI", system-ui, sans-serif;
  --body: "Inter", "Segoe UI", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(197, 167, 134, 0.11), transparent 30rem),
    linear-gradient(180deg, #080808 0%, var(--bg) 42%);
  color: var(--text);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.75;
  animation: pageFade 0.7s ease both;
}

@keyframes pageFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

.site-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  padding: 34px 0 24px;
  border-bottom: 1px solid var(--border);
}

.site-title {
  font-family: var(--heading);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}



.nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: clamp(22px, 6vw, 42px);
  margin-top: 18px;
  white-space: nowrap;
}

.nav a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-main {
  padding: 54px 0;
}

.header-banner {
  display: block;
  width: 100%;
  max-width: 720px;
  margin: 0 auto 18px;
}


.hero {
  max-width: 860px;
  margin: 0 auto;
  padding: 8px 0 48px;
  text-align: center;
}

.hero-logo {
  display: block;
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin: 0 auto 54px;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 24px 80px var(--shadow);
}

.hero-copy {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.hero-copy h1 {
  margin-bottom: 24px;
}

.hero-copy p {
  font-size: 20px;
  line-height: 1.8;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.article-header h1 {
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.hero p {
  max-width: 700px;
  color: var(--muted);
  font-size: 18px;
}

.section-title {
  margin: 0 0 24px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.post-card {
  overflow: hidden;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 24px 80px var(--shadow);
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.post-card:hover {
  transform: translateY(-6px);
  border-color: rgba(197, 167, 134, 0.36);
}

.post-card-content {
  padding: 26px;
}

.post-card time,
.article-meta {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.post-card h2 {
  margin: 10px 0;
  font-family: var(--heading);
  font-size: 26px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.post-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 44px;
}

.link-row a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.follow-section {
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.follow-section .section-title {
  text-align: center;
}

.follow-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

.follow-links a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.follow-links a:hover {
  color: var(--accent);
}

.article-hero-image {
  max-width: 720px;
  margin: 0 auto 46px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: 0 24px 80px var(--shadow);
}

.article-hero-image img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center 28%;
}

.related-section {
  max-width: 720px;
  margin: 76px auto 0;
}

.related-section .post-grid {
  grid-template-columns: 1fr;
}

.related-section .post-card {
  max-width: 420px;
}

.article {
  max-width: 720px;
  margin: 0 auto;
}

.article-header {
  margin-top: 40px;
  margin-bottom: 40px;
}

.article-content {
  color: rgba(242, 242, 242, 0.91);
}

.article-content p {
  margin: 0 0 30px;
}

.article-content h2,
.article-content h3 {
  margin: 46px 0 14px;
  font-family: var(--heading);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.article-content h2 {
  font-size: 28px;
}

.article-content h3 {
  font-size: 22px;
}

.article-content blockquote {
  margin: 36px 0;
  padding-left: 24px;
  border-left: 3px solid var(--accent);
  color: var(--text);
  font-size: 22px;
  line-height: 1.55;
}

.video-section {
  max-width: 720px;
  margin: 64px auto;
}

.video-section p {
  margin-bottom: 18px;
}

.video-section .article-content {
  max-width: 720px;
  margin: 0 auto;
}

.video-embed {
  width: 100%;
  margin: 24px auto 0;
}

.video-embed iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 0;
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 24px 80px var(--shadow);
}

.site-footer {
  padding: 36px 0 54px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 12px;
}

@media (max-width: 900px) {
  .post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 28px, 1120px);
  }

  .site-main {
    padding-top: 32px;
  }

  .hero {
    padding-top: 12px;
  }

  .nav {
    gap: 24px;
  }

  .nav a {
    font-size: 12px;
    letter-spacing: 0.06em;
  }

  .post-grid {
    grid-template-columns: 1fr;
  }

  body {
    font-size: 17px;
  }
}
