* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: "Space Grotesk", system-ui, sans-serif;
  background: #f5f4f2;
  color: #1b1b1b;
  min-height: 100vh;
}

.pg {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px 64px;
}

.pg-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #ded5c9;
  margin-bottom: 48px;
}

.pg-header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #1b1b1b;
}

.pg-header__logo img { width: 40px; height: 40px; border-radius: 8px; }

.pg-header__logo span {
  font-family: "Fraunces", serif;
  font-size: 20px;
  font-weight: 700;
}

.pg-header__back {
  color: #d66a2a;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  border: 1px solid #d66a2a;
  padding: 8px 16px;
  border-radius: 999px;
  transition: background 0.2s;
}

.pg-header__back:hover { background: #d66a2a; color: #fff; }

.pg-hero {
  margin-bottom: 40px;
}

.pg-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #d66a2a;
  margin-bottom: 12px;
}

.pg-hero h1 {
  font-family: "Fraunces", serif;
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.pg-hero p {
  color: #6b6b6b;
  font-size: 16px;
  line-height: 1.7;
}

.pg-section {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  margin-bottom: 20px;
  border: 1px solid #ede8e0;
}

.pg-section h2 {
  font-family: "Fraunces", serif;
  font-size: 20px;
  margin-bottom: 12px;
  color: #1b1b1b;
}

.pg-section p, .pg-section li {
  font-size: 15px;
  line-height: 1.75;
  color: #4a4540;
  margin-bottom: 10px;
}

.pg-section ul, .pg-section ol {
  padding-left: 20px;
}

.pg-section li { margin-bottom: 6px; }

/* FAQ accordion */
.faq-item { border-bottom: 1px solid #ede8e0; }
.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 16px 0;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: #1b1b1b;
  font-family: inherit;
}

.faq-question span { flex-shrink: 0; font-size: 18px; transition: transform 0.2s; }
.faq-question.is-open span { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding-bottom: 16px;
  font-size: 15px;
  line-height: 1.75;
  color: #4a4540;
}

.faq-answer.is-open { display: block; }

/* Contact form */
.pg-form { display: grid; gap: 14px; }

.pg-form label {
  display: grid;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
}

.pg-form input,
.pg-form textarea,
.pg-form select {
  padding: 10px 14px;
  border: 1px solid #ded5c9;
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  background: #faf8f5;
  resize: vertical;
}

.pg-form input:focus,
.pg-form textarea:focus,
.pg-form select:focus {
  outline: none;
  border-color: #d66a2a;
}

.btn-primary {
  display: inline-block;
  background: #d66a2a;
  color: #fff;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s;
  justify-self: start;
}

.btn-primary:hover { opacity: 0.85; }

.pg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.pg-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #ede8e0;
  text-align: center;
}

.pg-card .icon { font-size: 40px; margin-bottom: 12px; }
.pg-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.pg-card p { font-size: 14px; color: #6b6b6b; line-height: 1.6; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #ede8e0;
}

.testimonial-card .stars { color: #d66a2a; font-size: 16px; margin-bottom: 8px; }
.testimonial-card p { font-size: 14px; color: #4a4540; line-height: 1.6; margin-bottom: 10px; }
.testimonial-card strong { font-size: 13px; color: #6b6b6b; }

.pg-footer {
  text-align: center;
  padding: 40px 0 0;
  border-top: 1px solid #ded5c9;
  color: #6b6b6b;
  font-size: 14px;
}

@media (max-width: 600px) {
  .pg-hero h1 { font-size: 28px; }
  .pg-section { padding: 20px 16px; }
}
