/* ---------- Content pages: about, contact, FAQs, policies, 404 ---------- */

.content {
  padding-top: clamp(1.75rem, 4vw, 3rem);
}

.content__prose {
  max-width: 48rem;
}

.content__prose p {
  font-size: clamp(0.9875rem, 1.3vw, 1.0625rem);
  line-height: 1.8;
  color: var(--gj-rose-ink);
}

.content__prose h2,
.content__prose .gj-h2 {
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--gj-space-3);
}

.content__prose h2:first-child {
  margin-top: 0;
}

.content__prose p + p {
  margin-top: var(--gj-space-4);
}

.content__narrow {
  max-width: 44rem;
}

/* ---------- About values ---------- */

.content__values {
  list-style: none;
  margin: var(--gj-space-4) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

.content__values li {
  padding: clamp(1rem, 2.5vw, 1.4rem);
  background: var(--gj-cream);
  border: 1px solid rgba(155, 119, 40, 0.24);
  border-radius: var(--gj-radius-md);
}

.content__values h3 {
  margin: 0 0 6px;
}

.content__values p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--gj-muted);
}

.content__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
}

/* ---------- Contact ---------- */

.contact__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 1.75rem);
}

.contact__card {
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--gj-cream);
  border: 1px solid var(--gj-gold-line);
  border-radius: var(--gj-radius-lg);
}

.contact__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: var(--gj-space-4);
  color: var(--gj-mehroon-700);
  background: var(--gj-ivory);
  border: 1px solid var(--gj-gold-soft);
  border-radius: 50%;
}

.contact__card h2 {
  margin-bottom: var(--gj-space-3);
}

.contact__card p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--gj-muted);
  margin-bottom: var(--gj-space-5);
}

.contact__support {
  margin-top: clamp(1.5rem, 4vw, 2.5rem);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  text-align: center;
  border-top: 1px solid var(--gj-hairline);
  border-bottom: 1px solid var(--gj-hairline);
}

.contact__support-copy {
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gj-muted);
}

.contact__support-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: var(--gj-space-3);
  font-family: var(--gj-font-display);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--gj-mehroon-700);
  text-align: left;
}

.contact__support-link:hover {
  color: var(--gj-mehroon-950);
}

/* ---------- FAQs ---------- */

.faq-item {
  border-bottom: 1px solid rgba(155, 119, 40, 0.24);
}

.faq-item:first-of-type {
  border-top: 1px solid rgba(155, 119, 40, 0.24);
}

.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-block: clamp(0.9rem, 2vw, 1.15rem);
  font-family: var(--gj-font-display);
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--gj-mehroon-950);
  cursor: pointer;
  list-style: none;
}

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

.faq-item__q::after {
  content: "+";
  flex-shrink: 0;
  font-family: var(--gj-font-sans);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--gj-gold-600);
  transition: transform var(--gj-dur-fast) var(--gj-ease);
}

.faq-item[open] .faq-item__q::after {
  content: "\2212";
}

.faq-item__q:hover {
  color: var(--gj-mehroon-700);
}

.faq-item__q:focus-visible {
  outline: 2px solid var(--gj-gold-600);
  outline-offset: 2px;
}

.faq-item__a {
  padding-bottom: clamp(1rem, 2vw, 1.35rem);
}

.faq-item__a p {
  font-size: 0.9625rem;
  line-height: 1.75;
  color: var(--gj-rose-ink);
}

.faq-item__a p + p {
  margin-top: var(--gj-space-3);
}

/* ---------- 404 ---------- */

.notfound__inner {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
  padding-block: clamp(2rem, 6vw, 4rem);
}

.notfound__code {
  font-family: var(--gj-font-display);
  font-size: clamp(4.5rem, 14vw, 8rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1;
  color: var(--gj-gold-600);
  opacity: 0.75;
}

.notfound__inner .gj-lede {
  margin-top: var(--gj-space-4);
}

.notfound__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: var(--gj-space-6);
}

/* ---------- Breakpoints ---------- */

@media (max-width: 767px) {
  .content__values {
    grid-template-columns: 1fr;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }
}
