:root {
  --bg: #070608;
  --bg-soft: #111014;
  --panel: rgba(18, 15, 20, 0.78);
  --line: rgba(255,255,255,0.09);
  --text: #f2eaf0;
  --muted: #bbaeb8;
  --accent: #8c233c;
  --accent-soft: #d1a8b4;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(140, 35, 60, 0.16), transparent 28%),
    linear-gradient(180deg, #0a090b 0%, #050406 100%);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent-soft); }
img { max-width: 100%; height: auto; display: block; }

.wrap {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}
.narrow { width: min(calc(100% - 2rem), 820px); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(6, 5, 8, 0.78);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}
.site-title {
  font-size: 1.35rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.site-tagline {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.site-nav ul {
  display: flex;
  gap: 1.2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-nav a {
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-section {
  min-height: 88vh;
  position: relative;
  display: grid;
  align-items: center;
  background:
    linear-gradient(rgba(5, 4, 6, 0.30), rgba(5, 4, 6, 0.75)),
    url('https://images.unsplash.com/photo-1516589178581-6cd7833ae3b2?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 7, 11, 0.82) 0%, rgba(9, 7, 11, 0.40) 48%, rgba(9, 7, 11, 0.78) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 6rem 0;
  max-width: 760px;
}
.eyebrow,
.section-kicker,
.card-meta {
  font-size: 0.82rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-soft);
}
.hero-content h1,
.archive-hero h1,
.entry-header h1,
.intro-section h2,
.split-banner h2,
.contact-inner h2 {
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.02em;
}
.hero-content h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  margin: 0.3rem 0 1rem;
}
.hero-text {
  font-size: 1.18rem;
  max-width: 58ch;
  color: #e1d7de;
}
.button-primary,
.button-secondary,
.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  border: 1px solid rgba(209, 168, 180, 0.45);
  background: linear-gradient(180deg, rgba(140, 35, 60, 0.8), rgba(87, 21, 38, 0.85));
  box-shadow: var(--shadow);
  margin-top: 1rem;
}
.button-secondary {
  background: transparent;
}

.intro-section,
.post-grid-section,
.split-banner,
.archive-hero,
.content-shell {
  padding: 5rem 0;
}
.intro-section h2,
.split-banner h2,
.contact-inner h2 {
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  margin: 0.35rem 0 1rem;
}
.intro-section p,
.split-banner p,
.contact-inner p,
.entry-content,
.card-content p {
  color: var(--muted);
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.post-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.card-image,
.card-placeholder {
  aspect-ratio: 4 / 5;
  width: 100%;
  object-fit: cover;
}
.card-placeholder {
  background: linear-gradient(135deg, rgba(140,35,60,.25), rgba(255,255,255,.03));
}
.card-content {
  padding: 1.4rem;
}
.card-content h2,
.card-content h3 {
  font-weight: 400;
  font-size: 1.5rem;
  margin: 0.2rem 0 0.8rem;
}

.split-banner {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.2fr 1fr;
  align-items: start;
}

.contact-strip {
  padding: 5rem 0 6rem;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(17, 14, 19, 0.55), rgba(10, 8, 12, 0.88));
}
.contact-inner { text-align: center; }

.single-shell .entry-header { margin-bottom: 2rem; }
.featured-image-wrap {
  margin-bottom: 2rem;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.entry-content {
  font-size: 1.05rem;
}
.entry-content p,
.entry-content ul,
.entry-content ol,
.entry-content blockquote {
  margin-bottom: 1.2rem;
}
.entry-content blockquote {
  margin-left: 0;
  padding-left: 1rem;
  border-left: 2px solid var(--accent);
  color: #ead6dd;
}

.pagination-wrap,
.footer-bottom {
  margin-top: 2rem;
}
.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 3rem;
  background: #050406;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
}
.footer-title {
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.footer-copy,
.footer-bottom,
.footer-grid ul,
.footer-grid li {
  color: var(--muted);
}
.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

@media (max-width: 920px) {
  .post-grid,
  .split-banner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .header-inner,
  .footer-grid,
  .split-banner,
  .post-grid {
    grid-template-columns: 1fr;
    display: grid;
  }
  .site-nav ul {
    flex-wrap: wrap;
  }
  .hero-content {
    padding: 5rem 0;
  }
}

@media (max-width: 560px) {
  .post-grid,
  .split-banner {
    grid-template-columns: 1fr;
  }
  .hero-content h1 {
    font-size: 2.8rem;
  }
}
