:root{
  --ink:#1d1d1f;
  --muted:#4b4b4f;
  --brand:#562415;
  --brand-strong:#6c2b19;
  --bg-soft:#f3f4f8;
  --ring:#e7e9f3;
  --radius:14px;
}

/* ===== FAQ ===== */
.faq{
  padding: 72px 20px 48px;
  background: #fff;
}
.faq-container{
  max-width: 960px;
  margin: 0 auto;
}
.faq-title{
  text-align:center;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -.01em;
  color: var(--ink);
  margin: 0 0 28px;
}

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

.faq-item{
  background: #eff1f8;             /* light, like screenshot */
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--ring);
  box-shadow: 0 1px 0 rgba(0,0,0,.02);
}

.faq-q{
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #2a2a31;
  cursor: pointer;
}
.faq-q:focus-visible{
  outline: 2px solid #b9c2ff;
  outline-offset: 2px;
  border-radius: var(--radius);
}

.faq-q-icon{
  width: 28px; height: 28px;
  border-radius: 8px;
  display: grid; place-items: center;
  background: #ffffffa6;
  color: #7b7f91;
  font-weight: 700;
}

/* Answer panel (collapsed by default) */
.faq-a{
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .25s ease, padding .25s ease;
  padding: 0 18px;
}
.faq-a > *{
  overflow: hidden;
}
.faq-a p{
  color: var(--muted);
  line-height: 1.6;
  margin: 12px 0 18px;
}

/* When open */
.faq-item.open .faq-a{
  grid-template-rows: 1fr;
  padding: 0 18px 6px;
}
.faq-item.open .faq-q-icon{
  background: #ffffff;
  color: var(--brand);
  /* change the '+' to '–' via content if desired */
}
.faq-item.open .faq-q{
  background: #eef1fb;
}

/* ===== Newsletter ===== */
.newsletter{
  background: #ffffff;
  border-top: 1px solid var(--ring);
  padding: 42px 20px 54px;
}
.newsletter-container{
  max-width: 960px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: center;
}
.newsletter-copy h3{
  margin: 0 0 6px;
  font-size: clamp(1.2rem, 2.1vw, 1.6rem);
  color: var(--brand-strong);
}
.newsletter-copy p{
  margin: 0; color: var(--muted);
}

.newsletter-form{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}
.newsletter-form input[type="email"]{
  padding: 12px 14px;
  border: 1px solid #dfe3ef;
  border-radius: 10px;
  font-size: 1rem;
  background: #fff;
}
.newsletter-btn{
  border: none;
  border-radius: 10px;
  padding: 12px 18px;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s ease, transform .08s ease;
}
.newsletter-btn:hover{ background: var(--brand-strong); }
.newsletter-btn:active{ transform: translateY(1px); }
.newsletter-status{
  grid-column: 1 / -1;
  margin: 6px 2px 0;
  font-size: .95rem;
  color: #2a2a31;
}

@media (max-width: 840px){
  .newsletter-container{
    grid-template-columns: 1fr;
    row-gap: 14px;
    text-align: left;
  }
}
