:root {
  --deep-forest: #253B2F;
  --warm-gold: #B48126;
  --rust: #993F0D;
  --warm-cream: #F5F1E8;
  --white: #ffffff;
  --text-color: #2b2b2b;
  --max-width: 800px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-color);
  background: var(--warm-cream);
  line-height: 1.6;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */

.site-header {
  background: var(--white);
  border-bottom: 1px solid rgba(37, 59, 47, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo-link img {
  height: 48px;
  width: auto;
  display: block;
}

.primary-nav {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: var(--deep-forest);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--warm-gold);
}

/* Sections */

.section {
  padding: 4rem 0;
}

.section.bg-white {
  background: var(--white);
}

.section.bg-cream {
  background: var(--warm-cream);
}

.section h1 {
  font-size: 2.2rem;
  margin-top: 0;
  color: var(--deep-forest);
}

.section h2 {
  font-size: 1.6rem;
  margin-top: 0;
  color: var(--deep-forest);
}

.section-lede {
  font-weight: 600;
  color: var(--warm-gold);
  font-size: 1.1rem;
}

/* Buttons */

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  transition: opacity 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background: var(--deep-forest);
  color: var(--white);
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-secondary {
  background: var(--white);
  color: var(--deep-forest);
  border-color: var(--deep-forest);
}

.btn-secondary:hover {
  background: var(--deep-forest);
  color: var(--white);
}

/* Featured Story */

.featured-story {
  margin-top: 1rem;
}

.featured-story h3 a {
  color: var(--deep-forest);
  text-decoration: none;
}

.featured-story h3 a:hover {
  color: var(--warm-gold);
  text-decoration: underline;
}

/* About Paul */

.about-paul {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.about-photo {
  flex: 0 0 160px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--warm-cream);
  border: 2px dashed rgba(37, 59, 47, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--deep-forest);
  font-size: 0.85rem;
  text-align: center;
}

.about-paul p {
  flex: 1 1 320px;
  margin: 0;
}

/* Blog / post listings (used on Explore and the homepage Latest Post section) */

.blog-posts {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.blog-post {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(37, 59, 47, 0.15);
}

.blog-post:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.blog-post h3 {
  margin: 0 0 0.25rem;
  font-size: 1.15rem;
}

.blog-post h3 a {
  color: var(--deep-forest);
  text-decoration: none;
}

.blog-post h3 a:hover {
  color: var(--warm-gold);
  text-decoration: underline;
}

.blog-date {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  color: #667;
}

.blog-excerpt {
  margin: 0;
}

.blog-message {
  color: #667;
  font-style: italic;
}

/* Footer */

.site-footer {
  background: var(--deep-forest);
  color: var(--white);
  padding: 2rem 0;
  text-align: center;
  font-size: 0.85rem;
}

.site-footer a {
  color: var(--warm-cream);
}

/* Hero (Front Door) */

.hero {
  background: var(--warm-cream);
  padding: 8vh 1.5rem;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 5vw;
  max-width: 1240px;
  margin: 0 auto;
}

.hero-door {
  flex: 0 0 38%;
  max-width: 440px;
  min-width: 220px;
}

.hero-door img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-text {
  flex: 1 1 55%;
}

.hero-text h1 {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 0.6rem 0;
  line-height: 1.15;
}

.hero-text h1 span {
  display: block;
}

.hero-text h1 .word-schooler {
  color: var(--deep-forest);
}

.hero-text h1 .word-ventures {
  color: var(--warm-gold);
}

.hero-text .tagline {
  font-weight: 600;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  color: var(--warm-gold);
  margin: 0 0 1.5rem 0;
  letter-spacing: 0.01em;
}

.hero-text p {
  font-weight: 400;
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  line-height: 1.65;
  color: var(--deep-forest);
  max-width: 46ch;
  margin: 0;
}

@media (max-width: 800px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 2.5rem;
  }
  .hero-door {
    flex: 0 0 auto;
    max-width: 220px;
    margin: 0 auto;
  }
  .hero-text p {
    max-width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .header-inner {
    justify-content: center;
  }
  .about-paul {
    justify-content: center;
    text-align: center;
  }
}
