/* Sierra Perosa about page — College Insider light/indigo aesthetic.
   Inherits palette + base layout from ../styles.css */

.sp-stats-section {
  padding: 0 52px 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.sp-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  max-width: 820px;
  margin: 0 auto;
}
.sp-stat {
  background: var(--surface);
  border: 1.5px solid rgba(49,46,129,0.10);
  border-radius: 16px;
  padding: 24px 18px;
  text-align: center;
  transition: transform 0.18s, border-color 0.18s, box-shadow 0.18s;
}
.sp-stat:hover {
  transform: translateY(-3px);
  border-color: var(--periwinkle);
  box-shadow: 0 14px 32px rgba(49,46,129,0.10);
}
.sp-stat__value {
  display: block;
  font-size: 30px;
  font-weight: 900;
  color: var(--indigo);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.sp-stat__label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ---- SECTIONS ---- */
.sp-section {
  padding: 72px 52px;
}
.sp-section--alt {
  background: var(--surface);
  border-top: 1px solid rgba(49,46,129,0.08);
  border-bottom: 1px solid rgba(49,46,129,0.08);
}
.sp-section__inner {
  max-width: 1000px;
  margin: 0 auto;
}
.sp-section__eyebrow {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 14px;
}
.sp-section__title {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: var(--indigo-dark);
  margin-bottom: 22px;
}
.sp-section__lede {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 16px;
}
.sp-section__lede:last-child { margin-bottom: 0; }
.sp-section__lede strong { color: var(--indigo-dark); font-weight: 900; }

/* Stronger hero strong on Sierra page */
.hero__sub strong { color: var(--indigo-dark); font-weight: 900; }

/* ---- LINK CARDS ---- */
.sp-links {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.sp-linkcard {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg);
  border: 1.5px solid rgba(49,46,129,0.10);
  border-radius: 18px;
  padding: 22px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s, border-color 0.18s, box-shadow 0.18s;
}
.sp-linkcard:hover {
  transform: translateY(-3px);
  border-color: var(--periwinkle);
  box-shadow: 0 14px 32px rgba(49,46,129,0.10);
}
.sp-linkcard__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  color: var(--indigo-dark);
  background: var(--cream);
  flex-shrink: 0;
}
.sp-linkcard__icon--youtube   { background: #FF0000; color: #FFFFFF; }
.sp-linkcard__icon--instagram { background: #E1306C; color: #FFFFFF; }
.sp-linkcard__icon--tiktok    { background: #000000; color: #FFFFFF; }
.sp-linkcard__icon--facebook  { background: #1877F2; color: #FFFFFF; }
.sp-linkcard__title {
  font-size: 16px;
  font-weight: 900;
  color: var(--indigo-dark);
  margin: 0 0 4px;
}
.sp-linkcard__detail {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--text-dim);
  margin: 0;
}

@media (max-width: 720px) {
  .sp-stats-section { padding: 0 24px 12px; }
  .sp-section { padding: 56px 24px; }
}

/* ---- ABOUT (photo + bio side-by-side) ---- */
.sp-about {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 1.4fr;
  gap: 48px;
  align-items: start;
}
.sp-about__photo {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(49,46,129,0.18);
  border: 1.5px solid rgba(49,46,129,0.10);
}
.sp-about__photo img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 800px) {
  .sp-about { grid-template-columns: 1fr; gap: 32px; }
  .sp-about__photo { max-width: 420px; }
}

/* ---- CONTACT FORM ---- */
.sp-contact__inner {
  max-width: 720px;
}
.sp-form {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: left;
}
.sp-form__hp { display: none; }

.sp-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 560px) {
  .sp-form__row { grid-template-columns: 1fr; }
}

.sp-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sp-form__label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--indigo);
}
.sp-form input,
.sp-form textarea {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  background: var(--surface);
  border: 1.5px solid rgba(49,46,129,0.18);
  border-radius: 12px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
}
.sp-form input::placeholder,
.sp-form textarea::placeholder {
  color: var(--text-dim);
  font-weight: 500;
}
.sp-form input:focus,
.sp-form textarea:focus {
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(165,180,252,0.35);
}
.sp-form textarea { resize: vertical; min-height: 120px; }

.sp-form .btn { align-self: flex-start; margin-top: 6px; }
@media (max-width: 720px) {
  .sp-form .btn { align-self: stretch; justify-content: center; }
}

.sp-form__status {
  font-size: 14px;
  font-weight: 700;
  min-height: 1.2em;
}
.sp-form__status--pending { color: var(--text-dim); }
.sp-form__status--ok      { color: var(--indigo); }
.sp-form__status--err     { color: #b1224b; }
.sp-form__status a        { color: var(--indigo); text-decoration: underline; font-weight: 800; }
