/* ============================================================
   HEADSTART PH — about.css
   About hero + Team grid + Contact split layout
   ============================================================ */

:root {
  --green:       #00c67a;
  --green-light: rgba(0,198,122,0.08);
  --green-mid:   rgba(0,198,122,0.2);
  --black:       #0a0a0a;
  --text:        #111111;
  --text-muted:  #888888;
  --surface:     #f5f5f5;
  --surface-2:   #ebebeb;
  --border:      #e8e8e8;
  --white:       #ffffff;
  --radius-lg:   24px;
  --radius-md:   16px;
  --radius-sm:   12px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: #ffffff !important;
  color: #111111 !important;
  font-family: 'DM Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* ── Override style.css dark mode — about pages are always light ── */
body:not(.light-mode) {
  --text:       #111111 !important;
  --text-muted: #888888 !important;
  --surface:    #f5f5f5 !important;
  --border:     #e8e8e8 !important;
  --white:      #ffffff !important;
  background:   #ffffff !important;
  color:        #111111 !important;
}

.hero-eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-light);
  border: 1px solid var(--green-mid);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

/* ============================================================
   ABOUT HERO
   ============================================================ */
.about-hero {
  max-width: 860px;
  margin: 0 auto;
  padding: 140px 80px 120px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.about-hero .hero-eyebrow { margin-bottom: 20px; }

.about-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  color: #111111 !important;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 36px;
  width: 100%;
}

.about-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 620px;
  margin-bottom: 18px;
}
.about-desc:last-of-type { margin-bottom: 0; }

.about-hero-image-wrap {
  grid-column: 2;
  grid-row: 1 / 5;
  position: relative;
  align-self: stretch;
}

.about-hero-image-wrap img,
.about-hero img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  display: block;
  position: relative;
  z-index: 1;
}

.about-hero-image-wrap::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at 60% 40%, rgba(0,198,122,0.12) 0%, transparent 70%);
  border-radius: 40px;
  z-index: 0;
}

.about-stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.about-stat-chip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.about-stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

.about-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  max-width: 1100px;
  margin: 0 auto;
}

.about-social {
  display: flex;
  gap: 10px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.about-social .founder-social-btn {
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.founder-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transition: transform 0.2s, box-shadow 0.2s;
}
.founder-social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.16);
}
.founder-social-linkedin { background: #0077b5; color: #fff; }
.founder-social-tiktok   { background: var(--black); color: #fff; }

/* ============================================================
   TEAM SECTION — Reference grid layout
   Featured green card left (spans 2 rows) + photo cards
   ============================================================ */
.team-section {
  max-width: 860px;
  margin: 0 auto;
  padding: 100px 80px 120px;
}

.team-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 40px;
}

.team-section-left { flex: 1; }

.team-eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-light);
  border: 1px solid var(--green-mid);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.team-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: #111111 !important;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.team-section-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 320px;
  flex-shrink: 0;
}

/* ── Grid: 4 cols, featured card spans 2 rows ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* Featured founder card */
.team-card-featured {
  grid-row: span 1;
  background: var(--green);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  cursor: default;
  transition: transform 0.2s, box-shadow 0.2s;
}

/* Watermark */
.team-card-featured::after {
  content: 'HS';
  position: absolute;
  top: -16px;
  right: -8px;
  font-family: 'Syne', sans-serif;
  font-size: 110px;
  font-weight: 800;
  color: rgba(0,0,0,0.07);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.team-card-featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,198,122,0.25);
}

.team-featured-role {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.5);
  margin-bottom: 6px;
}

.team-featured-name {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #000;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.team-featured-bio {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: rgba(0,0,0,0.6);
  line-height: 1.65;
  margin-bottom: 20px;
}

.team-featured-social {
  display: flex;
  gap: 8px;
}

.team-featured-social a {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: rgba(0,0,0,0.1);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
}
.team-featured-social a:hover {
  background: rgba(0,0,0,0.2);
  transform: scale(1.1);
}

/* Photo cards */
.team-card-photo {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.18s, transform 0.18s, box-shadow 0.18s;
}

.team-card-photo:hover {
  border-color: rgba(0,198,122,0.25);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.07);
}

.team-photo {
  width: 100%;
  aspect-ratio: 1;
  background: var(--surface);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Placeholder initials when no photo */
.team-photo-initials {
  font-family: 'Syne', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--surface-2);
}

.team-photo-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #f0f0f0, #e8e8e8);
}

.team-card-info {
  padding: 12px 14px 14px;
}

.team-member-name {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}

.team-member-role {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: var(--text-muted);
}

/* Join card */
.team-card-join {
  background: var(--surface);
  border: 1.5px dashed var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s;
  text-decoration: none;
}
.team-card-join:hover {
  border-color: var(--green);
  background: var(--green-light);
}

.team-join-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.team-join-plus {
  font-size: 32px;
  line-height: 1;
  margin-bottom: 8px;
}

.team-join-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}

.team-join-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: var(--green);
  font-weight: 600;
}

/* ============================================================
   CONTACT SPLIT
   ============================================================ */
.contact-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 48px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  border-top: 1px solid var(--border);
}

.contact-left { position: sticky; top: 100px; }

.contact-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.contact-title .accent { color: var(--green); }

.contact-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 420px;
}

.contact-left img {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.contact-right { width: 100%; }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.05);
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group   { display: flex; flex-direction: column; gap: 8px; }

.form-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}

.form-input {
  width: 100%;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
}
.form-input::placeholder { color: #bbb; }
.form-input:focus {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--green-light);
}

.form-textarea { resize: vertical; min-height: 130px; line-height: 1.6; }

.btn-contact-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--black);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 16px 24px;
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 4px;
  width: 100%;
  transition: transform 0.2s, box-shadow 0.2s, background 0.18s;
}
.btn-contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  background: #1a1a1a;
}

.submit-arrow {
  width: 36px; height: 36px;
  background: var(--green);
  color: var(--black);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.btn-contact-submit:hover .submit-arrow { transform: translateX(4px); }

.contact-success {
  display: none; flex-direction: column;
  align-items: center; text-align: center;
  padding: 60px 40px; gap: 16px;
}
.contact-success.show { display: flex; }
.contact-success-icon {
  width: 64px; height: 64px;
  background: var(--green-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
}
.contact-success h3 {
  font-family: 'Syne', sans-serif;
  font-size: 22px; font-weight: 800; color: var(--text);
}
.contact-success p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; color: var(--text-muted);
  line-height: 1.6; max-width: 300px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .about-hero {
    grid-template-columns: 1fr;
    padding: 72px 32px 60px;
  }
  .about-hero-image-wrap { grid-column: 1; grid-row: auto; margin-top: 40px; }
  .about-hero img { height: 380px; }
  .team-section { padding: 60px 24px 60px; }
  .team-section-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .team-card-featured { grid-row: span 1; min-height: 260px; }
  .contact-section { grid-template-columns: 1fr; padding: 60px 32px 80px; gap: 48px; }
  .contact-left { position: static; }
}

@media (max-width: 640px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .about-hero { padding: 60px 20px 48px; }
  .team-section { padding: 48px 20px 60px; }
  .contact-section { padding: 48px 20px 72px; }
  .contact-form-card { padding: 28px 20px; }
}

/* ── Founder tag in hero ── */
.about-founder-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

/* ── Solo founder card (centered, not full grid) ── */
.team-solo {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.team-card-solo {
  width: 100%;
  max-width: 360px;
  grid-row: unset;
  min-height: 320px;
  border-radius: var(--radius-lg);
}

/* ── Join the team CTA banner ── */
.team-join-cta {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  display: flex;
  justify-content: center;
}

.team-join-cta-inner {
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.team-join-cta-emoji {
  font-size: 36px;
  line-height: 1;
  margin-bottom: 4px;
}

.team-join-cta-title {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.team-join-cta-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}

.team-join-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--black);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 100px;
  text-decoration: none;
  margin-top: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.team-join-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* ============================================================
   CONTACT PAGE (contact.html)
   ============================================================ */
.contact-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 100px 48px 100px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.contact-page-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.contact-page-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.contact-page-title .accent { color: var(--green); }

.contact-page-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 480px;
}

/* Quick contact options row */
.contact-options {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.contact-option {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  text-decoration: none;
  transition: border-color 0.18s, transform 0.18s;
  text-align: left;
}
.contact-option:hover {
  border-color: var(--green);
  transform: translateY(-2px);
}

.contact-option-icon {
  font-size: 20px;
  line-height: 1;
}

.contact-option-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-option-value {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-top: 2px;
}

/* Form wrapper */
.contact-page-form-wrap { width: 100%; }

/* Two-column row for name + email */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 640px) {
  .contact-page { padding: 72px 20px 80px; }
  .contact-page-title { font-size: 1.8rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-options { flex-direction: column; align-items: stretch; }
}