.njiro-faq-section {
  background: linear-gradient(180deg, #fff 0%, #fbf7ef 100%);
  padding: clamp(64px, 7vw, 96px) 0;
  border-top: 1px solid rgba(21,18,15,.10);
  border-bottom: 1px solid rgba(21,18,15,.08);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.njiro-faq-wrap {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
}

.njiro-faq-head {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.njiro-faq-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 12px;
  color: var(--clay, #b76b3f);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.njiro-faq-title,
.njiro-faq-section h2 {
  margin: 0;
  color: var(--ink, #15120f);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

.njiro-faq-intro {
  max-width: 720px;
  margin: 14px auto 0;
  color: #5d574f;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.7;
}

.njiro-faq-list {
  display: grid;
  gap: 12px;
}

.njiro-faq-item {
  overflow: hidden;
  border: 1px solid rgba(21,18,15,.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(32,32,29,.07);
}

.njiro-faq-question,
.njiro-faq-item summary {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  color: var(--ink, #15120f);
  font: inherit;
  font-size: clamp(16px, 1.6vw, 18px);
  font-weight: 900;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
  list-style: none;
}

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

.njiro-faq-question:focus-visible,
.njiro-faq-item summary:focus-visible {
  outline: 3px solid rgba(183,107,63,.28);
  outline-offset: -4px;
}

.njiro-faq-icon,
.njiro-faq-item summary b {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--leaf, #2f5f3d);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  transition: transform .22s ease, background .22s ease;
}

.njiro-faq-item.is-open .njiro-faq-icon,
.njiro-faq-item[open] summary b {
  transform: rotate(45deg);
  background: var(--clay, #b76b3f);
}

.njiro-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
}

.njiro-faq-item[open] .njiro-faq-answer {
  max-height: none;
}

.njiro-faq-answer-inner,
.njiro-faq-answer {
  color: #5d574f;
  font-size: 16px;
  line-height: 1.75;
}

.njiro-faq-answer-inner {
  padding: 0 22px 22px;
}

.njiro-faq-answer p {
  margin: 0;
  padding: 0 22px 22px;
}

.njiro-faq-answer-inner p {
  margin: 0;
  padding: 0;
}

.njiro-faq-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.njiro-faq-cta a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--clay, #b76b3f);
  border-radius: 8px;
  background: var(--clay, #b76b3f);
  color: #fff7ee;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  box-shadow: 0 12px 26px rgba(183,107,63,.22);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.njiro-faq-cta a:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(183,107,63,.28);
}

.njiro-faq-cta a:nth-child(2) {
  border-color: #1f8f4d;
  background: #fff;
  color: #1f6b3c;
  box-shadow: 0 10px 22px rgba(31,143,77,.12);
}

.njiro-faq-cta a:nth-child(2):hover {
  background: #f3fff8;
  box-shadow: 0 12px 26px rgba(31,143,77,.18);
}

@media (max-width: 760px) {
  .njiro-faq-section {
    padding: 50px 0;
  }

  .njiro-faq-wrap {
    width: min(100% - 28px, 1080px);
  }

  .njiro-faq-question,
  .njiro-faq-item summary {
    padding: 17px 16px;
  }

  .njiro-faq-answer-inner,
  .njiro-faq-answer p {
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 18px;
  }

  .njiro-faq-icon,
  .njiro-faq-item summary b {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .njiro-faq-cta {
    display: grid;
  }

  .njiro-faq-cta a {
    width: 100%;
  }
}
