/* ============================================================
   WANDZILAK WEB DESIGN — ABOUT PAGE STYLES
   Page-specific styles only. Design tokens, nav, footer, cards,
   buttons, scroll-reveal, and typography come from interior-shell.css.
   ============================================================ */


/* ---------- HERO CANVAS ---------- */
.about-hero {
  position: relative;
}
#about-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.about-hero .breadcrumbs,
.about-hero .eyebrow,
.about-hero .page-title,
.about-hero .body-text {
  position: relative;
  z-index: 2;
}


/* ---------- FOUNDER SECTION ---------- */
.about-founder {
  padding-top: 100px;
  padding-bottom: 100px;
}

.founder-split {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}

.founder-text .body-text {
  margin-bottom: 20px;
}
.founder-text .body-text:last-of-type {
  margin-bottom: 0;
}

.founder-role {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-tertiary);
  letter-spacing: 0.04em;
  margin-top: 8px;
  margin-bottom: 28px;
}

/* Pull quote in founder bio */
.founder-pullquote {
  margin-top: 36px;
  padding: 24px 28px;
  border-left: 3px solid var(--amber-core);
  background: rgba(255, 170, 50, 0.04);
  border-radius: 0 var(--card-radius) var(--card-radius) 0;
}
.founder-pullquote p {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-style: italic;
  color: var(--text-heading);
  line-height: 1.6;
  margin-bottom: 8px;
}
.founder-pullquote cite {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-style: normal;
  color: var(--text-tertiary);
}

/* Portrait frame */
.founder-portrait__frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.founder-portrait__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}
/* Amber glow behind portrait */
.founder-portrait__frame::after {
  content: '';
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at center, var(--amber-glow) 0%, transparent 70%);
  opacity: 0.4;
  z-index: -1;
  pointer-events: none;
}

/* Placeholder for portrait */
.founder-portrait__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 170, 50, 0.08) 0%, rgba(255, 170, 50, 0.02) 100%);
}
.founder-portrait__initials {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  color: var(--amber-core);
  opacity: 0.25;
  letter-spacing: 0.05em;
}

/* Stats below portrait */
.founder-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}
.founder-meta__item {
  text-align: center;
  padding: 16px 8px;
  background: var(--bg-card);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}
.founder-meta__value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}
.founder-meta__label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 860px) {
  .founder-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .founder-portrait {
    max-width: 400px;
    margin: 0 auto;
  }
}


/* ---------- FLORIDA SECTION ---------- */
.about-florida {
  padding-top: 90px;
  padding-bottom: 90px;
}
.about-florida .body-text {
  margin-bottom: 16px;
}
.about-florida .body-text:last-child {
  margin-bottom: 0;
}


/* ---------- TIMELINE ---------- */
.about-timeline {
  padding-top: 100px;
  padding-bottom: 100px;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 56px auto 0;
  padding: 0 20px;
}

/* Central vertical line */
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--cyan-subtle) 5%,
    var(--cyan-shimmer) 50%,
    var(--amber-shimmer) 90%,
    transparent 100%
  );
}

.timeline-item {
  position: relative;
  width: 50%;
  padding-bottom: 40px;
}
.timeline-item--left {
  padding-right: 48px;
  text-align: right;
}
.timeline-item--right {
  margin-left: 50%;
  padding-left: 48px;
}

/* Glowing dot on timeline */
.timeline-dot {
  position: absolute;
  top: 24px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--cyan-core);
  box-shadow: 0 0 12px var(--cyan-glow), 0 0 24px rgba(0, 180, 255, 0.15);
  z-index: 2;
}
.timeline-item--left .timeline-dot {
  right: -7px;
}
.timeline-item--right .timeline-dot {
  left: -7px;
}
/* Amber dot for the last two items */
.timeline-item:nth-last-child(-n+2) .timeline-dot {
  background: var(--amber-core);
  box-shadow: 0 0 12px var(--amber-glow), 0 0 24px rgba(255, 170, 50, 0.15);
}

/* Timeline card content */
.timeline-card {
  padding: 24px 28px;
}
.timeline-year {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan-core);
  margin-bottom: 8px;
  display: block;
}
.card--amber .timeline-year {
  color: var(--amber-core);
}
.timeline-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
  line-height: 1.3;
}
.timeline-text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.65;
}

/* Mobile timeline — single column */
@media (max-width: 700px) {
  .timeline::before {
    left: 20px;
  }
  .timeline-item,
  .timeline-item--left,
  .timeline-item--right {
    width: 100%;
    margin-left: 0;
    padding-left: 52px;
    padding-right: 0;
    text-align: left;
  }
  .timeline-item--left .timeline-dot,
  .timeline-item--right .timeline-dot {
    left: 13px;
    right: auto;
  }
}


/* ---------- TEAM GRID ---------- */
.about-team {
  padding-top: 80px;
  padding-bottom: 100px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.team-card {
  text-align: center;
  padding: 28px 16px 24px;
}

.team-card__photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  border: 2px solid rgba(255, 255, 255, 0.06);
}
.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 170, 50, 0.12) 0%, rgba(255, 170, 50, 0.04) 100%);
}
.team-card__placeholder span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--amber-core);
  opacity: 0.5;
}
/* Koda's card — purple tint */
.team-card__placeholder--koda {
  background: linear-gradient(135deg, rgba(180, 100, 255, 0.12) 0%, rgba(180, 100, 255, 0.04) 100%);
}
.team-card__placeholder--koda span {
  color: var(--purple-core);
}

.team-card__name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 4px;
  line-height: 1.3;
}
.team-card__role {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--amber-core);
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}
.team-card__note {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-body);
  line-height: 1.55;
}

@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 680px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 440px) {
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
  }
}


/* ---------- VALUES ---------- */
.about-values {
  padding-top: 100px;
  padding-bottom: 100px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 56px auto 0;
}

.value-block {
  padding: 0 8px;
}

.value-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--amber-core);
  opacity: 0.2;
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}

.value-title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 12px;
  line-height: 1.25;
}

.value-block .body-text {
  max-width: none;
}

@media (max-width: 680px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}


/* ---------- QUOTES ---------- */
.about-quotes {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}

/* Subtle purple glow behind quotes */
.about-quotes__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 500px;
  background: radial-gradient(ellipse at center, var(--purple-glow) 0%, transparent 70%);
  opacity: 0.15;
  pointer-events: none;
}

.quotes-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 48px auto 0;
}

.quote-card {
  padding: 32px;
}

.quote-card__stars {
  font-size: 1rem;
  color: var(--amber-core);
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.quote-card__text {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.quote-card__cite {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-style: normal;
}
.quote-card__cite strong {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-heading);
}
.quote-card__cite span {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-tertiary);
}

@media (max-width: 680px) {
  .quotes-stack {
    grid-template-columns: 1fr;
  }
}


/* ---------- CTA SECTION ---------- */
.about-cta {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}

.about-cta__glow {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(0, 180, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.about-cta .body-text {
  max-width: 600px;
}
