/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --sage: #8aaa7c;
  --sage-light: #c7d9be;
  --sage-pale: #eef4ea;
  --blush: #d4907a;
  --blush-light: #ecc8bc;
  --blush-pale: #faf0ec;
  --gold: #b8954a;
  --gold-light: #e0c98a;
  --cream: #faf7f0;
  --bark: #5c4a35;
  --bark-light: #8a7060;
  --bark-pale: #c4b8aa;
  --white: #ffffff;
  --font-display: 'Cinzel Decorative', serif;
  --font-body: 'Lato', sans-serif;
  --font-accent: 'Cormorant Garamond', serif;
  --max-width: 1100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--bark);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 40% at 10% 20%, rgba(138,170,124,0.10) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 90% 80%, rgba(212,144,122,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--sage); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--bark); }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 300;
  color: var(--bark);
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.2rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
li { margin-bottom: 0.4rem; }

blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--bark-light);
  border-left: 3px solid var(--gold-light);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 1.5rem 0;
}

/* ── HEADER ── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250,247,240,0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184,149,74,0.2);
  padding: 0 2rem;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.site-branding a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--bark);
  text-decoration: none;
  line-height: 1.2;
  letter-spacing: 0.02em;
  display: block;
}

.site-branding .site-description {
  font-size: 0.65rem;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bark-light);
  margin-top: 2px;
}

/* ── HAMBURGER ── */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--bark);
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}

.menu-toggle.is-active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.menu-toggle.is-active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── NAVIGATION ── */
#primary-navigation {
  display: flex;
  align-items: center;
}

#primary-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 2rem;
}

#primary-navigation ul li a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bark-light);
  text-decoration: none;
  transition: color 0.2s;
}

#primary-navigation ul li a:hover,
#primary-navigation ul li.current-menu-item a {
  color: var(--bark);
}

#primary-navigation ul li.menu-cta a {
  background: var(--sage);
  color: var(--white);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  transition: background 0.2s;
}

#primary-navigation ul li.menu-cta a:hover {
  background: var(--bark);
  color: var(--white);
}

/* Sub-menus */
#primary-navigation ul li { position: relative; }

#primary-navigation ul ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--sage-light);
  border-radius: 12px;
  padding: 0.5rem 0;
  min-width: 180px;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 8px 24px rgba(92,74,53,0.08);
}

#primary-navigation ul li:hover > ul { display: flex; }

#primary-navigation ul ul li a {
  padding: 0.6rem 1.25rem;
  display: block;
  font-size: 0.8rem;
}

/* ── MOBILE NAV ── */
@media (max-width: 768px) {
  .menu-toggle { display: flex; }

  #primary-navigation {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(250,247,240,0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(184,149,74,0.2);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
  }

  #primary-navigation.is-open {
    max-height: 500px;
    padding: 1.5rem 0 2rem;
  }

  #primary-navigation ul {
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
  }

  #primary-navigation ul li {
    width: 100%;
    text-align: center;
  }

  #primary-navigation ul li a {
    display: block;
    padding: 0.75rem 2rem;
    font-size: 0.85rem;
  }

  #primary-navigation ul li.menu-cta {
    margin-top: 0.5rem;
  }

  #primary-navigation ul li.menu-cta a {
    display: inline-block;
    width: auto;
  }

  #primary-navigation ul ul {
    position: static;
    box-shadow: none;
    border: none;
    border-top: 1px solid var(--sage-light);
    border-radius: 0;
    background: var(--sage-pale);
    display: flex;
    flex-direction: column;
  }
}

/* ── MAIN CONTENT ── */
#page {
  position: relative;
  z-index: 1;
}

#content {
  padding-top: 72px;
}

.site-main {
  min-height: 60vh;
}

/* ── BUTTONS ── */
.btn-primary, .wp-block-button__link, button[type="submit"], input[type="submit"] {
  background: var(--sage);
  color: var(--white);
  padding: 0.85rem 2.25rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
  text-decoration: none;
}

.btn-primary:hover, .wp-block-button__link:hover, button[type="submit"]:hover, input[type="submit"]:hover {
  background: var(--bark);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-secondary {
  border: 1px solid var(--bark-pale);
  color: var(--bark-light);
  padding: 0.85rem 2.25rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
  text-decoration: none;
  background: none;
  cursor: pointer;
}

.btn-secondary:hover { border-color: var(--sage); color: var(--sage); }

/* ── SECTION COMMON ── */
.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.section-label::before { content: '✦'; font-size: 0.6rem; }

/* ── HERO (front page) ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 2rem 80px;
  overflow: hidden;
}

.hero-ornament {
  font-size: 1.5rem;
  letter-spacing: 0.5rem;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  display: block;
}

.hero-subtitle {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-subtitle::before, .hero-subtitle::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--sage-light);
}

.hero h1 { margin-bottom: 0.25rem; }
.hero h1 em { font-style: italic; color: var(--sage); }

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-style: italic;
  color: var(--bark-light);
  margin: 1.5rem 0 2.5rem;
}

.hero-desc {
  font-size: 1rem;
  color: var(--bark-light);
  max-width: 480px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-floating {
  position: absolute;
  font-size: 2rem;
  opacity: 0.15;
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
}

.hero-floating:nth-child(1)  { top: 15%; left: 8%;  animation-delay: 0s; }
.hero-floating:nth-child(2)  { top: 25%; right: 10%; animation-delay: 1s; }
.hero-floating:nth-child(3)  { top: 65%; left: 5%;  animation-delay: 2s; }
.hero-floating:nth-child(4)  { bottom: 20%; right: 8%; animation-delay: 0.5s; }
.hero-floating:nth-child(5)  { top: 45%; left: 3%;  animation-delay: 3s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-15px) rotate(5deg); }
}

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--bark-pale);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bob 2s ease-in-out infinite;
}

.scroll-hint::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--bark-pale), transparent);
}

@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── PILLARS ── */
.pillars {
  padding: 6rem 0;
  background: var(--sage-pale);
  border-top: 1px solid var(--sage-light);
  border-bottom: 1px solid var(--sage-light);
}

.pillars-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 4rem;
}

.pillars-header p { color: var(--bark-light); font-size: 1rem; line-height: 1.8; }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.pillar-card {
  background: var(--white);
  border: 1px solid var(--sage-light);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(92,74,53,0.08);
}

.pillar-icon { font-size: 1.8rem; margin-bottom: 1rem; display: block; }
.pillar-card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; color: var(--bark); margin-bottom: 0.5rem; }
.pillar-card p { font-size: 0.9rem; color: var(--bark-light); line-height: 1.7; margin: 0; }

/* ── STORY ── */
.story { padding: 7rem 0; }

.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

@media (max-width: 768px) {
  .story-layout { grid-template-columns: 1fr; gap: 3rem; }
}

.story-text p { color: var(--bark-light); margin-bottom: 1.25rem; line-height: 1.9; font-size: 0.95rem; }

.story-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.stat { border-left: 2px solid var(--gold-light); padding-left: 1.25rem; }
.stat-num { font-family: var(--font-display); font-size: 3rem; font-weight: 300; color: var(--bark); line-height: 1; display: block; }
.stat-label { font-size: 0.75rem; letter-spacing: 0.1em; color: var(--bark-light); text-transform: uppercase; }

.story-card {
  background: var(--white);
  border: 1px solid var(--blush-light);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.story-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,144,122,0.12) 0%, transparent 70%);
}

.story-card-emblem { font-family: var(--font-display); font-size: 4rem; font-weight: 300; color: var(--blush); display: block; line-height: 1; margin-bottom: 0.5rem; }
.story-card p { font-family: var(--font-display); font-size: 1.1rem; font-style: italic; color: var(--bark-light); line-height: 1.6; }

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 6rem 0;
  background: var(--blush-pale);
  border-top: 1px solid var(--blush-light);
  border-bottom: 1px solid var(--blush-light);
}

.testimonials-header { text-align: center; max-width: 500px; margin: 0 auto 4rem; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--blush-light);
  border-radius: 16px;
  padding: 2rem;
}

.stars { color: var(--gold); font-size: 0.8rem; letter-spacing: 0.1em; margin-bottom: 1rem; display: block; }
.testimonial-card blockquote { font-family: var(--font-display); font-size: 1.05rem; font-style: italic; color: var(--bark); line-height: 1.7; margin-bottom: 1.5rem; border: none; padding: 0; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--sage-light); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1rem; color: var(--sage); flex-shrink: 0; }
.author-name { font-size: 0.85rem; font-weight: 500; color: var(--bark); display: block; }
.author-course { font-size: 0.75rem; color: var(--bark-light); }

/* ── CTA ── */
.cta-section { padding: 8rem 0; text-align: center; }
.cta-section h2 { margin-bottom: 1.25rem; }
.cta-section p { color: var(--bark-light); max-width: 480px; margin: 0 auto 2.5rem; font-size: 1rem; line-height: 1.8; }

/* ── STANDARD PAGE ── */
.page-hero {
  padding: 7rem 2rem 4rem;
  text-align: center;
  background: var(--sage-pale);
  border-bottom: 1px solid var(--sage-light);
}

.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero p { color: var(--bark-light); font-size: 1.05rem; max-width: 520px; margin: 0 auto; }

.page-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.page-content h2 { margin-top: 2rem; }
.page-content h3 { margin-top: 1.5rem; }

/* ── BLOG ── */
.blog-hero {
  padding: 7rem 2rem 4rem;
  text-align: center;
  background: var(--sage-pale);
  border-bottom: 1px solid var(--sage-light);
}

.blog-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.post-card {
  background: var(--white);
  border: 1px solid var(--sage-light);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(92,74,53,0.08);
}

.post-card-thumb img { width: 100%; height: 200px; object-fit: cover; }
.post-card-thumb-placeholder { width: 100%; height: 200px; background: var(--sage-pale); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.post-card-body { padding: 1.5rem; }
.post-card-meta { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.post-card-body h2 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.post-card-body h2 a { color: var(--bark); text-decoration: none; }
.post-card-body h2 a:hover { color: var(--sage); }
.post-card-body p { font-size: 0.9rem; color: var(--bark-light); margin-bottom: 1rem; line-height: 1.7; }
.post-card-link { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--sage); text-decoration: none; }
.post-card-link:hover { color: var(--bark); }

/* ── SINGLE POST ── */
.single-post-hero {
  padding: 7rem 2rem 4rem;
  text-align: center;
  background: var(--sage-pale);
  border-bottom: 1px solid var(--sage-light);
  max-width: 100%;
}

.single-post-hero .post-meta { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.single-post-hero h1 { max-width: 700px; margin: 0 auto 1rem; }

.single-post-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 2rem;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--bark-light);
}

.single-post-content h2,
.single-post-content h3 { color: var(--bark); margin-top: 2rem; margin-bottom: 0.75rem; }

.single-post-thumb { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
.single-post-thumb img { border-radius: 16px; width: 100%; max-height: 480px; object-fit: cover; }

/* ── CONTACT ── */
.contact-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 2rem 2rem 6rem;
}

.contact-form-group { margin-bottom: 1.5rem; }
.contact-form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bark-light);
  margin-bottom: 0.5rem;
}

.contact-form-group input,
.contact-form-group textarea,
.contact-form-group select {
  width: 100%;
  padding: 0.85rem 1.25rem;
  border: 1px solid var(--bark-pale);
  border-radius: 12px;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--bark);
  transition: border-color 0.2s;
  outline: none;
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
  border-color: var(--sage);
}

.contact-form-group textarea { min-height: 160px; resize: vertical; }

/* WordPress default form styles */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
  width: 100%;
  padding: 0.85rem 1.25rem;
  border: 1px solid var(--bark-pale);
  border-radius: 12px;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--bark);
  margin-bottom: 1rem;
  outline: none;
  transition: border-color 0.2s;
}

.wpcf7-form input:focus, .wpcf7-form textarea:focus { border-color: var(--sage); }
.wpcf7-form input[type="submit"] { margin-top: 0.5rem; }

/* ── PAGINATION ── */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem;
}

.pagination a, .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--bark-pale);
  font-size: 0.85rem;
  color: var(--bark-light);
  text-decoration: none;
  transition: all 0.2s;
}

.pagination a:hover, .pagination .current {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}

/* ── NO POSTS / 404 ── */
.not-found-wrap, .no-posts-wrap {
  text-align: center;
  padding: 8rem 2rem;
}

.not-found-wrap .fairy-emoji { font-size: 4rem; display: block; margin-bottom: 1.5rem; }
.not-found-wrap h1 { margin-bottom: 1rem; }
.not-found-wrap p { color: var(--bark-light); margin-bottom: 2rem; }

/* ── FOOTER ── */
#site-footer {
  position: relative;
  z-index: 1;
  background: var(--bark);
  color: var(--bark-pale);
  padding: 3rem 2rem;
  text-align: center;
}

.footer-inner { max-width: var(--max-width); margin: 0 auto; }

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 0.25rem;
  display: block;
}

.footer-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bark-pale);
  margin-bottom: 2rem;
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
  list-style: none;
  padding: 0;
}

.footer-nav a {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bark-pale);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--cream); }

.footer-copy { font-size: 0.75rem; color: rgba(196,184,170,0.5); }

/* ── WIDGETS ── */
.widget { margin-bottom: 2rem; }
.widget-title { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 1rem; color: var(--bark); }
.widget ul { list-style: none; padding: 0; }
.widget ul li { padding: 0.4rem 0; border-bottom: 1px solid var(--sage-light); font-size: 0.9rem; }
.widget ul li a { color: var(--bark-light); }
.widget ul li a:hover { color: var(--sage); }

/* ── UTILITY ── */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 2rem; }

@media (max-width: 600px) {
  .hero-buttons { flex-direction: column; align-items: center; }
  .story-stats { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}

/* ── SHOP PAGE ── */
.shop-section { padding: 5rem 0; }
.shop-section--pale { background: var(--sage-pale); border-top: 1px solid var(--sage-light); border-bottom: 1px solid var(--sage-light); }
.etsy-feature { display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center; background: var(--white); border: 1px solid var(--blush-light); border-radius: 20px; padding: 3rem; position: relative; overflow: hidden; }
.etsy-feature::before { content: ''; position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, rgba(212,144,122,0.10) 0%, transparent 70%); pointer-events: none; }
.etsy-badge { display: inline-block; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.etsy-feature h2 { margin-bottom: 1rem; }
.etsy-feature p { color: var(--bark-light); line-height: 1.8; margin-bottom: 1.75rem; max-width: 520px; }
.etsy-decoration { display: flex; flex-direction: column; gap: 1rem; font-size: 2rem; opacity: 0.3; }
.shop-heading { text-align: center; max-width: 600px; margin: 0 auto 3rem; }
.shop-heading-desc { color: var(--bark-light); font-size: 0.85rem; line-height: 1.7; margin-top: 0.5rem; font-style: italic; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.product-card { background: var(--white); border: 1px solid var(--sage-light); border-radius: 16px; overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(92,74,53,0.08); }
.product-card-emoji { background: var(--sage-pale); padding: 2rem; text-align: center; font-size: 3rem; border-bottom: 1px solid var(--sage-light); }
.product-card-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.product-category { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; display: block; }
.product-card-body h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; color: var(--bark); margin-bottom: 0.75rem; }
.product-desc { font-size: 0.9rem; color: var(--bark-light); line-height: 1.7; margin-bottom: 1.5rem; flex: 1; }
.product-btn { display: inline-block; background: var(--sage); color: var(--white); padding: 0.65rem 1.5rem; border-radius: 50px; font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; transition: background 0.2s; align-self: flex-start; }
.product-btn:hover { background: var(--bark); color: var(--white); }
@media (max-width: 768px) {
  .etsy-feature { grid-template-columns: 1fr; padding: 2rem; }
  .etsy-decoration { flex-direction: row; justify-content: center; }
  .product-grid { grid-template-columns: 1fr; }
}

/* ── SHOP FILTER ── */
.shop-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.shop-filter-btn {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  border: 1px solid var(--bark-pale);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bark-light);
  text-decoration: none;
  transition: all 0.2s;
  background: var(--white);
}

.shop-filter-btn:hover,
.shop-filter-btn.is-active {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}

/* ── ETSY BANNER ── */
@keyframes float-house {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%       { transform: translateY(-12px) rotate(2deg); }
}

.etsy-banner {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--sage-light);
  border-radius: 20px;
  overflow: hidden;
}

.etsy-banner-icon-col {
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 2.5rem;
  flex-shrink: 0;
}

.etsy-banner-house {
  font-size: 4rem;
  display: block;
  animation: float-house 4s ease-in-out infinite;
}

.etsy-banner-body {
  background: var(--sage-pale);
  padding: 2rem 2.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.etsy-banner-body h2 { margin-bottom: 0.75rem; }
.etsy-banner-body h2 em { font-style: italic; color: var(--sage); }
.etsy-banner-body p { color: var(--bark-light); line-height: 1.8; margin-bottom: 1.5rem; max-width: 520px; }

@media (max-width: 600px) {
  .etsy-banner { flex-direction: column; }
  .etsy-banner-icon-col { padding: 1.5rem; }
}

/* ── FONT OVERRIDES ── */
body {
  font-family: var(--font-body);
  font-weight: 300;
}

p, li, td, th {
  font-family: var(--font-accent);
  font-weight: 300;
  font-size: 1rem;
}

.hero-desc,
.pillars-header p,
.story-text p,
.testimonials-header p,
.cta-section p,
.page-content p,
.single-post-content p,
.product-desc,
.shop-heading-desc,
.etsy-banner-body p,
.post-card-body p {
  font-family: var(--font-accent);
  font-weight: 300;
}

.hero-tagline,
blockquote,
.testimonial-card blockquote,
.story-card p {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 300;
}

nav a,
.btn-primary,
.btn-secondary,
.section-label,
.hero-subtitle,
.product-btn,
.shop-filter-btn,
.post-card-link,
.footer-nav a,
.footer-tagline,
.footer-copy,
.post-card-meta,
.product-category,
.etsy-badge,
.stat-label,
.author-course,
.scroll-hint {
  font-family: var(--font-body);
}

.site-branding a,
.site-branding .site-description {
  font-family: var(--font-display);
}

h1, h2, h3, h4, h5, h6,
.pillar-card h3,
.product-card-body h3,
.footer-logo {
  font-family: var(--font-display);
  letter-spacing: 0.03em;
}

h1 { font-size: clamp(1.8rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.4rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.2rem; }

/* ── FINAL FONT ASSIGNMENTS ── */
h1, h2, h3, h4, h5, h6,
.logo, .site-branding a,
.footer-logo,
.pillar-card h3,
.product-card-body h3,
.story-card-emblem {
  font-family: 'Cinzel Decorative', serif !important;
}

#primary-navigation ul li a,
.menu-toggle,
.nav-cta,
.btn-primary,
.btn-secondary,
.product-btn,
.shop-filter-btn,
.footer-nav a {
  font-family: 'Cinzel Decorative', serif !important;
  font-size: 0.65rem !important;
  letter-spacing: 0.15em !important;
}

p, li, blockquote, .hero-desc, .hero-tagline,
.pillars-header p, .story-text p,
.testimonial-card blockquote, .story-card p,
.cta-section p, .page-content p,
.single-post-content p, .product-desc,
.shop-heading-desc, .etsy-banner-body p,
.post-card-body p, .etsy-feature p {
  font-family: 'Cormorant Garamond', serif !important;
  font-weight: 300 !important;
}

.hero-tagline, blockquote, .testimonial-card blockquote, .story-card p {
  font-style: italic !important;
}

.section-label, .hero-subtitle, .post-card-meta,
.product-category, .etsy-badge, .stat-label,
.author-name, .author-course, .scroll-hint,
.footer-tagline, .footer-copy, .stars,
.site-branding .site-description {
  font-family: 'Lato', sans-serif !important;
}

/* ── H2 INSIDE CONTENT AREAS — Cormorant Garamond ── */
.page-content h2,
.single-post-content h2,
.entry-content h2 {
  font-family: 'Cormorant Garamond', serif !important;
  font-weight: 600 !important;
  font-style: italic;
  letter-spacing: 0.01em !important;
}

/* ── COMMENTS ── */
.comments-wrap {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--sage-light);
}

.comments-list-header { margin-bottom: 2.5rem; }
.comments-list-header h2 { margin-bottom: 0; }

.comments-list {
  list-style: none;
  padding: 0;
  margin: 0 0 3rem;
}

.comment-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--sage-light);
}

.comment-item:last-child { border-bottom: none; }

.comment-author-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.comment-avatar img {
  border-radius: 50%;
  width: 48px;
  height: 48px;
  object-fit: cover;
}

.comment-meta { flex: 1; }

.comment-author-name {
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.75rem;
  color: var(--bark);
  display: block;
  margin-bottom: 2px;
}

.comment-date {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  color: var(--bark-light);
  letter-spacing: 0.1em;
}

.comment-reply a {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  text-decoration: none;
}

.comment-reply a:hover { color: var(--bark); }

.comment-content {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--bark-light);
  line-height: 1.8;
}

.comment-content p { margin-bottom: 0.75rem; }
.comment-awaiting { font-style: italic; color: var(--gold); font-size: 0.85rem; }

/* Children / replies */
.children {
  list-style: none;
  padding-left: 2rem;
  margin-top: 1rem;
  border-left: 2px solid var(--sage-light);
}

/* Comment form */
.comment-form-wrap {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--sage-light);
}

.comment-form-wrap h2 { margin-bottom: 2rem; }
.comment-form-wrap h2 em { font-style: italic; color: var(--sage); }

.comment-form-group { margin-bottom: 1.25rem; }

.comment-form-group label {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bark-light);
  margin-bottom: 0.5rem;
}

.comment-form-group input[type="text"],
.comment-form-group input[type="email"],
.comment-form-group textarea {
  width: 100%;
  padding: 0.85rem 1.25rem;
  border: 1px solid var(--bark-pale);
  border-radius: 12px;
  background: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--bark);
  transition: border-color 0.2s;
  outline: none;
}

.comment-form-group input:focus,
.comment-form-group textarea:focus { border-color: var(--sage); }

.comment-form-group textarea { min-height: 140px; resize: vertical; }
.comment-form-group .description { font-size: 0.75rem; color: var(--bark-pale); margin-top: 4px; font-family: 'Lato', sans-serif; }

.required { color: var(--blush); }

.comments-closed {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--bark-light);
  text-align: center;
  padding: 2rem 0;
}

#submit.btn-primary {
  margin-top: 0.5rem;
  cursor: pointer;
}
