/* ===========================================
   Seeds in an Apple — Main Stylesheet
   =========================================== */

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

:root {
  --sage: #7d9b76;
  --sage-light: #b8cfb4;
  --sage-dark: #4a6645;
  --cream: #f7f3ed;
  --warm-white: #fdfaf6;
  --bark: #6b4f3a;
  --bark-light: #c4a882;
  --text: #2c2c2c;
  --text-muted: #7a7a7a;
  --apple-red: #c0392b;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--text);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ===== NAV ===== */
#site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 4rem;
  background: rgba(253, 250, 246, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(125, 155, 118, 0.15);
  transition: box-shadow 0.3s ease;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--sage-dark);
  letter-spacing: 0.04em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  mix-blend-mode: multiply; /* blends white bg into cream nav */
}

/* On dark footer background — invert blend so logo shows up */
.footer-logo .nav-logo-img {
  height: 58px;
  mix-blend-mode: normal;
  filter: brightness(0) invert(1) drop-shadow(0 2px 6px rgba(0,0,0,0.4));
  opacity: 0.9;
}

.nav-logo-text { color: var(--sage-dark); }

/* WordPress menu styles */
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links li a {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--sage);
  transition: width 0.3s ease;
}

.nav-links li a:hover,
.nav-links li.current-menu-item > a { color: var(--sage-dark); }
.nav-links li a:hover::after,
.nav-links li.current-menu-item > a::after { width: 100%; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--sage-dark);
  transition: all 0.3s ease;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: var(--sage-dark);
  color: white;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}
.btn-primary:hover {
  background: var(--bark);
  transform: translateY(-2px);
  color: white;
}

.btn-outline {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: transparent;
  color: var(--sage-dark);
  border: 1px solid var(--sage-light);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}
.btn-outline:hover {
  border-color: var(--sage-dark);
  background: rgba(125, 155, 118, 0.06);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  padding-top: 72px; /* nav height */
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 5rem 5rem 6rem;
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 2rem;
  position: relative;
  padding-left: 2rem;
  animation: fadeUp 0.8s ease both 0.1s;
}
.hero-tag::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 1.4rem; height: 1px;
  background: var(--sage);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 5.5vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 2rem;
  animation: fadeUp 0.8s ease both 0.2s;
}
.hero-title em { font-style: italic; color: var(--sage-dark); }

.hero-subtitle {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 380px;
  margin-bottom: 3rem;
  font-weight: 300;
  animation: fadeUp 0.8s ease both 0.35s;
}

.hero-cta {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease both 0.5s;
}

.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(125,155,118,0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(196,168,130,0.2) 0%, transparent 50%);
  z-index: 1;
}

.hero-visual {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hero-quote-card {
  width: 75%;
  background: rgba(253,250,246,0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(125,155,118,0.2);
  padding: 3.5rem;
  position: relative;
  animation: fadeIn 1s ease both 0.5s;
  box-shadow: 0 30px 80px rgba(0,0,0,0.08);
}

.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 8rem;
  line-height: 0;
  color: var(--sage-light);
  position: absolute;
  top: 2.5rem; left: 2.5rem;
  opacity: 0.5;
}

.hero-quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--text);
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

.hero-quote-author {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
}

.leaf {
  position: absolute;
  width: 80px;
  opacity: 0.15;
  animation: float 6s ease-in-out infinite;
}
.leaf-1 { top: 10%; right: 5%; animation-delay: 0s; }
.leaf-2 { bottom: 15%; left: 8%; animation-delay: 2s; }

/* ===== MARQUEE ===== */
.marquee-section {
  background: var(--sage-dark);
  padding: 1rem 0;
  overflow: hidden;
  display: flex;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 2rem;
}
.marquee-item::after {
  content: '✦';
  font-style: normal;
  color: var(--sage-light);
  font-size: 0.6rem;
}

/* ===== ABOUT STRIP ===== */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.about-image-side {
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--sage) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}
.about-image-side::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border: 60px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  top: -50px; left: -50px;
}
.about-image-side::after {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border: 40px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  bottom: -30px; right: -30px;
}
.about-logo-img {
  width: 75%;
  max-width: 340px;
  position: relative;
  z-index: 1;
  animation: gentle-bob 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}

.about-content {
  padding: 5rem 5rem 5rem 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
}

/* ===== SECTION UTILITIES ===== */
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.section-label::before {
  content: '';
  width: 1.5rem; height: 1px;
  background: var(--sage);
  display: inline-block;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text);
}
.section-title strong { font-weight: 600; color: var(--sage-dark); }
.section-title em { font-style: italic; color: var(--sage-dark); }

.section-body {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 420px;
  margin-bottom: 2.5rem;
}

/* ===== PILLARS ===== */
.pillars {
  padding: 7rem 6rem;
  background: var(--warm-white);
}
.pillars-header { text-align: center; margin-bottom: 5rem; }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.pillar-card {
  padding: 3rem 2.5rem;
  background: var(--cream);
  border: 1px solid rgba(125,155,118,0.15);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}
.pillar-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--bark-light));
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}
.pillar-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.07); }
.pillar-card:hover::before { transform: scaleX(1); }

.pillar-icon { font-size: 2.5rem; margin-bottom: 1.5rem; display: block; }
.pillar-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
.pillar-desc { font-size: 0.88rem; line-height: 1.8; color: var(--text-muted); font-weight: 300; }

/* ===== ARTICLES ===== */
.articles { padding: 7rem 6rem; background: var(--cream); }

.articles-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}

.see-all {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--sage-light);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.see-all:hover { border-color: var(--sage-dark); }

.articles-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2rem;
}

.article-card {
  background: var(--warm-white);
  overflow: hidden;
  transition: transform 0.3s ease;
  border: 1px solid rgba(125,155,118,0.1);
}
.article-card:hover { transform: translateY(-4px); }
.article-card.featured { grid-row: span 2; display: flex; flex-direction: column; }

.article-thumb {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.article-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.article-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(74,102,69,0.3), transparent);
  pointer-events: none;
}
.article-card.featured .article-thumb { flex: 1; font-size: 4rem; }

.article-body { padding: 1.8rem; }
.article-cat { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sage); font-weight: 500; margin-bottom: 0.7rem; }
.article-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.35;
  color: var(--text);
  margin-bottom: 0.8rem;
  text-decoration: none;
  display: block;
  transition: color 0.2s;
}
.article-card.featured .article-title { font-size: 1.7rem; }
.article-title:hover { color: var(--sage-dark); }
.article-excerpt {
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--text-muted);
  font-weight: 300;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-meta {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(125,155,118,0.12);
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ===== QUOTE BREAK ===== */
.quote-break {
  padding: 8rem 6rem;
  background: var(--sage-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-break::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 30rem;
  line-height: 1;
  color: rgba(255,255,255,0.03);
  position: absolute;
  top: -5rem;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.qb-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: white;
  max-width: 800px;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 1;
}
.qb-author {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-light);
  position: relative;
  z-index: 1;
}

/* ===== VIDEOS ===== */
.videos-section { padding: 7rem 6rem; background: var(--warm-white); }
.videos-header { margin-bottom: 4rem; }
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.video-card { cursor: pointer; transition: transform 0.3s ease; }
.video-card:hover { transform: scale(1.02); }

.video-thumb {
  height: 200px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 1.2rem;
}
.play-btn {
  width: 54px; height: 54px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  padding-left: 4px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.video-card:hover .play-btn { background: white; transform: scale(1.1); }
.video-title { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 400; color: var(--text); line-height: 1.4; }
.video-meta { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.4rem; }

/* ===== NEWSLETTER ===== */
.newsletter {
  padding: 6rem;
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.nl-form {
  display: flex;
  border: 1px solid rgba(125,155,118,0.3);
  background: white;
  overflow: hidden;
  margin-top: 2rem;
}
.nl-input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: none;
  outline: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: transparent;
}
.nl-input::placeholder { color: var(--text-muted); }
.nl-btn {
  padding: 1rem 1.8rem;
  background: var(--sage-dark);
  color: white;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  font-weight: 500;
}
.nl-btn:hover { background: var(--bark); }
.nl-note { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.8rem; }

.nl-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.stat-card {
  background: var(--warm-white);
  border: 1px solid rgba(125,155,118,0.12);
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
}
.stat-card:hover { transform: translateY(-3px); }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--sage-dark);
  display: block;
}
.stat-label { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-top: 0.3rem; }

/* ===== FOOTER ===== */
#site-footer {
  background: #1e2a1a;
  color: rgba(255,255,255,0.6);
  padding: 5rem 6rem 3rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer-brand .nav-logo { color: var(--sage-light); font-size: 1.2rem; display: flex; margin-bottom: 1.2rem; }
.footer-tagline { font-size: 0.85rem; line-height: 1.8; color: rgba(255,255,255,0.4); margin-bottom: 2rem; }
.social-links { display: flex; gap: 1rem; }
.social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: all 0.2s;
  border-radius: 50%;
}
.social-link:hover { border-color: var(--sage-light); color: var(--sage-light); }
.footer-col h4 { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; font-weight: 500; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links li a { font-size: 0.85rem; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-links li a:hover { color: var(--sage-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

/* ===== ARCHIVE / INDEX ===== */
.archive-main { padding-top: 72px; }
.archive-container { max-width: 1300px; margin: 0 auto; padding: 5rem 4rem; }
.archive-header { margin-bottom: 4rem; }
.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.pagination { margin-top: 4rem; display: flex; justify-content: center; }
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.pagination a, .pagination span {
  padding: 0.5rem 1rem;
  border: 1px solid rgba(125,155,118,0.3);
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.2s;
}
.pagination a:hover, .pagination .current {
  background: var(--sage-dark);
  color: white;
  border-color: var(--sage-dark);
}

/* ===== SINGLE POST ===== */
.single-post { padding-top: 72px; }
.single-hero { position: relative; min-height: 420px; background: var(--cream); display: flex; flex-direction: column; justify-content: flex-end; }
.single-thumb { position: absolute; inset: 0; overflow: hidden; }
.single-thumb img { width: 100%; height: 100%; object-fit: cover; }
.single-thumb-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(30,42,26,0.85) 0%, rgba(30,42,26,0.1) 60%); }
.single-hero-content { position: relative; z-index: 2; padding: 4rem 6rem; color: white; }
.single-hero-content .article-cat { color: var(--sage-light); }
.single-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
  color: white;
  margin: 1rem 0;
  max-width: 800px;
}
.single-meta { font-size: 0.8rem; color: rgba(255,255,255,0.6); display: flex; gap: 0.8rem; }

.single-content-wrap { max-width: 760px; margin: 0 auto; padding: 5rem 2rem; }
.single-content { font-size: 1.05rem; line-height: 1.9; color: var(--text); font-weight: 300; }
.single-content h2, .single-content h3 { font-family: 'Cormorant Garamond', serif; font-weight: 400; color: var(--text); margin: 2.5rem 0 1rem; }
.single-content h2 { font-size: 1.8rem; }
.single-content h3 { font-size: 1.4rem; }
.single-content p { margin-bottom: 1.5rem; }
.single-content a { color: var(--sage-dark); text-decoration: underline; }
.single-content ul, .single-content ol { padding-left: 1.5rem; margin-bottom: 1.5rem; }
.single-content li { margin-bottom: 0.5rem; }
.single-content blockquote {
  border-left: 3px solid var(--sage);
  padding: 1rem 2rem;
  margin: 2rem 0;
  background: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
}

.single-tags { margin-top: 3rem; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.tag-pill {
  padding: 0.3rem 1rem;
  border: 1px solid var(--sage-light);
  font-size: 0.75rem;
  color: var(--sage-dark);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: all 0.2s;
}
.tag-pill:hover { background: var(--sage-dark); color: white; border-color: var(--sage-dark); }

.post-navigation {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(125,155,118,0.2);
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
.post-nav-link { text-decoration: none; display: flex; flex-direction: column; gap: 0.3rem; max-width: 45%; }
.post-nav-link.next { text-align: right; }
.post-nav-label { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sage); }
.post-nav-title { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--text); line-height: 1.3; transition: color 0.2s; }
.post-nav-link:hover .post-nav-title { color: var(--sage-dark); }

/* ===== PAGE ===== */
.page-wrap { max-width: 800px; margin: 0 auto; padding: 8rem 2rem 5rem; }
.page-header { margin-bottom: 3rem; }
.page-content { font-size: 1rem; line-height: 1.9; color: var(--text); font-weight: 300; }
.page-content p { margin-bottom: 1.5rem; }
.page-content h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 400; margin: 2rem 0 1rem; }
.page-content a { color: var(--sage-dark); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(30deg); }
  50% { transform: translateY(-15px) rotate(35deg); }
}
@keyframes gentle-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  #site-nav { padding: 0.8rem 2rem; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 5rem 2rem 3rem; }
  .hero-right { min-height: 380px; }
  .about-strip { grid-template-columns: 1fr; }
  .about-content { padding: 4rem 2rem; }
  .pillars { padding: 5rem 2rem; }
  .pillars-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .articles { padding: 5rem 2rem; }
  .articles-grid { grid-template-columns: 1fr; }
  .article-card.featured { grid-row: auto; }
  .videos-section { padding: 5rem 2rem; }
  .videos-grid { grid-template-columns: 1fr; }
  .newsletter { grid-template-columns: 1fr; padding: 4rem 2rem; gap: 3rem; }
  .nl-right { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  #site-footer { padding: 4rem 2rem 2rem; }
  .quote-break { padding: 5rem 2rem; }
  .archive-grid { grid-template-columns: 1fr 1fr; }
  .single-hero-content { padding: 3rem 2rem; }
  .single-content-wrap { padding: 3rem 1.5rem; }
}

@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; gap: 1.2rem; position: absolute; top: 100%; left: 0; right: 0; background: rgba(253,250,246,0.97); backdrop-filter: blur(12px); padding: 2rem; border-bottom: 1px solid rgba(125,155,118,0.15); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .archive-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}
