.page-header {
  padding: 64px 48px 48px;
  border-bottom: 1px solid var(--sand);
  background: var(--white);
}

.page-header-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.page-header h1 {
  font-size: clamp(38px, 5.2vw, 58px);
  color: var(--ink);
  max-width: none;
  margin-bottom: 12px;
}

.page-header p {
  font-size: 17px;
  color: var(--ink-mid);
  font-weight: 300;
  line-height: 1.7;
}

.faq-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.faq-section h2 {
  font-size: 22px;
  letter-spacing: -0.3px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--ink-lt);
  margin-bottom: 4px;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  cursor: pointer;
  border-bottom: 1px solid var(--sand);
  padding: 14px 0;
}

.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  user-select: none;
}

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

.faq-item summary h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.15s;
}

.faq-item summary:hover h3 {
  color: var(--coral);
}

.faq-item summary::after {
  content: '';
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--ink-mid);
  border-bottom: 2px solid var(--ink-mid);
  transform: rotate(45deg);
  transition: transform 0.2s ease, border-color 0.15s;
  margin-top: 3px;
}

.faq-item summary:hover::after {
  border-color: var(--coral);
}

.faq-item[open] summary::after {
  transform: rotate(-135deg);
  margin-top: 6px;
}

.faq-item[open] summary {
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 15px;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.7;
}

.faq-item p + p {
  margin-top: 12px;
}

.faq-contact {
  border-top: 1px solid var(--sand);
  padding-top: 40px;
}

.faq-contact h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--ink);
  margin-bottom: 8px;
}

.faq-contact p {
  font-size: 15px;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.7;
}

.faq-contact a {
  color: var(--coral);
  text-decoration: none;
}

.faq-contact a:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .page-header { padding: 40px 20px 32px; }
  .page-header h1 { font-size: 26px; }
  .faq-content { padding: 40px 20px; gap: 40px; }
}
