/* ââ HERO: small variant ââ */
.sp-hero-sm { min-height: 220px; }
.sp-hero-sm .sp-hero-inner { padding: 3rem 1.5rem; }

/* ââ NAV: logo as link ââ */
.sp-logo { text-decoration: none; color: var(--sp-dark, #2D2D2D); }
.sp-logo span { color: var(--sp-copper, #B5622A); }

/* ââ MOBILE NAV ââ */
.sp-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: #2D2D2D;
  padding: 0.25rem;
}
.sp-nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.sp-nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #2D2D2D;
  text-decoration: none;
  transition: color 0.2s;
}
.sp-nav-links a:hover { color: #B5622A; }

@media (max-width: 768px) {
  .sp-menu-toggle { display: block; }
  .sp-nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.5rem;
    gap: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
    z-index: 100;
  }
  .sp-nav-links.sp-nav-open { display: flex; }
  .sp-nav { position: relative; }
}

/* ââ CONTACT FORM ââ */
.sp-contact-wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}
.sp-contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.sp-field { display: flex; flex-direction: column; gap: 0.4rem; }
.sp-field label { font-size: 0.9rem; font-weight: 600; color: #2D2D2D; }
.sp-req { color: #B5622A; }
.sp-field input,
.sp-field select,
.sp-field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.sp-field input:focus,
.sp-field select:focus,
.sp-field textarea:focus {
  outline: none;
  border-color: #2E4A6B;
}
.sp-field textarea { resize: vertical; }
.sp-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.sp-form-note { font-size: 0.8rem; color: #888; margin: 0; }
.sp-form-success {
  background: #f0faf0;
  border: 1.5px solid #4caf50;
  border-radius: 8px;
  padding: 2rem;
}
.sp-form-success h2 { color: #2E4A6B; margin-bottom: 0.5rem; }
.sp-form-error {
  background: #fff3f3;
  border: 1.5px solid #e53935;
  border-radius: 6px;
  padding: 0.875rem 1rem;
  color: #c62828;
  font-size: 0.9rem;
}

/* ââ CONTACT ASIDE ââ */
.sp-contact-aside {
  background: #f5f6f8;
  border-radius: 12px;
  padding: 2rem;
}
.sp-contact-aside h3 { margin-bottom: 1rem; color: #2E4A6B; }
.sp-btn-block { display: block; text-align: center; margin-bottom: 1rem; }
.sp-contact-aside p { font-size: 0.9rem; color: #555; }
.sp-contact-aside a { color: #2E4A6B; }
.sp-aside-hr { border: none; border-top: 1px solid #ddd; margin: 1.25rem 0; }
.sp-aside-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: #444;
}
.sp-aside-list strong { color: #2D2D2D; }

@media (max-width: 900px) {
  .sp-contact-wrap { grid-template-columns: 1fr; }
  .sp-contact-aside { order: -1; }
}
@media (max-width: 600px) {
  .sp-field-row { grid-template-columns: 1fr; }
}

/* ââ 404 PAGE ââ */
.sp-404 { text-align: center; padding: 5rem 1.5rem; }
.sp-404 h1 { font-size: 6rem; color: #2E4A6B; line-height: 1; margin-bottom: 0.5rem; }
.sp-404 h2 { font-size: 1.75rem; margin-bottom: 1rem; }
.sp-404 p { color: #666; margin-bottom: 2rem; }
.sp-404-links { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
