/* ============================================================
   PLANTIFUL HEALTH — Global Stylesheet
   Colours: Dark green #3a6b2a | Mid green #5a9a3a | Light green #7bc142
   Text: #2d2d2d | Light text: #555 | White: #fff
   Fonts: Cormorant Garamond (headings) | Lato (body)
   ============================================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Lato', sans-serif;
  color: #2d2d2d;
  background: #fff;
  line-height: 1.7;
}

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.25;
  color: #2d2d2d;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 3vw, 1.9rem); font-weight: 500; }
h4 { font-size: 1.2rem; font-weight: 600; font-family: 'Lato', sans-serif; letter-spacing: 0.05em; text-transform: uppercase; }
p { margin-bottom: 1rem; color: #444; }
p:last-child { margin-bottom: 0; }

.italic { font-style: italic; }
.serif { font-family: 'Cormorant Garamond', Georgia, serif; }

/* ---- Colours ---- */
:root {
  --green-dark:   #3a6b2a;
  --green-mid:    #5a9a3a;
  --green-light:  #7bc142;
  --green-pale:   #f0f7eb;
  --green-bg:     #4a7c3f;
  --white:        #ffffff;
  --off-white:    #fafaf8;
  --text-dark:    #2d2d2d;
  --text-mid:     #555555;
  --text-light:   #777777;
  --border:       #e0e0e0;
}

/* ---- Layout Utilities ---- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section--sm { padding: 50px 0; }
.section--lg { padding: 110px 0; }

.section--green {
  background: var(--green-bg);
  color: var(--white);
}
.section--green h1,
.section--green h2,
.section--green h3,
.section--green h4 { color: var(--white); }
.section--green p { color: rgba(255,255,255,0.88); }

.section--dark-green {
  background: var(--green-dark);
  color: var(--white);
}
.section--dark-green h1,
.section--dark-green h2,
.section--dark-green h3 { color: var(--white); }
.section--dark-green p { color: rgba(255,255,255,0.85); }

.section--pale { background: var(--green-pale); }
.section--off-white { background: var(--off-white); }

.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-green { color: var(--green-mid); }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  border: 2px solid transparent;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }

.btn--primary {
  background: var(--green-light);
  color: var(--white);
  border-color: var(--green-light);
}
.btn--primary:hover { background: var(--green-mid); border-color: var(--green-mid); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline:hover { background: var(--white); color: var(--green-dark); }

.btn--outline-green {
  background: transparent;
  color: var(--green-mid);
  border-color: var(--green-mid);
}
.btn--outline-green:hover { background: var(--green-mid); color: var(--white); }

.btn--white {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
}
.btn--white:hover { background: var(--green-pale); }

/* ---- Section Headings ---- */
.section-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 0.75rem;
  display: block;
}

.section-label--white { color: rgba(255,255,255,0.75); }

.section-heading { margin-bottom: 1.25rem; }
.section-subheading {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.section-subheading--white { color: rgba(255,255,255,0.85); }

/* ---- Divider ---- */
.divider {
  width: 60px;
  height: 3px;
  background: var(--green-light);
  margin: 1rem 0 1.5rem;
}
.divider--center { margin: 1rem auto 1.5rem; }
.divider--white { background: rgba(255,255,255,0.5); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo img {
  height: 56px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-dark);
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-light);
  transition: width 0.25s ease;
}

.nav__links a:hover { color: var(--green-mid); }
.nav__links a:hover::after { width: 100%; }
.nav__links a.active { color: var(--green-mid); }
.nav__links a.active::after { width: 100%; }

.nav__cta { margin-left: 1rem; }

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-dark);
  transition: all 0.3s;
}

/* Mobile nav */
.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  padding: 1rem 24px 1.5rem;
  border-top: 1px solid var(--border);
  gap: 0.25rem;
}
.nav__mobile a {
  padding: 0.65rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile .btn { margin-top: 0.75rem; width: 100%; text-align: center; }

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__mobile.open { display: flex; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.85);
  padding: 60px 0 30px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__logo img { height: 60px; width: auto; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer__tagline { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.6; }

.footer__heading {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer__links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--white); }

.footer__contact p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.4rem;
}
.footer__contact a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.footer__contact a:hover { color: var(--white); }

.footer__social { display: flex; gap: 1rem; margin-top: 1rem; }
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  transition: all 0.2s;
}
.footer__social a:hover { background: var(--white); color: var(--green-dark); border-color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer__bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin: 0; }
.footer__bottom-links { display: flex; gap: 1.5rem; }
.footer__bottom-links a { font-size: 0.82rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer__bottom-links a:hover { color: var(--white); }

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #f5f0eb;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255,255,255,0.92) 45%, rgba(255,255,255,0.2) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 80px 24px;
}

.hero__eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 1rem;
}

.hero__title { margin-bottom: 0.5rem; }
.hero__title em { font-style: italic; color: var(--green-mid); }

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-mid);
  margin: 1.25rem 0 0.75rem;
  font-weight: 400;
}

.hero__list {
  margin: 1rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.hero__list li {
  font-size: 0.95rem;
  color: var(--text-mid);
  padding-left: 1.5rem;
  position: relative;
}

.hero__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-light);
  font-weight: 700;
}

.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

@media (max-width: 700px) {
  .hero { min-height: 70vh; }
  .hero__overlay { background: linear-gradient(to bottom, rgba(255,255,255,0.88) 60%, rgba(255,255,255,0.5) 100%); }
  .hero__content { max-width: 100%; padding: 60px 24px 40px; }
}

/* ============================================================
   INTRO SECTION (two-col text)
   ============================================================ */
.intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-split--reverse .intro-split__image { order: -1; }

.intro-split__image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.intro-split__image img { width: 100%; height: 480px; object-fit: cover; }

@media (max-width: 800px) {
  .intro-split { grid-template-columns: 1fr; gap: 2rem; }
  .intro-split--reverse .intro-split__image { order: 0; }
  .intro-split__image img { height: 320px; }
}

/* ============================================================
   SERVICE PILLARS (4-col icon grid)
   ============================================================ */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.pillar {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
}

.pillar__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}
.pillar:hover .pillar__bg { transform: scale(1.05); }

.pillar__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42,80,28,0.88) 0%, rgba(42,80,28,0.3) 60%, transparent 100%);
}

.pillar__content {
  position: relative;
  z-index: 2;
  padding: 2rem 1.5rem;
  color: var(--white);
}

.pillar__title {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.pillar__text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  margin: 0;
}

.pillar__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  color: var(--white);
  margin-top: 1rem;
  font-size: 1.1rem;
  transition: all 0.2s;
}
.pillar:hover .pillar__arrow { background: var(--white); color: var(--green-dark); border-color: var(--white); }

@media (max-width: 900px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .pillar { min-height: 280px; }
}
@media (max-width: 560px) {
  .pillars { grid-template-columns: 1fr; }
}

/* ============================================================
   SERVICES GRID (6-tile icon grid)
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--green-bg);
}

.service-tile {
  background: var(--green-bg);
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
  transition: background 0.2s;
  cursor: default;
}
.service-tile:hover { background: var(--green-dark); }

.service-tile__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.25rem;
  border: 3px solid rgba(255,255,255,0.3);
}
.service-tile__icon img { width: 100%; height: 100%; object-fit: cover; }

.service-tile__title {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.service-tile__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  color: var(--white);
  font-size: 1rem;
  margin-top: 0.5rem;
  transition: all 0.2s;
}
.service-tile:hover .service-tile__arrow { background: var(--white); color: var(--green-dark); }

@media (max-width: 700px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ABOUT PREVIEW (homepage)
   ============================================================ */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-preview__image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(0,0,0,0.14);
}
.about-preview__image img { width: 100%; height: 560px; object-fit: cover; object-position: top; }

@media (max-width: 800px) {
  .about-preview { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-preview__image img { height: 380px; }
}

/* ============================================================
   PRICING CARDS
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}

.pricing-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 16px 50px rgba(0,0,0,0.15); }

.pricing-card--featured {
  border: 3px solid var(--green-light);
  transform: scale(1.03);
}
.pricing-card--featured:hover { transform: scale(1.03) translateY(-4px); }

.pricing-card__header {
  background: var(--green-bg);
  padding: 2rem 1.75rem 1.5rem;
  color: var(--white);
}
.pricing-card--featured .pricing-card__header { background: var(--green-dark); }

.pricing-card__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.5rem;
}

.pricing-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.pricing-card__price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 0.75rem;
}
.pricing-card__price span { font-size: 1rem; font-weight: 400; opacity: 0.8; }

.pricing-card__body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
  flex: 1;
}

.pricing-card__features li {
  font-size: 0.9rem;
  color: var(--text-mid);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}
.pricing-card__features li::before {
  content: '💚';
  position: absolute;
  left: 0;
  font-size: 0.75rem;
  top: 2px;
}

.pricing-card .btn { width: 100%; text-align: center; }

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-4px); }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border-left: 4px solid var(--green-light);
}

.testimonial-card__quote {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.testimonial-card__author {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 700px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   BLOG GRID
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 35px rgba(0,0,0,0.12); }

.blog-card__image {
  height: 200px;
  overflow: hidden;
}
.blog-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.blog-card:hover .blog-card__image img { transform: scale(1.04); }

.blog-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }

.blog-card__category {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 0.5rem;
}

.blog-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.blog-card__excerpt {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}

.blog-card__meta {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: auto;
}

.blog-card__read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-mid);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.75rem;
  transition: gap 0.2s;
}
.blog-card:hover .blog-card__read-more { gap: 0.7rem; }

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-section { max-width: 820px; margin: 0 auto; }

.faq-group { margin-bottom: 2.5rem; }
.faq-group__title {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--green-pale);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: color 0.2s;
}
.faq-item__question:hover { color: var(--green-mid); }

.faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--green-mid);
  transition: transform 0.3s, background 0.2s;
}

.faq-item.open .faq-item__icon {
  transform: rotate(45deg);
  background: var(--green-light);
  color: var(--white);
  border-color: var(--green-light);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
}

.faq-item.open .faq-item__answer { max-height: 600px; }

.faq-item__answer-inner {
  padding: 0 0 1.25rem;
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-info__item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-info__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-mid);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}

.contact-info__value { font-size: 0.95rem; color: var(--text-dark); }
.contact-info__value a { color: var(--green-mid); }
.contact-info__value a:hover { text-decoration: underline; }

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green-light);
  box-shadow: 0 0 0 3px rgba(123,193,66,0.15);
}

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

@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--green-bg);
  padding: 80px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/karen-hero.jpg') center/cover no-repeat;
  opacity: 0.12;
}

.page-hero__content { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ============================================================
   FREEBIES / CARDS
   ============================================================ */
.freebie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.freebie-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0,0,0,0.09);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.freebie-card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(0,0,0,0.14); }

.freebie-card__image { height: 220px; overflow: hidden; }
.freebie-card__image img { width: 100%; height: 100%; object-fit: cover; }

.freebie-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.freebie-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.freebie-card__desc { font-size: 0.9rem; color: var(--text-mid); flex: 1; margin-bottom: 1.25rem; }
.freebie-card .btn { margin-top: auto; text-align: center; }

@media (max-width: 900px) { .freebie-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .freebie-grid { grid-template-columns: 1fr; } }

/* ============================================================
   BLOG POST PAGE
   ============================================================ */
.blog-post { max-width: 780px; margin: 0 auto; padding: 60px 24px; }
.blog-post__header { margin-bottom: 2.5rem; }
.blog-post__category {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 0.75rem;
}
.blog-post__title { margin-bottom: 1rem; }
.blog-post__meta { font-size: 0.85rem; color: var(--text-light); }
.blog-post__featured-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 2.5rem;
}
.blog-post__content h2 { margin: 2rem 0 0.75rem; }
.blog-post__content h3 { margin: 1.5rem 0 0.5rem; }
.blog-post__content p { margin-bottom: 1.25rem; font-size: 1.02rem; line-height: 1.8; }
.blog-post__content ul, .blog-post__content ol {
  margin: 0 0 1.25rem 1.5rem;
  list-style: disc;
}
.blog-post__content li { margin-bottom: 0.4rem; font-size: 1rem; color: var(--text-mid); }
.blog-post__content strong { color: var(--text-dark); }
.blog-post__back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-mid);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

/* ============================================================
   UTILITY: CHECKLIST
   ============================================================ */
.checklist { display: flex; flex-direction: column; gap: 0.6rem; margin: 1rem 0; }
.checklist li {
  padding-left: 1.75rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-mid);
}
.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-light);
  font-weight: 700;
  font-size: 1rem;
}

/* ============================================================
   RESPONSIVE HELPERS
   ============================================================ */
@media (max-width: 560px) {
  .section { padding: 55px 0; }
  .section--lg { padding: 70px 0; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.7rem; }
}
