@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Source+Sans+3:wght@400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --sn-brown: #4A2C1A;
  --sn-sage: #6B8F5E;
  --sn-sage-light: #8BAF7C;
  --sn-sage-pale: #EAF2E5;
  --sn-amber: #C8881A;
  --sn-amber-pale: #FDF4E3;
  --sn-cream: #FAFAF7;
  --sn-text: #2C1F10;
  --sn-text-mid: #5C4A30;
  --sn-border: #D4C9B0;
  --sn-max-width: 1180px;
}

body {
  font-family: 'Source Sans 3', system-ui, sans-serif;
  background: var(--sn-cream);
  color: var(--sn-text);
  line-height: 1.65;
  font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--sn-sage); }
a:hover { color: var(--sn-sage-light); }

/* ---- HEADER ---- */
.sn-header {
  background: var(--sn-cream);
  border-bottom: 1px solid var(--sn-border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.sn-header-inner {
  max-width: var(--sn-max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.sn-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.sn-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50% 0 50% 0;
  object-fit: cover;
  flex-shrink: 0;
}
.sn-logo-leaf {
  width: 44px;
  height: 44px;
  background: var(--sn-sage);
  border-radius: 50% 0 50% 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Libre Baskerville', serif;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}
.sn-logo-text strong {
  display: block;
  font-family: 'Libre Baskerville', serif;
  font-size: 18px;
  color: var(--sn-brown);
  font-weight: 700;
  line-height: 1;
}
.sn-logo-text span {
  font-size: 11px;
  color: var(--sn-sage);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.sn-nav,
.sn-nav ul { display: flex; gap: 0; list-style: none; margin: 0; padding: 0; }
.sn-nav li { display: flex; align-items: center; }
.sn-nav a {
  color: var(--sn-text-mid);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.15s;
}
.sn-nav a:hover,
.sn-nav a.current-menu-item {
  background: var(--sn-sage-pale);
  color: var(--sn-sage);
}
.sn-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.sn-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--sn-brown);
  border-radius: 2px;
  transition: all 0.2s;
}
.sn-mobile-nav {
  display: none;
  background: var(--sn-cream);
  border-bottom: 1px solid var(--sn-border);
  padding: 12px 24px;
}
.sn-mobile-nav ul { list-style: none; margin: 0; padding: 0; }
.sn-mobile-nav li { display: block; }
.sn-mobile-nav a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--sn-border);
  color: var(--sn-text-mid);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}
.sn-mobile-nav a:last-child { border-bottom: none; }

/* ---- HERO (front page) ---- */
.sn-hero {
  background: var(--sn-brown);
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  will-change: background-position;
}
.sn-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 40%, #3D6B2C 0%, #2A4B1E 40%, #1A2C0E 100%);
  opacity: 0.85;
}
.sn-hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.05) 1px, transparent 0);
  background-size: 32px 32px;
}
.sn-hero-inner {
  max-width: var(--sn-max-width);
  margin: 0 auto;
  padding: 0 24px 56px;
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
}
.sn-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}
.sn-hero-eyebrow span {
  background: var(--sn-sage);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 3px;
}
.sn-hero-line { width: 40px; height: 2px; background: var(--sn-sage-light); }
.sn-hero-left h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(28px, 4vw, 46px);
  color: white;
  line-height: 1.15;
  margin-bottom: 18px;
}
.sn-hero-left p {
  color: rgba(255,255,255,0.7);
  font-size: 17px;
  line-height: 1.65;
  max-width: 440px;
}
.sn-hero-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 24px;
}
.sn-hero-card-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--sn-sage-light);
  font-weight: 600;
  margin-bottom: 12px;
}
.sn-mini-card {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-decoration: none;
}
.sn-mini-card:last-child { border-bottom: none; padding-bottom: 0; }
.sn-mini-card-icon {
  width: 36px;
  height: 36px;
  background: var(--sn-sage);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.sn-mini-card-text strong {
  display: block;
  color: white;
  font-size: 14px;
  line-height: 1.2;
}
.sn-mini-card-text span {
  color: rgba(255,255,255,0.5);
  font-size: 12px;
}

/* ---- FEATURE STRIP ---- */
.sn-feature-strip {
  background: var(--sn-sage-pale);
  border-left: 4px solid var(--sn-sage);
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.sn-feature-strip .sn-strip-icon { font-size: 28px; flex-shrink: 0; }
.sn-feature-strip h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: 17px;
  color: var(--sn-brown);
  margin-bottom: 4px;
}
.sn-feature-strip p { font-size: 14px; color: var(--sn-text-mid); }

/* ---- MAIN CONTENT LAYOUT ---- */
.sn-content-wrap {
  max-width: var(--sn-max-width);
  margin: 0 auto;
  padding: 48px 24px;
  display: grid;
  grid-template-columns: 1fr 310px;
  gap: 48px;
}
.sn-content-full {
  max-width: var(--sn-max-width);
  margin: 0 auto;
  padding: 48px 24px;
}

/* ---- SECTION TITLE ---- */
.sn-section-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 20px;
  color: var(--sn-brown);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.sn-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--sn-border);
}

/* ---- CARDS ---- */
.sn-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 36px; }
.sn-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--sn-border);
  transition: box-shadow 0.2s, transform 0.2s;
}
.sn-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.1); transform: translateY(-2px); }
.sn-card-img {
  height: 180px;
  overflow: hidden;
}
.sn-card-img img { width: 100%; height: 100%; object-fit: cover; }
.sn-card-img-placeholder {
  height: 180px;
  background: linear-gradient(135deg, var(--sn-sage), #4A7A3A);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.25);
  font-size: 48px;
}
.sn-card-body { padding: 18px; }
.sn-card-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--sn-sage);
  margin-bottom: 8px;
}
.sn-card-body h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: 16px;
  color: var(--sn-brown);
  line-height: 1.3;
  margin-bottom: 8px;
}
.sn-card-body h3 a { text-decoration: none; color: var(--sn-brown); transition: color 0.15s; }
.sn-card-body h3 a:hover { color: var(--sn-sage); }
.sn-card-body p { font-size: 13px; color: var(--sn-text-mid); line-height: 1.6; }
.sn-card-date { font-size: 12px; color: var(--sn-text-mid); margin-top: 10px; }

/* ---- BIG CARD ---- */
.sn-big-card {
  background: white;
  border-radius: 10px;
  border: 1px solid var(--sn-border);
  overflow: hidden;
  display: grid;
  grid-template-columns: 280px 1fr;
  margin-bottom: 36px;
}
.sn-big-card-img {
  overflow: hidden;
  min-height: 220px;
}
.sn-big-card-img img { width: 100%; height: 100%; object-fit: cover; }
.sn-big-card-img-placeholder {
  background: linear-gradient(135deg, var(--sn-brown), #8B4513);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.15);
  font-size: 56px;
  min-height: 220px;
}
.sn-big-card-body { padding: 28px; display: flex; flex-direction: column; justify-content: center; }
.sn-big-card-body .sn-card-cat { margin-bottom: 10px; }
.sn-big-card-body h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: 22px;
  color: var(--sn-brown);
  margin-bottom: 12px;
  line-height: 1.25;
}
.sn-big-card-body h3 a { text-decoration: none; color: var(--sn-brown); }
.sn-big-card-body h3 a:hover { color: var(--sn-sage); }
.sn-big-card-body p { color: var(--sn-text-mid); margin-bottom: 18px; font-size: 15px; }

/* ---- BUTTONS ---- */
.sn-btn {
  display: inline-block;
  background: var(--sn-sage);
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s;
}
.sn-btn:hover { background: var(--sn-sage-light); color: white; }
.sn-btn-outline {
  display: inline-block;
  border: 2px solid var(--sn-sage);
  color: var(--sn-sage);
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s;
}
.sn-btn-outline:hover { background: var(--sn-sage); color: white; }

/* ---- SINGLE POST / PAGE ---- */
.sn-post-header {
  background: var(--sn-brown);
  padding: 56px 24px 48px;
  position: relative;
  overflow: hidden;
}
.sn-post-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(107,143,94,0.3) 0%, transparent 70%);
}
.sn-post-header-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.sn-post-cat {
  display: inline-block;
  background: var(--sn-sage);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 3px;
  margin-bottom: 16px;
  text-decoration: none;
}
.sn-post-header h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(26px, 4vw, 40px);
  color: white;
  line-height: 1.2;
  margin-bottom: 16px;
}
.sn-post-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.sn-post-meta span { color: rgba(255,255,255,0.6); font-size: 14px; }
.sn-post-meta strong { color: rgba(255,255,255,0.85); }

.sn-post-hero-img {
  max-width: 860px;
  margin: -24px auto 0;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}
.sn-post-hero-img img { width: 100%; border-radius: 10px; box-shadow: 0 16px 48px rgba(0,0,0,0.2); }

.sn-post-body-wrap {
  max-width: var(--sn-max-width);
  margin: 0 auto;
  padding: 48px 24px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
}
.sn-post-content {
  max-width: 720px;
}
.sn-post-content h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 24px;
  color: var(--sn-brown);
  margin: 36px 0 14px;
  line-height: 1.25;
}
.sn-post-content h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: 19px;
  color: var(--sn-brown);
  margin: 28px 0 12px;
}
.sn-post-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--sn-text);
  margin: 20px 0 10px;
}
.sn-post-content p { margin-bottom: 18px; line-height: 1.75; }
.sn-post-content ul,
.sn-post-content ol {
  margin: 0 0 18px 24px;
  line-height: 1.75;
}
.sn-post-content li { margin-bottom: 6px; }
.sn-post-content a { color: var(--sn-sage); text-decoration: underline; }
.sn-post-content blockquote {
  border-left: 4px solid var(--sn-sage);
  background: var(--sn-sage-pale);
  padding: 16px 20px;
  margin: 24px 0;
  border-radius: 0 6px 6px 0;
  font-style: italic;
  color: var(--sn-text-mid);
}
.sn-post-content img {
  border-radius: 8px;
  margin: 24px 0;
  width: 100%;
}

/* ---- FAQ ---- */
.sn-faq { margin: 36px 0; }
.sn-faq-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 22px;
  color: var(--sn-brown);
  margin-bottom: 20px;
}
.sn-faq-item {
  border: 1px solid var(--sn-border);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 8px;
}
.sn-faq-q {
  background: white;
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--sn-text);
  font-size: 15px;
  user-select: none;
}
.sn-faq-q::after { content: '+'; font-size: 20px; color: var(--sn-sage); transition: transform 0.2s; }
.sn-faq-item.open .sn-faq-q::after { transform: rotate(45deg); }
.sn-faq-a {
  display: none;
  padding: 0 20px 16px;
  background: white;
  color: var(--sn-text-mid);
  font-size: 15px;
  line-height: 1.7;
}
.sn-faq-item.open .sn-faq-a { display: block; }

/* ---- AUTHOR BOX ---- */
.sn-author-box {
  background: var(--sn-sage-pale);
  border-radius: 10px;
  padding: 24px;
  margin-top: 40px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.sn-author-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--sn-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Libre Baskerville', serif;
  font-size: 28px;
  color: white;
  font-weight: 700;
}
.sn-author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.sn-author-name {
  font-family: 'Libre Baskerville', serif;
  font-size: 16px;
  color: var(--sn-brown);
  margin-bottom: 4px;
}
.sn-author-role {
  font-size: 12px;
  color: var(--sn-sage);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.sn-author-bio { font-size: 14px; color: var(--sn-text-mid); line-height: 1.7; }

/* ---- BREADCRUMB ---- */
.sn-breadcrumb {
  max-width: var(--sn-max-width);
  margin: 0 auto;
  padding: 12px 24px;
  font-size: 13px;
  color: var(--sn-text-mid);
}
.sn-breadcrumb a { color: var(--sn-sage); text-decoration: none; }
.sn-breadcrumb span { margin: 0 6px; color: var(--sn-border); }

/* ---- SIDEBAR ---- */
.sn-widget {
  background: white;
  border-radius: 10px;
  border: 1px solid var(--sn-border);
  padding: 20px;
  margin-bottom: 20px;
}
.sn-widget h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--sn-brown);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--sn-amber);
}
.sn-pool-list { display: flex; flex-direction: column; gap: 10px; }
.sn-pool-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}
.sn-pool-item a {
  color: var(--sn-sage);
  text-decoration: none;
  font-weight: 500;
}
.sn-pool-item a:hover { color: var(--sn-sage-light); }
.sn-pool-item span { font-size: 12px; color: var(--sn-text-mid); }
.sn-widget-list { list-style: none; }
.sn-widget-list li {
  padding: 7px 0;
  border-bottom: 1px solid var(--sn-border);
  font-size: 14px;
}
.sn-widget-list li:last-child { border-bottom: none; }
.sn-widget-list li a { color: var(--sn-text-mid); text-decoration: none; }
.sn-widget-list li a:hover { color: var(--sn-sage); }

.sn-event-item {
  padding: 10px 0;
  border-bottom: 1px solid var(--sn-border);
  font-size: 13px;
}
.sn-event-item:last-child { border-bottom: none; }
.sn-event-date {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--sn-amber);
  font-weight: 700;
  margin-bottom: 3px;
}
.sn-event-name { color: var(--sn-text); font-weight: 500; }
.sn-event-loc { color: var(--sn-text-mid); }

/* ---- ARCHIVE ---- */
.sn-archive-header {
  background: var(--sn-sage-pale);
  border-bottom: 1px solid var(--sn-border);
  padding: 32px 24px;
}
.sn-archive-header-inner {
  max-width: var(--sn-max-width);
  margin: 0 auto;
}
.sn-archive-header h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: 28px;
  color: var(--sn-brown);
  margin-bottom: 8px;
}
.sn-archive-header p { color: var(--sn-text-mid); font-size: 15px; }

/* ---- PAGINATION ---- */
.sn-pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 24px 0;
}
.sn-pagination a,
.sn-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--sn-border);
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none;
  color: var(--sn-text-mid);
  transition: all 0.15s;
}
.sn-pagination a:hover,
.sn-pagination .current {
  background: var(--sn-sage);
  border-color: var(--sn-sage);
  color: white;
}

/* ---- 404 ---- */
.sn-404 {
  text-align: center;
  padding: 80px 24px;
  max-width: 560px;
  margin: 0 auto;
}
.sn-404-icon { font-size: 64px; margin-bottom: 24px; }
.sn-404 h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: 32px;
  color: var(--sn-brown);
  margin-bottom: 16px;
}
.sn-404 p { color: var(--sn-text-mid); margin-bottom: 28px; font-size: 16px; }

/* ---- FOOTER ---- */
.sn-footer {
  background: var(--sn-brown);
  color: rgba(255,255,255,0.55);
  padding: 48px 24px 24px;
}
.sn-footer-inner {
  max-width: var(--sn-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.sn-footer h4 {
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  margin-bottom: 14px;
  font-family: 'Libre Baskerville', serif;
}
.sn-footer p { font-size: 14px; line-height: 1.7; }
.sn-footer ul { list-style: none; }
.sn-footer ul li { padding: 5px 0; }
.sn-footer ul li a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s;
}
.sn-footer ul li a:hover { color: var(--sn-sage-light); }
.sn-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.sn-footer-logo-leaf {
  width: 32px;
  height: 32px;
  background: var(--sn-sage);
  border-radius: 50% 0 50% 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Libre Baskerville', serif;
  font-size: 14px;
  font-weight: 700;
}
.sn-footer-logo strong {
  color: white;
  font-family: 'Libre Baskerville', serif;
  font-size: 16px;
}
.sn-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  max-width: var(--sn-max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
}
.sn-footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; }
.sn-footer-bottom a:hover { color: var(--sn-sage-light); }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .sn-hero-inner { grid-template-columns: 1fr; }
  .sn-hero-right { display: none; }
  .sn-content-wrap { grid-template-columns: 1fr; }
  .sn-post-body-wrap { grid-template-columns: 1fr; }
  .sn-sidebar { display: none; }
  .sn-footer-inner { grid-template-columns: 1fr 1fr; }
  .sn-big-card { grid-template-columns: 1fr; }
  .sn-big-card-img-placeholder,
  .sn-big-card-img { min-height: 200px; }
}
@media (max-width: 640px) {
  .sn-nav { display: none; }
  .sn-hamburger { display: flex; }
  .sn-cards { grid-template-columns: 1fr; }
  .sn-footer-inner { grid-template-columns: 1fr; }
  .sn-footer-bottom { flex-direction: column; text-align: center; }
  .sn-header-inner { height: 60px; }
}
