/* FAQ (matches screenshot vibe) */
.faq {
  background: #ffffff;
  padding: clamp(56px, 7vw, 96px) 0;
  color: #111;
}

.faq__inner {
  width: min(1100px, 92vw);
  margin: 0 auto;
  text-align: center;
}

.faq__kicker {
  margin: 0 0 18px;
  font-size: 14px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.75);
}

.faq__title {
  margin: 0 0 46px;
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 500;
  letter-spacing: -0.02em;
}

/* list */
.faq__list {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  text-align: left;
}

.faq__ask {
  margin: 46px auto 0;
  text-align: left;
  max-width: 720px;
}

.faq__askLabel {
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.7);
}

.faq__askRow {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.faq__askFields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.faq__askInput {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.18);
  padding: 12px 14px;
  font-size: 16px;
  border-radius: 999px;
  outline: none;
}

.faq__askInput:focus {
  border-color: rgba(0, 0, 0, 0.45);
}

.faq__askBtn {
  border: none;
  border-radius: 999px;
  padding: 12px 24px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: #1f2a22;
  color: #ffffff;
  cursor: pointer;
}

.faq__askBtn:hover {
  opacity: 0.9;
}

/* details row */
.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.faq-item__summary {
  list-style: none;
  cursor: pointer;
  padding: 30px 6px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
}

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

.faq-item__q {
  font-size: clamp(18px, 2.1vw, 26px);
  font-weight: 500;
  line-height: 1.25;
}

/* plus/minus icon */
.faq-item__icon {
  width: 26px;
  height: 26px;
  position: relative;
  opacity: 0.85;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto 0;
  height: 2px;
  background: rgba(0, 0, 0, 0.65);
  transform: translateY(-50%);
  border-radius: 2px;
}

.faq-item__icon::after {
  width: 2px;
  height: 100%;
  left: 50%;
  right: auto;
  top: 0;
  bottom: 0;
  transform: translateX(-50%);
}

/* answer */
.faq-item__a {
  padding: 0 6px 26px;
  max-width: 78ch;
  color: rgba(0, 0, 0, 0.62);
  font-size: 18px;
  line-height: 1.6;
}

/* open state: show minus */
.faq-item[open] .faq-item__icon::after {
  opacity: 0;
}

/* smooth open animation */
.faq-item__a {
  overflow: hidden;
  transform-origin: top;
}

@media (prefers-reduced-motion: no-preference) {
  .faq-item__a {
    animation: faqClose 180ms ease both;
  }
  .faq-item[open] .faq-item__a {
    animation: faqOpen 260ms ease both;
  }
}

@keyframes faqOpen {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes faqClose {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile spacing */
@media (max-width: 640px) {
  .faq-item__summary {
    padding: 22px 2px;
  }
  .faq-item__a {
    padding: 0 2px 20px;
    font-size: 16px;
  }
  .faq__askFields {
    grid-template-columns: 1fr;
  }
  .faq__askRow {
    grid-template-columns: 1fr;
  }
  .faq__askBtn {
    width: 100%;
  }
}
