.sev-faq {
  background: #efece6;
  /* beige FAQ block (matches location FAQ) — delete this line for a transparent background */
  padding: 100px 0 140px;
  color: #52433d;
  font-family: 'Montserrat', "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.sev-faq * {
  box-sizing: border-box;
}

/* ---- Layout: left menu / right accordion (inside your .container) ---- */
.sev-faq__grid {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 3fr;
  gap: 40px 80px;
  align-items: start;
}

/* ---- Left: category menu ---- */
.sev-faq__nav {
  position: sticky;
  top: 110px;
}

.sev-faq__eyebrow {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #52433d;
  margin: 0 0 26px;
  padding-top: 30px;
}

.sev-faq__tabs {
  position: relative;
}

.sev-faq__indicator {
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  background: #52433d;
  transition: transform .35s cubic-bezier(.4, .1, .2, 1), height .35s cubic-bezier(.4, .1, .2, 1);
  will-change: transform, height;
}

.sev-faq__tab {
  display: block;
  width: 100%;
  text-align: left;
  appearance: none;
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #7c7263;
  padding: 14px 0 14px 22px;
  cursor: pointer;
  line-height: 1.4;
  transition: color .2s ease;
}

.sev-faq__tab:hover,
.sev-faq__tab[aria-selected="true"] {
  color: #52433d;
}

/* ---- Right: accordion ---- */
.sev-faq__panel {
  display: none;
}

.sev-faq__panel.is-active {
  display: block;
}

.sev-faq__item {
  border-top: 1.463px solid #52433d;
}

.sev-faq__item:last-child {
  border-bottom: 1.463px solid #52433d;
}

.sev-faq__item>summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 4px 34px 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.36px;
  line-height: 114.667%;
  text-transform: uppercase;
  color: #52433d;
}

.sev-faq__item>summary::-webkit-details-marker {
  display: none;
}

.sev-faq__chev {
  flex: 0 0 auto;
  transition: transform .3s ease;
}

.sev-faq__item.is-open>summary .sev-faq__chev {
  transform: rotate(180deg);
}

/* answer wrapper — animation only applies when JS is active (.js) */
.sev-faq__a {
  padding-left: 24px;
}

.sev-faq__a-inner {
  padding-bottom: 30px;
}

.sev-faq__a-inner p {
  font-size: 14px;
  line-height: 1.65;
  color: #52433d;
  margin: 0;
  max-width: 95%;
}

.sev-faq__a-inner a {
  color: #52433d;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.sev-faq.js .sev-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .34s ease;
}

/* ---- Mobile: menu becomes wrapping pills (no horizontal scroll) ---- */
@media (max-width:820px) {
  .sev-faq {
    padding: 64px 0 54px;
  }

  .sev-faq__grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 14px 0;
  }

  .sev-faq__nav {
    position: static;
  }

  .sev-faq__eyebrow {
    font-size: 24px;
    text-align: center;
    margin-bottom: 18px;
    padding-top: 0;
  }

  .sev-faq__indicator {
    display: none;
  }

  .sev-faq__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }

  .sev-faq__tab {
    width: auto;
    padding: 10px 16px;
    border: 1px solid #c8c0b1;
    border-radius: 999px;
    color: #7c7263;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
  }

  .sev-faq__tab[aria-selected="true"] {
    background: #52433d;
    color: #f1ece3;
    border-color: #52433d;
  }

  .sev-faq__item {
    border-top: 1px solid #b8aea4;
  }

  .sev-faq__item:last-child {
    border-bottom: none;
  }

  .sev-faq__item>summary {
    font-size: 18px;
    padding: 22px 4px 22px 0;
  }

  .sev-faq__a {
    padding-left: 20px;
  }

  .sev-faq__a-inner p {
    font-size: 13px;
    max-width: 100%;
    padding-top: 14px;
  }
}