/* Static content pages — About, FAQ */
.content-page-main {
  padding-bottom: 0;
}

.content-hero {
  background: linear-gradient(165deg, #fffdf9 0%, var(--cream) 45%, var(--lavender-light) 100%);
  padding: 48px 24px 56px;
  text-align: center;
  border-bottom: 1px solid var(--border-soft);
}

.content-hero-inner {
  max-width: 40em;
  margin: 0 auto;
}

.content-hero .section-kicker {
  margin-bottom: 12px;
}

.content-hero h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 16px;
}

.content-hero-lede {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.content-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 24px 72px;
}

.content-body h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--charcoal);
  margin: 2.5rem 0 12px;
}

.content-body h2:first-child {
  margin-top: 0;
}

.content-body p,
.content-body li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 1rem;
}

.content-body ul {
  padding-left: 1.25rem;
  margin-bottom: 1.25rem;
}

.content-body a {
  color: var(--lavender-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.content-body a:hover {
  color: var(--charcoal);
}

.content-callout {
  padding: 24px 28px;
  border-radius: var(--radius);
  background: var(--lavender-light);
  border: 1px solid var(--border-soft);
  margin: 2rem 0;
}

.content-callout p:last-child {
  margin-bottom: 0;
}

/* FAQ accordion */
.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  background: var(--surface-card);
  box-shadow: 0 4px 16px rgba(194, 153, 209, 0.08);
  overflow: hidden;
}

.faq-item summary {
  padding: 18px 22px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--lavender-deep);
  line-height: 1;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item summary:hover {
  color: var(--lavender-deep);
}

.faq-answer {
  padding: 0 22px 20px;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
}

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

.faq-cta {
  text-align: center;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border-soft);
}

.faq-cta p {
  margin-bottom: 16px;
  color: var(--text-muted);
}

/* About — team */
.content-team {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 1.5rem 0 2.5rem;
}

.content-team-card {
  text-align: center;
  padding: 20px 18px 22px;
  border-radius: var(--radius);
  background: var(--surface-card);
  border: 1px solid var(--border-soft);
  box-shadow: 0 8px 24px rgba(194, 153, 209, 0.08);
}

.content-team-card img {
  display: block;
  width: 100%;
  max-width: 220px;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
  margin: 0 auto 14px;
}

/* How-to guides hub */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin: 0 0 2.5rem;
  padding: 0;
  list-style: none;
}

.guide-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 22px 20px;
  border-radius: var(--radius);
  background: var(--surface-card);
  border: 1px solid var(--border-soft);
  box-shadow: 0 8px 24px rgba(194, 153, 209, 0.08);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.guide-card:hover {
  border-color: rgba(194, 153, 209, 0.45);
  box-shadow: 0 12px 28px rgba(194, 153, 209, 0.14);
  transform: translateY(-2px);
}

.guide-card-kicker {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lavender-deep);
}

.guide-card h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--charcoal);
  margin: 0;
  line-height: 1.25;
}

.guide-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
  flex: 1;
}

.guide-card-cta {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--lavender-deep);
}

.guide-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--lavender-deep);
  text-decoration: none;
}

.guide-back:hover {
  color: var(--charcoal);
}

.guide-media {
  margin: 0 0 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: linear-gradient(145deg, #fffdf9 0%, var(--lavender-light) 100%);
}

.guide-media-placeholder {
  padding: 28px 24px;
  text-align: center;
}

.guide-media-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lavender-deep);
  margin: 0 0 8px;
}

.guide-media-placeholder p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.guide-media iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.guide-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  counter-reset: guide-step;
}

.guide-step {
  position: relative;
  padding: 0 0 28px 52px;
  counter-increment: guide-step;
}

.guide-step:last-child {
  padding-bottom: 0;
}

.guide-step::before {
  content: counter(guide-step);
  position: absolute;
  left: 0;
  top: 2px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--lavender-light);
  border: 1px solid var(--border-soft);
  color: var(--lavender-deep);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 34px;
  text-align: center;
}

.guide-step h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 0 0 8px;
}

.guide-step p,
.guide-step ul {
  margin: 0 0 10px;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text-body);
}

.guide-step ul {
  padding-left: 1.2rem;
}

.guide-related {
  margin-top: 2.5rem;
  padding-top: 28px;
  border-top: 1px solid var(--border-soft);
}

.guide-related h2 {
  margin-top: 0;
  font-size: 1.2rem;
}

.guide-related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.guide-related-links a {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--lavender-light);
  border: 1px solid var(--border-soft);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--charcoal);
}

.guide-related-links a:hover {
  border-color: rgba(194, 153, 209, 0.5);
  color: var(--lavender-deep);
}

.content-team-card h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--charcoal);
  margin: 0 0 4px;
}

.content-team-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

@media (max-width: 640px) {
  .content-team {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
}
