/* Shared "static content page" styles - About, Contact.
   Reusable for FAQ/Shipping/Terms/Privacy/Refund if those get the same
   design-token treatment later.
*/

.p-staticPage {
  padding: var(--s-8) 0;
}

.p-staticPage__container {
  width: min(1000px, 92vw);
  margin: 0 auto;
}

.p-staticPage__hero {
  text-align: center;
  margin-bottom: var(--s-8);
}

.p-staticPage__logo {
  max-width: 200px;
  margin: 0 auto var(--s-4);
  display: block;
}

.p-staticPage__title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--n-900);
  margin: 0 0 var(--s-4);
}

.p-staticPage__lead {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--n-700);
  max-width: 720px;
  margin: 0 auto;
}

.c-sectionCard {
  background: var(--bg-0);
  border: 1px solid var(--n-200);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-1);
  padding: var(--s-6);
}

.p-staticPage__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
  margin-bottom: var(--s-6);
}

.c-sectionCard__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--n-900);
  margin: 0 0 var(--s-3);
}

.c-sectionCard__body {
  color: var(--n-700);
  line-height: 1.6;
}

.c-featureList {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--s-4);
}

.c-featureList__item {
  display: flex;
  gap: var(--s-3);
  align-items: flex-start;
}

.c-featureList__icon {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: var(--r-pill);
  background: rgba(255, 193, 7, .14);
  color: var(--accent-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.c-featureList__title {
  font-weight: 700;
  color: var(--n-900);
  margin: 0 0 2px;
}

.c-featureList__desc {
  color: var(--n-700);
  line-height: 1.5;
  margin: 0;
}

/* ---- Contact page ---- */
.p-contact__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--s-6);
}

.c-contactForm .form-label {
  font-weight: 600;
  color: var(--n-900);
}

.c-contactForm .form-control,
.c-contactForm textarea.form-control {
  border-color: var(--n-200);
  border-radius: var(--r-md);
}

.c-contactForm .form-control:focus {
  border-color: var(--secondary-600);
  box-shadow: 0 0 0 3px rgba(17, 102, 214, .15);
}

.c-contactInfo {
  display: grid;
  gap: var(--s-5);
}

.c-contactInfo__row {
  display: flex;
  gap: var(--s-3);
  align-items: flex-start;
}

.c-contactInfo__icon {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: var(--r-pill);
  background: var(--bg-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-600);
  font-size: 18px;
}

.c-contactInfo__label {
  font-size: 0.8rem;
  color: var(--n-600);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin: 0 0 2px;
}

.c-contactInfo__value {
  font-weight: 600;
  color: var(--n-900);
}

.c-contactInfo__value a {
  color: inherit;
  text-decoration: none;
}

.c-contactInfo__value a:hover {
  text-decoration: underline;
}

/* Honeypot - visually hidden off-screen, not display:none/type=hidden
   (some spam bots specifically know to skip those two). */
.c-honeypot {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 767.98px) {
  .p-staticPage__grid,
  .p-contact__grid {
    grid-template-columns: 1fr;
  }

  .p-staticPage__title {
    font-size: 1.75rem;
  }
}

@media (max-width: 575.98px) {
  .c-sectionCard {
    padding: var(--s-4);
  }
}
