.faq-page {
  background: transparent;
  color: #1e1a17;
}

.faq-hero {
  padding: 48px 0 44px;
  border-bottom: 1px solid #d8d0c7;
}

.faq-hero__eyebrow {
  margin: 0 0 14px;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7c746d;
}

.faq-hero__title {
  margin: 0;
  max-width: 900px;
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: -0.02em;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.05;
}

.faq-hero__text {
  max-width: 700px;
  margin: 18px 0 0;
  font-size: 1rem;
  line-height: 1.75;
  color: #6f6a64;
}

.faq {
  padding: 60px 0 90px;
  background: #f8f6f2;
}

.faq-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 70px;
  margin-top: 24px;
  align-items: start;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-top: 1px solid rgba(30, 26, 23, 0.12);
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(30, 26, 23, 0.12);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  background: transparent;
  border: none;
  box-shadow: none;
  cursor: pointer;
  text-align: left;
  color: #000;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.faq-icon {
  flex-shrink: 0;
  font-size: 22px;
  line-height: 1;
  color: #000;
  transition: transform 0.25s ease;
}

.faq-answer {
  display: none;
}

.faq-answer p {
  margin: 0;
  padding: 0 0 22px;
  color: #5f5a52;
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0;
  text-transform: none;
  max-width: 92%;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-card {
  padding: 34px 30px;
  background: transparent;
  border: 1px solid rgba(30, 26, 23, 0.08);
  box-shadow: 0 18px 40px rgba(20, 18, 16, 0.05);
}

.faq-card-label,
.faq-cta-label {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8b7d6b;
}

.faq-card h3,
.faq-cta h2 {
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  font-weight: 400;
}

.faq-card p {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.85;
  color: #5e564d;
}

.faq-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid #1e1a17;
  background: transparent;
  color: #1e1a17;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  transition: all 0.3s ease;
}

.faq-btn:hover {
  background: #1e1a17;
  color: #fff;
}

.faq-btn--dark {
  background: #1e1a17;
  color: #fff;
}

.faq-btn--dark:hover {
  background: transparent;
  color: #1e1a17;
}

.faq-cta {
  position: relative;
  padding: 120px 0;
  background-image: url("/assets/images/appointment-cta-about.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.faq-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.22);
  z-index: 1;
  pointer-events: none;
}

.faq-cta .container,
.faq-cta__inner {
  position: relative;
  z-index: 2;
}

.faq-cta__inner {
  max-width: 600px;
}

.faq-cta p {
  margin: 0 0 22px;
  font-size: 0.98rem;
  line-height: 1.75;
  color: #fff;
}

.faq-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.faq-cta h2,
.faq-cta p,
.faq-cta span {
  color: #fff;
}

.faq-page .faq-cta .btn {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.faq-page .faq-cta .btn:hover {
  background: #fff;
  color: #000;
}

@media (max-width: 991px) {
  .faq-columns {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-answer p {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .faq-hero {
    padding: 80px 0 50px;
  }

  .faq {
    padding: 56px 0 70px;
  }

  .faq-question {
    padding: 18px 0;
    font-size: 13px;
    letter-spacing: 0.12em;
  }

  .faq-answer p {
    font-size: 14px;
    line-height: 1.75;
  }

  .faq-card {
    padding: 26px 22px;
  }

  .faq-cta {
    padding: 70px 0;
  }
}