:root{
  --bg: #f3efe6;
  --ink: #1f1d17;
  --muted: rgba(31,29,23,.70);
  --muted2: rgba(31,29,23,.55);
  --max: 820px;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }

body{
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Heebo", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.wrap{
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0 60px;
}

.header{
  display: grid;
  place-items: center;
  gap: 14px;
  margin-bottom: 26px;
}

.logo{
  width: min(460px, 54vw);
  height: auto;
  display: block;
}

p{
  margin: 0;
  color: var(--muted);
  font-weight: 300;
  font-size: 0.98rem;
  line-height: 1.75;
  text-align: center;
  max-width: 70ch;
}

.section{
  margin-top: 28px;
}

.section-title{
  margin: 0 0 12px;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: .2px;
}

.faq{
  display: grid;
  gap: 8px;
}

details{
  border-bottom: 1px solid rgba(31,29,23,.12);
  padding: 10px 0;
}

summary{
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  list-style: none;
  font-weight: 500;
  color: rgba(31,29,23,.86);
}

summary::-webkit-details-marker{ display:none; }

.chev{
  width: 10px; height: 10px;
  border-left: 2px solid rgba(31,29,23,.45);
  border-bottom: 2px solid rgba(31,29,23,.45);
  transform: rotate(45deg);
  transition: transform .14s ease;
  flex: 0 0 auto;
  margin-right: 6px;
}

details[open] .chev{ transform: rotate(225deg); }

.answer{
  margin-top: 8px;
  color: var(--muted);
  font-weight: 300;
  font-size: 0.96rem;
  line-height: 1.75;
}

.links{
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: baseline;
}

.links a{
  color: rgba(31,29,23,.88);
  text-decoration: none;
  border-bottom: 1px solid rgba(31,29,23,.20);
  padding-bottom: 2px;
}

.links a:hover{
  border-bottom-color: rgba(31,29,23,.55);
}

.footer{
  margin-top: 34px;
  padding-top: 16px;
  border-top: 1px solid rgba(31,29,23,.10);
  color: var(--muted2);
  font-size: 0.92rem;
  display: grid;
  gap: 8px;
  text-align: center;
}

.footer a{
  color: rgba(31,29,23,.88);
  text-decoration: none;
  border-bottom: 1px solid rgba(31,29,23,.20);
}

.footer a:hover{
  border-bottom-color: rgba(31,29,23,.55);
}

.loading{
  color: rgba(31,29,23,.65);
  padding: 20px 2px;
  text-align: center;
  font-size: 0.98rem;
}
