/* ================================
   Component Styles
   ================================ */

/* Buttons */
.btn-primary {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-primary:hover {
  background: var(--gold-hover);
}

.btn-secondary {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--white);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--navy);
}

/* Brand Tile */
.brand-tile {
  background: var(--white);
  border: 1px solid var(--light-gray);
  padding: 2rem;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.brand-tile:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.brand-tile__icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.brand-tile__icon span {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
}

.brand-tile__name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.brand-tile__category {
  font-size: 0.875rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.brand-tile__description {
  font-size: 0.9375rem;
  color: var(--body-text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.brand-tile__link {
  font-size: 0.875rem;
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.brand-tile__link:hover {
  color: var(--gold);
}

/* Founder Card */
.founder-card {
  text-align: center;
  padding: 2rem;
}

.founder-card__photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--light-gray);
  margin: 0 auto 1.5rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-card__initials {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  opacity: 0.3;
}

.founder-card__name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.founder-card__title {
  font-size: 1rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.founder-card__focus {
  font-size: 0.875rem;
  color: var(--medium-gray);
  font-style: italic;
  margin-bottom: 1rem;
}

.founder-card__bio {
  font-size: 0.9375rem;
  color: var(--body-text);
  line-height: 1.6;
  text-align: left;
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-7);
}

.section-header__title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-header__subtitle {
  font-size: 1.125rem;
  color: var(--body-text);
  line-height: 1.6;
}

@media (min-width: 1024px) {
  .section-header__title {
    font-size: 2.25rem;
  }
}

/* Form Components */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 0;
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%239CA3AF' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: var(--error);
}

.form-error {
  font-size: 0.875rem;
  color: var(--error);
  margin-top: 0.5rem;
}

/* Gold Accent Line */
.gold-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
}

.gold-line--center {
  margin: 1.5rem auto;
}
