/* ============================================================
   TEMPLATE C (MINIMAL) STYLES
   v1.1.0 - Appended to existing theme.css
   ============================================================
   Template C design principles:
   - Text-forward hero (no full-width background)
   - Long-form scroll (serif or highly-readable sans at large size)
   - Prominent author authority blocks
   - Inline FAQ H2s (not accordion)
   - Minimal color palette - emphasis on whitespace and typography
   ============================================================ */

/* --- TEMPLATE C: MINIMAL HERO --- */
.wf-hero-minimal {
  padding: 72px 20px 56px;
  background: #ffffff;
  border-bottom: 1px solid #e8eaed;
  color: #1a1d21;
}

.wf-hero-minimal--service,
.wf-hero-minimal--default,
.wf-hero-minimal--areas,
.wf-hero-minimal--quote {
  padding: 56px 20px 40px;
}

.wf-hero-minimal__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #2d6a4f;
  margin-bottom: 20px;
  padding: 6px 14px;
  background: #f0f7f4;
  border-radius: 3px;
}

.wf-hero-minimal__h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 20px;
  color: #1a1d21;
  letter-spacing: -0.02em;
}

.wf-hero-minimal__subtitle {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.5;
  color: #4a5058;
  margin: 0 0 32px;
  max-width: 640px;
}

/* --- AUTHOR AUTHORITY BLOCK --- */
.wf-author-block {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: #f8f9fa;
  border-left: 3px solid #2d6a4f;
  border-radius: 4px;
  margin: 32px 0;
}

.wf-author-block--hero {
  margin: 32px 0 36px;
}

.wf-author-block--inline {
  margin: 40px 0;
  padding: 24px;
  background: #ffffff;
  border: 1px solid #e8eaed;
  border-left: 3px solid #2d6a4f;
}

.wf-author-block--full {
  padding: 32px;
  gap: 28px;
  align-items: flex-start;
}

.wf-author-block__photo {
  flex-shrink: 0;
}

.wf-author-block__photo img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.wf-author-block--full .wf-author-block__photo img {
  width: 140px;
  height: 140px;
}

.wf-author-block__body {
  flex: 1;
  min-width: 0;
}

.wf-author-block__name {
  font-size: 17px;
  font-weight: 700;
  color: #1a1d21;
  margin: 0 0 4px;
}

.wf-author-block--full .wf-author-block__name {
  font-size: 22px;
  margin-bottom: 6px;
}

.wf-author-block__credential {
  font-size: 14px;
  color: #2d6a4f;
  font-weight: 600;
  margin: 0 0 6px;
}

.wf-author-block--full .wf-author-block__credential {
  font-size: 16px;
  margin-bottom: 8px;
}

.wf-author-block__meta {
  font-size: 13px;
  color: #6c757d;
}

.wf-author-block__sep {
  margin: 0 6px;
  color: #adb5bd;
}

.wf-author-block__bio {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: #4a5058;
}

/* --- LONG-FORM CONTENT TYPOGRAPHY --- */
.wf-section--longform {
  padding: 48px 20px 56px;
}

.wf-longform {
  font-size: 17px;
  line-height: 1.7;
  color: #2a2e33;
}

.wf-longform p {
  margin: 0 0 1.25em;
}

.wf-longform h2 {
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 700;
  line-height: 1.25;
  margin: 2em 0 0.6em;
  color: #1a1d21;
  letter-spacing: -0.01em;
}

.wf-longform h3 {
  font-size: clamp(18px, 2vw, 21px);
  font-weight: 700;
  line-height: 1.3;
  margin: 1.6em 0 0.5em;
  color: #1a1d21;
}

.wf-longform ul,
.wf-longform ol {
  margin: 0 0 1.25em;
  padding-left: 1.5em;
}

.wf-longform li {
  margin-bottom: 0.5em;
}

.wf-longform a {
  color: #2d6a4f;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}

.wf-longform a:hover {
  text-decoration-thickness: 2px;
}

.wf-longform blockquote {
  border-left: 3px solid #2d6a4f;
  padding: 8px 0 8px 20px;
  margin: 1.5em 0;
  font-style: italic;
  color: #4a5058;
}

/* --- PULLQUOTE --- */
.wf-section--pullquote {
  padding: 40px 20px 48px;
  background: #f8f9fa;
  border-top: 1px solid #e8eaed;
  border-bottom: 1px solid #e8eaed;
}

.wf-pullquote {
  margin: 0;
  text-align: center;
}

.wf-pullquote__quote {
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.5;
  font-weight: 500;
  color: #1a1d21;
  margin: 0 0 16px;
  font-style: italic;
}

.wf-pullquote__cite {
  display: block;
  font-size: 14px;
  color: #6c757d;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* --- INLINE FAQ H2s --- */
.wf-faq-inline {
  padding: 48px 20px 56px;
  background: #ffffff;
  border-top: 1px solid #e8eaed;
}

.wf-faq-inline__heading {
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 700;
  margin: 0 0 12px;
  color: #1a1d21;
}

.wf-faq-inline__intro {
  font-size: 16px;
  color: #4a5058;
  margin: 0 0 40px;
  max-width: 640px;
}

.wf-faq-inline__item {
  padding: 24px 0;
  border-top: 1px solid #e8eaed;
}

.wf-faq-inline__item:last-child {
  border-bottom: 1px solid #e8eaed;
}

.wf-faq-inline__question {
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 12px;
  color: #1a1d21;
  position: relative;
  padding-left: 32px;
}

.wf-faq-inline__anchor {
  position: absolute;
  left: 0;
  top: 2px;
  color: #adb5bd;
  text-decoration: none;
  font-weight: 400;
  font-size: 18px;
  opacity: 0;
  transition: opacity 0.15s ease;
}

.wf-faq-inline__item:hover .wf-faq-inline__anchor,
.wf-faq-inline__item:target .wf-faq-inline__anchor {
  opacity: 1;
}

.wf-faq-inline__item:target {
  background: #fff9e6;
  padding-left: 16px;
  padding-right: 16px;
  margin-left: -16px;
  margin-right: -16px;
}

.wf-faq-inline__answer {
  font-size: 16px;
  line-height: 1.65;
  color: #3a3e43;
}

.wf-faq-inline__answer p:last-child {
  margin-bottom: 0;
}

/* --- TESTIMONIALS STACK (C variant) --- */
.wf-section--testimonials-stack {
  padding: 48px 20px;
  background: #ffffff;
}

.wf-section--testimonials-stack h2 {
  font-size: clamp(22px, 2.6vw, 28px);
  margin: 0 0 28px;
  color: #1a1d21;
}

.wf-stacked-testimonial {
  margin: 0 0 28px;
  padding: 20px 0 20px 24px;
  border-left: 3px solid #e8eaed;
}

.wf-stacked-testimonial p {
  font-size: 16px;
  line-height: 1.6;
  color: #2a2e33;
  margin: 0 0 10px;
  font-style: italic;
}

.wf-stacked-testimonial cite {
  font-size: 13px;
  color: #6c757d;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* --- BOTTOM CTA (MINIMAL) --- */
.wf-section--cta-minimal {
  padding: 56px 20px 64px;
  background: #f8f9fa;
  border-top: 1px solid #e8eaed;
}

.wf-section--cta-minimal h2 {
  font-size: clamp(22px, 2.6vw, 28px);
  margin: 0 0 12px;
  color: #1a1d21;
}

.wf-section--cta-minimal p {
  font-size: 17px;
  color: #4a5058;
  margin: 0 0 28px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.wf-btn-group--left {
  justify-content: flex-start;
  gap: 12px;
}

/* --- SUBURBS LIST (C variant) --- */
.wf-section--suburbs-list {
  padding: 40px 20px 48px;
  background: #f8f9fa;
  border-top: 1px solid #e8eaed;
}

.wf-suburbs-inline {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.wf-suburbs-inline li {
  display: inline-block;
  padding: 8px 16px;
  background: #ffffff;
  border: 1px solid #e8eaed;
  border-radius: 4px;
  font-size: 15px;
  color: #2a2e33;
  font-weight: 500;
}

.wf-suburbs-note {
  font-size: 15px;
  color: #4a5058;
  margin: 20px 0 0;
}

/* --- AUTHOR INLINE SECTION --- */
.wf-section--author-inline {
  padding: 24px 20px;
}

.wf-section--author-full {
  padding: 48px 20px;
  background: #f8f9fa;
  border-top: 1px solid #e8eaed;
  border-bottom: 1px solid #e8eaed;
}

/* --- DISCLOSURE STATEMENT --- */
.wf-disclosure-statement {
  padding: 20px 24px;
  background: #fff9e6;
  border-left: 3px solid #d4a017;
  margin: 0 0 32px;
  font-size: 16px;
  line-height: 1.6;
  color: #2a2e33;
}

/* --- MOBILE ADJUSTMENTS --- */
@media (max-width: 640px) {
  .wf-hero-minimal {
    padding: 48px 20px 36px;
  }
  .wf-author-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .wf-author-block--full .wf-author-block__photo img {
    width: 100px;
    height: 100px;
  }
  .wf-suburbs-inline {
    gap: 6px 8px;
  }
  .wf-suburbs-inline li {
    padding: 6px 12px;
    font-size: 14px;
  }
}
